Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2
@ 2019-10-19 19:54 voidlinux-github
  2019-10-19 19:58 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-19 19:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-11.0.4.520.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 28118d8052a57facbe9fb696ec6a8e4cfa5cc86c Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-11.0.4.520.2

---
 srcpkgs/jetbrains-jdk-11/template | 39 +++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11/update   |  3 +++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11/template
 create mode 100644 srcpkgs/jetbrains-jdk-11/update

diff --git a/srcpkgs/jetbrains-jdk-11/template b/srcpkgs/jetbrains-jdk-11/template
new file mode 100644
index 00000000000..1dc9cf5aafc
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/template
@@ -0,0 +1,39 @@
+# Template file for 'jetbrains-jdk-11'
+
+_jdk_build=520.2
+_jdk_fullver="11.0.4"
+archive_name="jbrsdk-${_jdk_fullver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+
+pkgname=jetbrains-jdk-11
+version="${_jdk_fullver}b${_jdk_build}"
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+depends=""
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0+CE"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/${archive_name}"
+checksum=690307a7bde2ae6ee11f245d8064bfa928bb6b03240ce75caebcb6002c934472
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11/update b/srcpkgs/jetbrains-jdk-11/update
new file mode 100644
index 00000000000..251f1bcb8f9
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/update
@@ -0,0 +1,3 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+site="https://bintray.com/package/files/jetbrains/intellij-jbr/jbrsdk11-linux-x64"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-11.0.4.520.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
@ 2019-10-19 19:58 ` voidlinux-github
  2019-10-19 19:58 ` voidlinux-github
                   ` (21 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-19 19:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-11.0.4.520.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 7cad3a0adaba7e74b5ea91089ca9181cc24b33b0 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-11.0.4.520.2

---
 srcpkgs/jetbrains-jdk-11/template | 39 +++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11/update   |  3 +++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11/template
 create mode 100644 srcpkgs/jetbrains-jdk-11/update

diff --git a/srcpkgs/jetbrains-jdk-11/template b/srcpkgs/jetbrains-jdk-11/template
new file mode 100644
index 00000000000..56cc34f03e9
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/template
@@ -0,0 +1,39 @@
+# Template file for 'jetbrains-jdk-11'
+
+_jdk_build=520.2
+_jdk_fullver="11.0.4"
+_archive_name="jbrsdk-${_jdk_fullver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+
+pkgname=jetbrains-jdk-11
+version="${_jdk_fullver}b${_jdk_build}"
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+depends=""
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0+CE"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/${_archive_name}"
+checksum=690307a7bde2ae6ee11f245d8064bfa928bb6b03240ce75caebcb6002c934472
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11/update b/srcpkgs/jetbrains-jdk-11/update
new file mode 100644
index 00000000000..251f1bcb8f9
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/update
@@ -0,0 +1,3 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+site="https://bintray.com/package/files/jetbrains/intellij-jbr/jbrsdk11-linux-x64"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-11.0.4.520.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
  2019-10-19 19:58 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-19 19:58 ` voidlinux-github
  2019-10-19 20:01 ` voidlinux-github
                   ` (20 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-19 19:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-11.0.4.520.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 7cad3a0adaba7e74b5ea91089ca9181cc24b33b0 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-11.0.4.520.2

---
 srcpkgs/jetbrains-jdk-11/template | 39 +++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11/update   |  3 +++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11/template
 create mode 100644 srcpkgs/jetbrains-jdk-11/update

diff --git a/srcpkgs/jetbrains-jdk-11/template b/srcpkgs/jetbrains-jdk-11/template
new file mode 100644
index 00000000000..56cc34f03e9
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/template
@@ -0,0 +1,39 @@
+# Template file for 'jetbrains-jdk-11'
+
+_jdk_build=520.2
+_jdk_fullver="11.0.4"
+_archive_name="jbrsdk-${_jdk_fullver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+
+pkgname=jetbrains-jdk-11
+version="${_jdk_fullver}b${_jdk_build}"
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+depends=""
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0+CE"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/${_archive_name}"
+checksum=690307a7bde2ae6ee11f245d8064bfa928bb6b03240ce75caebcb6002c934472
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11/update b/srcpkgs/jetbrains-jdk-11/update
new file mode 100644
index 00000000000..251f1bcb8f9
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/update
@@ -0,0 +1,3 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+site="https://bintray.com/package/files/jetbrains/intellij-jbr/jbrsdk11-linux-x64"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-11.0.4.520.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
  2019-10-19 19:58 ` [PR PATCH] [Updated] " voidlinux-github
  2019-10-19 19:58 ` voidlinux-github
@ 2019-10-19 20:01 ` voidlinux-github
  2019-10-19 20:01 ` voidlinux-github
                   ` (19 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-19 20:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-11.0.4.520.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From e02d4f0f3111bf7d098b86fab4f7f7aa3e3797cb Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-11.0.4.520.2

---
 srcpkgs/jetbrains-jdk-11/template | 38 +++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11/update   |  3 +++
 2 files changed, 41 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11/template
 create mode 100644 srcpkgs/jetbrains-jdk-11/update

diff --git a/srcpkgs/jetbrains-jdk-11/template b/srcpkgs/jetbrains-jdk-11/template
new file mode 100644
index 00000000000..a63728ec75f
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/template
@@ -0,0 +1,38 @@
+# Template file for 'jetbrains-jdk-11'
+
+_jdk_build=520.2
+_jdk_fullver="11.0.4"
+_archive_name="jbrsdk-${_jdk_fullver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+
+pkgname=jetbrains-jdk-11
+version="${_jdk_fullver}b${_jdk_build}"
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0+CE"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/${_archive_name}"
+checksum=690307a7bde2ae6ee11f245d8064bfa928bb6b03240ce75caebcb6002c934472
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11/update b/srcpkgs/jetbrains-jdk-11/update
new file mode 100644
index 00000000000..251f1bcb8f9
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/update
@@ -0,0 +1,3 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+site="https://bintray.com/package/files/jetbrains/intellij-jbr/jbrsdk11-linux-x64"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-11.0.4.520.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-10-19 20:01 ` voidlinux-github
@ 2019-10-19 20:01 ` voidlinux-github
  2019-10-25  2:29 ` voidlinux-github
                   ` (18 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-19 20:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-11.0.4.520.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From e02d4f0f3111bf7d098b86fab4f7f7aa3e3797cb Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-11.0.4.520.2

---
 srcpkgs/jetbrains-jdk-11/template | 38 +++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11/update   |  3 +++
 2 files changed, 41 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11/template
 create mode 100644 srcpkgs/jetbrains-jdk-11/update

diff --git a/srcpkgs/jetbrains-jdk-11/template b/srcpkgs/jetbrains-jdk-11/template
new file mode 100644
index 00000000000..a63728ec75f
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/template
@@ -0,0 +1,38 @@
+# Template file for 'jetbrains-jdk-11'
+
+_jdk_build=520.2
+_jdk_fullver="11.0.4"
+_archive_name="jbrsdk-${_jdk_fullver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+
+pkgname=jetbrains-jdk-11
+version="${_jdk_fullver}b${_jdk_build}"
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0+CE"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/${_archive_name}"
+checksum=690307a7bde2ae6ee11f245d8064bfa928bb6b03240ce75caebcb6002c934472
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11/update b/srcpkgs/jetbrains-jdk-11/update
new file mode 100644
index 00000000000..251f1bcb8f9
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11/update
@@ -0,0 +1,3 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"
+site="https://bintray.com/package/files/jetbrains/intellij-jbr/jbrsdk11-linux-x64"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-11.0.4.520.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-10-25  2:29 ` voidlinux-github
@ 2019-10-25  2:29 ` voidlinux-github
  2019-10-25  4:16 ` [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.4b546.9 voidlinux-github
                   ` (16 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-25  2:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-11.0.4.520.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 7b1347679a805ea69cd8f965938487960956d831 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-bin-11.0.4b546.9

---
 srcpkgs/jetbrains-jdk-11-bin/template | 36 +++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11-bin/update   |  2 ++
 2 files changed, 38 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/update

diff --git a/srcpkgs/jetbrains-jdk-11-bin/template b/srcpkgs/jetbrains-jdk-11-bin/template
new file mode 100644
index 00000000000..f3e6283dc25
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/template
@@ -0,0 +1,36 @@
+# Template file for 'jetbrains-jdk-11-bin'
+
+pkgname=jetbrains-jdk-11-bin
+version="11.0.4b546.9"
+_jbr_sdk_ver=${version%b*}
+_jbr_sdk_ver=${_jbr_sdk_ver//\./_}
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0-only, Classpath-exception-2.0"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jbr_sdk_ver}-linux-x64-b${version#*b}.tar.gz"
+checksum=f30e9f8cb8fc861c71a41cafb5e394eeebd96f11eeb43433b1510b30c0a55f2c
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11-bin/update b/srcpkgs/jetbrains-jdk-11-bin/update
new file mode 100644
index 00000000000..38f51220234
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/update
@@ -0,0 +1,2 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-11.0.4.520.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-10-19 20:01 ` voidlinux-github
@ 2019-10-25  2:29 ` voidlinux-github
  2019-10-25  2:29 ` voidlinux-github
                   ` (17 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-25  2:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-11.0.4.520.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 7b1347679a805ea69cd8f965938487960956d831 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-bin-11.0.4b546.9

---
 srcpkgs/jetbrains-jdk-11-bin/template | 36 +++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11-bin/update   |  2 ++
 2 files changed, 38 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/update

diff --git a/srcpkgs/jetbrains-jdk-11-bin/template b/srcpkgs/jetbrains-jdk-11-bin/template
new file mode 100644
index 00000000000..f3e6283dc25
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/template
@@ -0,0 +1,36 @@
+# Template file for 'jetbrains-jdk-11-bin'
+
+pkgname=jetbrains-jdk-11-bin
+version="11.0.4b546.9"
+_jbr_sdk_ver=${version%b*}
+_jbr_sdk_ver=${_jbr_sdk_ver//\./_}
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0-only, Classpath-exception-2.0"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jbr_sdk_ver}-linux-x64-b${version#*b}.tar.gz"
+checksum=f30e9f8cb8fc861c71a41cafb5e394eeebd96f11eeb43433b1510b30c0a55f2c
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11-bin/update b/srcpkgs/jetbrains-jdk-11-bin/update
new file mode 100644
index 00000000000..38f51220234
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/update
@@ -0,0 +1,2 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.4b546.9
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-10-25  2:29 ` voidlinux-github
@ 2019-10-25  4:16 ` voidlinux-github
  2019-10-25  4:16 ` voidlinux-github
                   ` (15 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-25  4:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-bin-11.0.4b546.9
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 8ac0d8eba770001455c5511e8c28c0f36e8e27da Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-bin-11.0.4b546.9

---
 srcpkgs/jetbrains-jdk-11-bin/template | 36 +++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11-bin/update   |  2 ++
 2 files changed, 38 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/update

diff --git a/srcpkgs/jetbrains-jdk-11-bin/template b/srcpkgs/jetbrains-jdk-11-bin/template
new file mode 100644
index 00000000000..7e3e7cb8c86
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/template
@@ -0,0 +1,36 @@
+# Template file for 'jetbrains-jdk-11-bin'
+
+pkgname=jetbrains-jdk-11-bin
+version=11.0.4b546.9
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0-only, Classpath-exception-2.0"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+_jbr_sdk_ver=${version%b*}
+_jbr_sdk_ver=${_jbr_sdk_ver//\./_}
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jbr_sdk_ver}-linux-x64-b${version#*b}.tar.gz"
+checksum=f30e9f8cb8fc861c71a41cafb5e394eeebd96f11eeb43433b1510b30c0a55f2c
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11-bin/update b/srcpkgs/jetbrains-jdk-11-bin/update
new file mode 100644
index 00000000000..38f51220234
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/update
@@ -0,0 +1,2 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.4b546.9
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (6 preceding siblings ...)
  2019-10-25  4:16 ` [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.4b546.9 voidlinux-github
@ 2019-10-25  4:16 ` voidlinux-github
  2019-10-26 14:04 ` voidlinux-github
                   ` (14 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-25  4:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-bin-11.0.4b546.9
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 8ac0d8eba770001455c5511e8c28c0f36e8e27da Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-bin-11.0.4b546.9

---
 srcpkgs/jetbrains-jdk-11-bin/template | 36 +++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11-bin/update   |  2 ++
 2 files changed, 38 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/update

diff --git a/srcpkgs/jetbrains-jdk-11-bin/template b/srcpkgs/jetbrains-jdk-11-bin/template
new file mode 100644
index 00000000000..7e3e7cb8c86
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/template
@@ -0,0 +1,36 @@
+# Template file for 'jetbrains-jdk-11-bin'
+
+pkgname=jetbrains-jdk-11-bin
+version=11.0.4b546.9
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="aria2"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+license="GPL-2.0-only, Classpath-exception-2.0"
+homepage="https://github.com/JetBrains/JetBrainsRuntime"
+_jbr_sdk_ver=${version%b*}
+_jbr_sdk_ver=${_jbr_sdk_ver//\./_}
+distfiles="https://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jbr_sdk_ver}-linux-x64-b${version#*b}.tar.gz"
+checksum=f30e9f8cb8fc861c71a41cafb5e394eeebd96f11eeb43433b1510b30c0a55f2c
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="aria2c -c"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11-bin/update b/srcpkgs/jetbrains-jdk-11-bin/update
new file mode 100644
index 00000000000..38f51220234
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/update
@@ -0,0 +1,2 @@
+version=b${version#*b}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.4b546.9
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (7 preceding siblings ...)
  2019-10-25  4:16 ` voidlinux-github
@ 2019-10-26 14:04 ` voidlinux-github
  2019-10-26 14:04 ` voidlinux-github
                   ` (13 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 14:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-bin-11.0.4b546.9
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 949f3843fbdc003e412feee10555d3b993c41c3e Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-11-bin/template | 36 +++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11-bin/update   |  6 +++++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/update

diff --git a/srcpkgs/jetbrains-jdk-11-bin/template b/srcpkgs/jetbrains-jdk-11-bin/template
new file mode 100644
index 00000000000..f8db4a9ce12
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/template
@@ -0,0 +1,36 @@
+# Template file for 'jetbrains-jdk-11-bin'
+
+pkgname=jetbrains-jdk-11-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="wget"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11-bin/update b/srcpkgs/jetbrains-jdk-11-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.4b546.9
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (8 preceding siblings ...)
  2019-10-26 14:04 ` voidlinux-github
@ 2019-10-26 14:04 ` voidlinux-github
  2019-10-26 14:25 ` New package: jetbrains-jdk-11-bin-11.0.5b562.2 voidlinux-github
                   ` (12 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 14:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-bin-11.0.4b546.9
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 949f3843fbdc003e412feee10555d3b993c41c3e Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-11-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-11-bin/template | 36 +++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-11-bin/update   |  6 +++++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-11-bin/update

diff --git a/srcpkgs/jetbrains-jdk-11-bin/template b/srcpkgs/jetbrains-jdk-11-bin/template
new file mode 100644
index 00000000000..f8db4a9ce12
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/template
@@ -0,0 +1,36 @@
+# Template file for 'jetbrains-jdk-11-bin'
+
+pkgname=jetbrains-jdk-11-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+
+fetch_cmd="wget"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk-11"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-11-bin/update b/srcpkgs/jetbrains-jdk-11-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-11-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: New package: jetbrains-jdk-11-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (9 preceding siblings ...)
  2019-10-26 14:04 ` voidlinux-github
@ 2019-10-26 14:25 ` voidlinux-github
  2019-10-26 16:31 ` voidlinux-github
                   ` (11 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 14:25 UTC (permalink / raw)
  To: ml

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

New comment by 2asoft on void-packages repository

https://github.com/void-linux/void-packages/pull/15629#issuecomment-546607632

Comment:
@Chocimier I believe I've addressed all comments now.

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

* Re: New package: jetbrains-jdk-11-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (10 preceding siblings ...)
  2019-10-26 14:25 ` New package: jetbrains-jdk-11-bin-11.0.5b562.2 voidlinux-github
@ 2019-10-26 16:31 ` voidlinux-github
  2019-10-26 21:10 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (10 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 16:31 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/15629#issuecomment-546618252

Comment:
Works with pycharm, looks ok. But, as said, I rather not want have version in pkgname before there is need to have more than one version. And please remove empty lines in variables section.

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (12 preceding siblings ...)
  2019-10-26 21:10 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-26 21:10 ` voidlinux-github
  2019-10-26 21:11 ` New package: jetbrains-jdk-bin-11.0.5b562.2 voidlinux-github
                   ` (8 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 21:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 61c9a119971981382ee870619d5275f9cca91cd7 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..6fd0ae3f663
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+fetch_cmd="wget"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (11 preceding siblings ...)
  2019-10-26 16:31 ` voidlinux-github
@ 2019-10-26 21:10 ` voidlinux-github
  2019-10-26 21:10 ` voidlinux-github
                   ` (9 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 21:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-11-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 61c9a119971981382ee870619d5275f9cca91cd7 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..6fd0ae3f663
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+nopie=yes
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+fetch_cmd="wget"
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: New package: jetbrains-jdk-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (13 preceding siblings ...)
  2019-10-26 21:10 ` voidlinux-github
@ 2019-10-26 21:11 ` voidlinux-github
  2019-10-26 21:19 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (7 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 21:11 UTC (permalink / raw)
  To: ml

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

New comment by 2asoft on void-packages repository

https://github.com/void-linux/void-packages/pull/15629#issuecomment-546639736

Comment:
 I must've missed the part about empty lines, and didn't understand that I should remove the version number.
Done now.

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (14 preceding siblings ...)
  2019-10-26 21:11 ` New package: jetbrains-jdk-bin-11.0.5b562.2 voidlinux-github
@ 2019-10-26 21:19 ` voidlinux-github
  2019-10-26 21:19 ` voidlinux-github
                   ` (6 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 21:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 65e16b81f53028b4ecd84e58972798e41a7c269e Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..d5f175eb2c3
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+fetch_cmd="wget"
+nopie=yes
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (15 preceding siblings ...)
  2019-10-26 21:19 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-26 21:19 ` voidlinux-github
  2019-10-26 21:32 ` voidlinux-github
                   ` (5 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 21:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 65e16b81f53028b4ecd84e58972798e41a7c269e Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..d5f175eb2c3
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+noverifyrdeps=yes
+fetch_cmd="wget"
+nopie=yes
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (17 preceding siblings ...)
  2019-10-26 21:32 ` voidlinux-github
@ 2019-10-26 21:32 ` voidlinux-github
  2019-10-31  3:32 ` voidlinux-github
                   ` (3 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 21:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 780a48042eae110170602e46abcca8e00a77feaf Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..2c7199fc507
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+fetch_cmd="wget"
+noverifyrdeps=yes
+nopie=yes
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (16 preceding siblings ...)
  2019-10-26 21:19 ` voidlinux-github
@ 2019-10-26 21:32 ` voidlinux-github
  2019-10-26 21:32 ` voidlinux-github
                   ` (4 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-26 21:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 780a48042eae110170602e46abcca8e00a77feaf Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b562.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..2c7199fc507
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b562.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=a8dcf5173de669c893c7dcfe1b44997293972a7cec193feb11b79475eb77f56f
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+fetch_cmd="wget"
+noverifyrdeps=yes
+nopie=yes
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (18 preceding siblings ...)
  2019-10-26 21:32 ` voidlinux-github
@ 2019-10-31  3:32 ` voidlinux-github
  2019-10-31  3:32 ` voidlinux-github
                   ` (2 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-31  3:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 1dc0928ec4e9ce42503af815f0f585e24c7d25b5 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b569.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..b81ed57731f
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b569.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=008a98cf5e9205502211acdf61bb0d024e21f28fb33198798863ad90e4d1ecca
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+fetch_cmd="wget"
+noverifyrdeps=yes
+nopie=yes
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b562.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (19 preceding siblings ...)
  2019-10-31  3:32 ` voidlinux-github
@ 2019-10-31  3:32 ` voidlinux-github
  2019-11-09  6:05 ` [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b569.2 voidlinux-github
  2019-11-09 19:58 ` voidlinux-github
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-10-31  3:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-bin-11.0.5b562.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 1dc0928ec4e9ce42503af815f0f585e24c7d25b5 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b569.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..b81ed57731f
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b569.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=008a98cf5e9205502211acdf61bb0d024e21f28fb33198798863ad90e4d1ecca
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+fetch_cmd="wget"
+noverifyrdeps=yes
+nopie=yes
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b569.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (20 preceding siblings ...)
  2019-10-31  3:32 ` voidlinux-github
@ 2019-11-09  6:05 ` voidlinux-github
  2019-11-09 19:58 ` voidlinux-github
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-11-09  6:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/2asoft/void-packages 2asoft/jetbrains-jre
https://github.com/void-linux/void-packages/pull/15629

New package: jetbrains-jdk-bin-11.0.5b569.2
Package name is `jetbrains-jdk-11`.
Version is `11.0.4 build 520.2`.
The `-11` is part of package name because there is also a JDK 8 by JetBrains.
If there is a way to publish multiple disjoint versions of a package by the same name, (eg a jetbrains-jdk v8 and a v11), I would appreciate a pointer so I could change the template here. 

The sources for this are available at the "homepage" location.
Ideally, we should build the sources to JetBrainsd JDK, however, I do not currently have the time to setup that build.
There is such a package in AUR in Arch Linux, it could be used as an example.

Once this is merged, I will also update PR #11736 to depend on this jdk.



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

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

From 19b2b74940f064a33d7b91caf9e54cab92aba803 Mon Sep 17 00:00:00 2001
From: Anton Afanasyev <anton@doubleasoftware.com>
Date: Sat, 19 Oct 2019 10:36:50 -0700
Subject: [PATCH] New package: jetbrains-jdk-bin-11.0.5b569.2

---
 srcpkgs/jetbrains-jdk-bin/template | 34 ++++++++++++++++++++++++++++++
 srcpkgs/jetbrains-jdk-bin/update   |  6 ++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/jetbrains-jdk-bin/template
 create mode 100644 srcpkgs/jetbrains-jdk-bin/update

diff --git a/srcpkgs/jetbrains-jdk-bin/template b/srcpkgs/jetbrains-jdk-bin/template
new file mode 100644
index 00000000000..b81ed57731f
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/template
@@ -0,0 +1,34 @@
+# Template file for 'jetbrains-jdk-bin'
+pkgname=jetbrains-jdk-bin
+version=11.0.5b569.2
+revision=1
+archs="x86_64"
+wrksrc="jbrsdk"
+hostmakedepends="wget"
+short_desc="JetBrains Java 11 JDK"
+maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
+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://dl.bintray.com/jetbrains/intellij-jbr/jbrsdk-${_jdk_ver//\./_}-linux-x64-b${_jdk_build}.tar.gz"
+checksum=008a98cf5e9205502211acdf61bb0d024e21f28fb33198798863ad90e4d1ecca
+# This JDK appears to link to libs that do not exist, but still continues to function well even in their absence.
+# Best guess is that they are optional. ¯\_(ツ)_/¯
+fetch_cmd="wget"
+noverifyrdeps=yes
+nopie=yes
+
+do_install() {
+	TARGET_PATH="usr/lib/jvm/jbrsdk"
+
+	vmkdir ${TARGET_PATH}
+
+	vcopy bin ${TARGET_PATH}
+	vcopy conf ${TARGET_PATH}
+	vcopy include ${TARGET_PATH}
+	vcopy jmods ${TARGET_PATH}
+	vcopy legal ${TARGET_PATH}
+	vcopy lib ${TARGET_PATH}
+	vcopy release ${TARGET_PATH}
+}
diff --git a/srcpkgs/jetbrains-jdk-bin/update b/srcpkgs/jetbrains-jdk-bin/update
new file mode 100644
index 00000000000..ef354cac3dd
--- /dev/null
+++ b/srcpkgs/jetbrains-jdk-bin/update
@@ -0,0 +1,6 @@
+# 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_build=${version#*b}
+version=b${_jdk_build}
+pattern="jbrsdk-\d+_\d+_\d+-(?:linux-x64-)\Kb\d+\.\d+(?=\.tar\.gz</a>)"

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

* Re: New package: jetbrains-jdk-bin-11.0.5b569.2
  2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
                   ` (21 preceding siblings ...)
  2019-11-09  6:05 ` [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b569.2 voidlinux-github
@ 2019-11-09 19:58 ` voidlinux-github
  22 siblings, 0 replies; 24+ messages in thread
From: voidlinux-github @ 2019-11-09 19:58 UTC (permalink / raw)
  To: ml

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

New comment by 2asoft on void-packages repository

https://github.com/void-linux/void-packages/pull/15629#issuecomment-552132099

Comment:
Friendly ping.
Is anything else required to get this in?

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

end of thread, other threads:[~2019-11-09 19:58 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-19 19:54 [PR PATCH] New package: jetbrains-jdk-11-11.0.4.520.2 voidlinux-github
2019-10-19 19:58 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-19 19:58 ` voidlinux-github
2019-10-19 20:01 ` voidlinux-github
2019-10-19 20:01 ` voidlinux-github
2019-10-25  2:29 ` voidlinux-github
2019-10-25  2:29 ` voidlinux-github
2019-10-25  4:16 ` [PR PATCH] [Updated] New package: jetbrains-jdk-11-bin-11.0.4b546.9 voidlinux-github
2019-10-25  4:16 ` voidlinux-github
2019-10-26 14:04 ` voidlinux-github
2019-10-26 14:04 ` voidlinux-github
2019-10-26 14:25 ` New package: jetbrains-jdk-11-bin-11.0.5b562.2 voidlinux-github
2019-10-26 16:31 ` voidlinux-github
2019-10-26 21:10 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-26 21:10 ` voidlinux-github
2019-10-26 21:11 ` New package: jetbrains-jdk-bin-11.0.5b562.2 voidlinux-github
2019-10-26 21:19 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-26 21:19 ` voidlinux-github
2019-10-26 21:32 ` voidlinux-github
2019-10-26 21:32 ` voidlinux-github
2019-10-31  3:32 ` voidlinux-github
2019-10-31  3:32 ` voidlinux-github
2019-11-09  6:05 ` [PR PATCH] [Updated] New package: jetbrains-jdk-bin-11.0.5b569.2 voidlinux-github
2019-11-09 19:58 ` voidlinux-github

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).