Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13.
@ 2021-08-10  4:31 2asoft
  2021-08-11 23:18 ` Chocimier
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: 2asoft @ 2021-08-10  4:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1088 bytes --]

There is a new pull request by 2asoft against master on the void-packages repository

https://github.com/2asoft/void-packages 2asoft/jb_update_jdk
https://github.com/void-linux/void-packages/pull/32435

jetbrains-jdk-bin: update to 11.0.11b1504.13.
#### General

This also enables the port for `aarch64`, seeing that (at least some of) JetBrains' IDEs support that arch.

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl


A patch file from https://github.com/void-linux/void-packages/pull/32435.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-2asoft/jb_update_jdk-32435.patch --]
[-- Type: text/x-diff, Size: 2657 bytes --]

From e05f90540cade07de7574ae2207c030d2e3887a3 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <1157248+2asoft@users.noreply.github.com>
Date: Sun, 8 Aug 2021 00:24:20 -0700
Subject: [PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13.

---
 srcpkgs/jetbrains-jdk-bin/template | 13 +++++++++----
 srcpkgs/jetbrains-jdk-bin/update   |  7 +++++--
 2 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
index f1fb9fc2340c..5b08a29f7387 100644
--- a/srcpkgs/jetbrains-jdk-bin/template
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -1,8 +1,8 @@
 # Template file for 'jetbrains-jdk-bin'
 pkgname=jetbrains-jdk-bin
-version=11.0.11b1504.12
+version=11.0.11b1504.13
 revision=1
-archs="x86_64"
+archs="x86_64 aarch64"
 wrksrc="jbr"
 short_desc="JetBrains Java 11 JDK"
 maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
@@ -10,8 +10,13 @@ license="GPL-2.0-only, Classpath-exception-2.0"
 homepage="https://github.com/JetBrains/JetBrainsRuntime"
 _jdk_ver=${version%b*}
 _jdk_build=${version#*b}
-distfiles="https://cache-redirector.jetbrains.com/intellij-jbr/jbr_jcef-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
-checksum=1bef2d18ee6eb84de1cce9aceddfb8f2b8938f1c14a291960625c8c3e2331871
+case "$XBPS_TARGET_MACHINE" in
+	aarch64) _relarch=aarch64;;
+	x86_64) _relarch=x64;;
+	*) broken="Not supported on this architecture";;
+esac
+distfiles="https://cache-redirector.jetbrains.com/intellij-jbr/jbr_jcef-${_jdk_ver//\./_}-linux-${_relarch}-b${_jdk_build}.tar.gz"
+checksum=bed2152b9364d801ef25d6837779827e7a665ee6bb7497da26de017fcf027e60
 # This JDK appears to link to libs that do not exist, but functions well even in their absence.
 # Best guess is that they are optional. ¯\_(ツ)_/¯
 noverifyrdeps=yes
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
index a055a2380e9e..396accac50fb 100644
--- a/srcpkgs/jetbrains-jdk-bin/update
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -1,6 +1,9 @@
 # NOTE: This does not check the jdk_ver part of the version (eg 11.0.4)
 # If it changes, this update check will not detect it, it will only detect the build number change.
 # It will be up to the maintainer to go hunt down the correct jdk version and update the template.
+_jdk_ver=${version%b*}
 _jdk_build=${version#*b}
-version=b${_jdk_build}
-pattern="jbrsdk-\d+_\d+_\d+(?:_\d+)?-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+version=${_jdk_ver}-b${_jdk_build}
+echo "Template is for version $version"
+pattern="/releases/tag/jb\K11_\d+_\d+-b\d+(\.\d+)?(?=\">)"
+site="https://github.com/JetBrains/JetBrainsRuntime"
\ No newline at end of file

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: jetbrains-jdk-bin: update to 11.0.11b1504.13.
  2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
@ 2021-08-11 23:18 ` Chocimier
  2021-08-30 18:10 ` Chocimier
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Chocimier @ 2021-08-11 23:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 246 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/32435#issuecomment-897223884

Comment:
There is no jcef linux aarch build available. IDEs can't be build for aarch without fixing that first..

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: jetbrains-jdk-bin: update to 11.0.11b1504.13.
  2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
  2021-08-11 23:18 ` Chocimier
@ 2021-08-30 18:10 ` Chocimier
  2021-08-31  2:28 ` 2asoft
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Chocimier @ 2021-08-30 18:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 199 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/32435#issuecomment-908569966

Comment:
Alternatively IDEs on aarch could depend on regular jdk.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: jetbrains-jdk-bin: update to 11.0.11b1504.13.
  2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
  2021-08-11 23:18 ` Chocimier
  2021-08-30 18:10 ` Chocimier
@ 2021-08-31  2:28 ` 2asoft
  2021-08-31  2:31 ` [PR PATCH] [Updated] " 2asoft
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: 2asoft @ 2021-08-31  2:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 334 bytes --]

New comment by 2asoft on void-packages repository

https://github.com/void-linux/void-packages/pull/32435#issuecomment-908846261

Comment:
Forgot this.
Let me remove the aarch64 build. I dont have a good way of testing, and see no reason to pretend to support it.
If someone needs it, we can figure something out when that happens.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] jetbrains-jdk-bin: update to 11.0.11b1504.13.
  2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
                   ` (2 preceding siblings ...)
  2021-08-31  2:28 ` 2asoft
@ 2021-08-31  2:31 ` 2asoft
  2021-08-31 18:51 ` [PR PATCH] [Updated] jetbrains-jdk-bin: update to 11.0.11b1504.16 Chocimier
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: 2asoft @ 2021-08-31  2:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1093 bytes --]

There is an updated pull request by 2asoft against master on the void-packages repository

https://github.com/2asoft/void-packages 2asoft/jb_update_jdk
https://github.com/void-linux/void-packages/pull/32435

jetbrains-jdk-bin: update to 11.0.11b1504.13.
#### General

This also enables the port for `aarch64`, seeing that (at least some of) JetBrains' IDEs support that arch.

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl


A patch file from https://github.com/void-linux/void-packages/pull/32435.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-2asoft/jb_update_jdk-32435.patch --]
[-- Type: text/x-diff, Size: 2201 bytes --]

From 07d069111607540e4486aa5000ad9c82d0fc79fb Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <1157248+2asoft@users.noreply.github.com>
Date: Sun, 8 Aug 2021 00:24:20 -0700
Subject: [PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.16.

---
 srcpkgs/jetbrains-jdk-bin/template | 4 ++--
 srcpkgs/jetbrains-jdk-bin/update   | 7 +++++--
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
index f1fb9fc2340c..60272b6918c6 100644
--- a/srcpkgs/jetbrains-jdk-bin/template
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -1,6 +1,6 @@
 # Template file for 'jetbrains-jdk-bin'
 pkgname=jetbrains-jdk-bin
-version=11.0.11b1504.12
+version=11.0.11b1504.16
 revision=1
 archs="x86_64"
 wrksrc="jbr"
@@ -11,7 +11,7 @@ homepage="https://github.com/JetBrains/JetBrainsRuntime"
 _jdk_ver=${version%b*}
 _jdk_build=${version#*b}
 distfiles="https://cache-redirector.jetbrains.com/intellij-jbr/jbr_jcef-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
-checksum=1bef2d18ee6eb84de1cce9aceddfb8f2b8938f1c14a291960625c8c3e2331871
+checksum=f289130e302357d000c84e56d31e24fb0d1fcf74cac84787acc1b08d6f51490f
 # This JDK appears to link to libs that do not exist, but functions well even in their absence.
 # Best guess is that they are optional. ¯\_(ツ)_/¯
 noverifyrdeps=yes
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
index a055a2380e9e..396accac50fb 100644
--- a/srcpkgs/jetbrains-jdk-bin/update
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -1,6 +1,9 @@
 # NOTE: This does not check the jdk_ver part of the version (eg 11.0.4)
 # If it changes, this update check will not detect it, it will only detect the build number change.
 # It will be up to the maintainer to go hunt down the correct jdk version and update the template.
+_jdk_ver=${version%b*}
 _jdk_build=${version#*b}
-version=b${_jdk_build}
-pattern="jbrsdk-\d+_\d+_\d+(?:_\d+)?-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+version=${_jdk_ver}-b${_jdk_build}
+echo "Template is for version $version"
+pattern="/releases/tag/jb\K11_\d+_\d+-b\d+(\.\d+)?(?=\">)"
+site="https://github.com/JetBrains/JetBrainsRuntime"
\ No newline at end of file

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] jetbrains-jdk-bin: update to 11.0.11b1504.16.
  2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
                   ` (3 preceding siblings ...)
  2021-08-31  2:31 ` [PR PATCH] [Updated] " 2asoft
@ 2021-08-31 18:51 ` Chocimier
  2021-08-31 18:53 ` Chocimier
  2021-08-31 18:53 ` [PR PATCH] [Merged]: " Chocimier
  6 siblings, 0 replies; 8+ messages in thread
From: Chocimier @ 2021-08-31 18:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1012 bytes --]

There is an updated pull request by Chocimier against master on the void-packages repository

https://github.com/2asoft/void-packages 2asoft/jb_update_jdk
https://github.com/void-linux/void-packages/pull/32435

jetbrains-jdk-bin: update to 11.0.11b1504.16.
#### General

A regular version bump.

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl


A patch file from https://github.com/void-linux/void-packages/pull/32435.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-2asoft/jb_update_jdk-32435.patch --]
[-- Type: text/x-diff, Size: 2134 bytes --]

From a62c742b2b6dd61dd0782dd85a7d637d3f2f44a5 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <1157248+2asoft@users.noreply.github.com>
Date: Sun, 8 Aug 2021 00:24:20 -0700
Subject: [PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.16.

---
 srcpkgs/jetbrains-jdk-bin/template | 4 ++--
 srcpkgs/jetbrains-jdk-bin/update   | 9 ++++-----
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
index f1fb9fc2340c..60272b6918c6 100644
--- a/srcpkgs/jetbrains-jdk-bin/template
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -1,6 +1,6 @@
 # Template file for 'jetbrains-jdk-bin'
 pkgname=jetbrains-jdk-bin
-version=11.0.11b1504.12
+version=11.0.11b1504.16
 revision=1
 archs="x86_64"
 wrksrc="jbr"
@@ -11,7 +11,7 @@ homepage="https://github.com/JetBrains/JetBrainsRuntime"
 _jdk_ver=${version%b*}
 _jdk_build=${version#*b}
 distfiles="https://cache-redirector.jetbrains.com/intellij-jbr/jbr_jcef-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
-checksum=1bef2d18ee6eb84de1cce9aceddfb8f2b8938f1c14a291960625c8c3e2331871
+checksum=f289130e302357d000c84e56d31e24fb0d1fcf74cac84787acc1b08d6f51490f
 # This JDK appears to link to libs that do not exist, but functions well even in their absence.
 # Best guess is that they are optional. ¯\_(ツ)_/¯
 noverifyrdeps=yes
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
index a055a2380e9e..6fbb4a879cf7 100644
--- a/srcpkgs/jetbrains-jdk-bin/update
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -1,6 +1,5 @@
-# NOTE: This does not check the jdk_ver part of the version (eg 11.0.4)
-# If it changes, this update check will not detect it, it will only detect the build number change.
-# It will be up to the maintainer to go hunt down the correct jdk version and update the template.
+_jdk_ver=${version%b*}
 _jdk_build=${version#*b}
-version=b${_jdk_build}
-pattern="jbrsdk-\d+_\d+_\d+(?:_\d+)?-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+version=${_jdk_ver}.b${_jdk_build}
+pattern="/releases/tag/jb\K11_\d+_\d+-b\d+(\.\d+)?(?=\">)"
+site="https://github.com/JetBrains/JetBrainsRuntime"

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: jetbrains-jdk-bin: update to 11.0.11b1504.16.
  2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
                   ` (4 preceding siblings ...)
  2021-08-31 18:51 ` [PR PATCH] [Updated] jetbrains-jdk-bin: update to 11.0.11b1504.16 Chocimier
@ 2021-08-31 18:53 ` Chocimier
  2021-08-31 18:53 ` [PR PATCH] [Merged]: " Chocimier
  6 siblings, 0 replies; 8+ messages in thread
From: Chocimier @ 2021-08-31 18:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 198 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/32435#issuecomment-909511708

Comment:
Fine.
Adapted update file to match xbps-src internals.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Merged]: jetbrains-jdk-bin: update to 11.0.11b1504.16.
  2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
                   ` (5 preceding siblings ...)
  2021-08-31 18:53 ` Chocimier
@ 2021-08-31 18:53 ` Chocimier
  6 siblings, 0 replies; 8+ messages in thread
From: Chocimier @ 2021-08-31 18:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 842 bytes --]

There's a merged pull request on the void-packages repository

jetbrains-jdk-bin: update to 11.0.11b1504.16.
https://github.com/void-linux/void-packages/pull/32435

Description:
#### General

A regular version bump.

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-08-31 18:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-10  4:31 [PR PATCH] jetbrains-jdk-bin: update to 11.0.11b1504.13 2asoft
2021-08-11 23:18 ` Chocimier
2021-08-30 18:10 ` Chocimier
2021-08-31  2:28 ` 2asoft
2021-08-31  2:31 ` [PR PATCH] [Updated] " 2asoft
2021-08-31 18:51 ` [PR PATCH] [Updated] jetbrains-jdk-bin: update to 11.0.11b1504.16 Chocimier
2021-08-31 18:53 ` Chocimier
2021-08-31 18:53 ` [PR PATCH] [Merged]: " Chocimier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).