unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#55255] [PATCH] gnu: openjdk: Update to 11.0.15.
@ 2022-05-04  6:39 Danny Milosavljevic
  2022-05-08 21:38 ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Danny Milosavljevic @ 2022-05-04  6:39 UTC (permalink / raw)
  To: 55255; +Cc: Danny Milosavljevic

* gnu/packages/java (openjdk): Update to 11.0.15.
[arguments]<#:phases>[fix-java-shebangs]: Adapt phase.
---
 gnu/packages/java.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 43422f383f..a644370821 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -1768,7 +1768,7 @@ (define-public openjdk11
 (define-public openjdk11
   (package
     (name "openjdk")
-    (version "11.0.13")
+    (version "11.0.15")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://openjdk-sources.osci.io/openjdk11/openjdk-"
@@ -1776,7 +1776,7 @@ (define-public openjdk11
               (file-name (string-append name "-" version ".tar.bz2"))
               (sha256
                (base32
-                "0xavz7msaadprq65p5bhp6sxcyp12p0zlbhb3aaz0cvp21c9pdm9"))
+                "0di91nnms2iq1svgq72r5y17am17r4vh2lq43k0bkcwpc84d6nd8"))
               (modules '((guix build utils)))
               (snippet
                `(begin
@@ -1819,8 +1819,8 @@ (define-public openjdk11
            (lambda _
              ;; This file was "fixed" by patch-source-shebangs, but it requires
              ;; this exact first line.
-             (substitute* "make/data/blacklistedcertsconverter/blacklisted.certs.pem"
-               (("^#!.*") "#! java BlacklistedCertsConverter SHA-256\n"))
+             (substitute* "make/data/blockedcertsconverter/blocked.certs.pem"
+               (("^#!.*") "#! java BlockedCertsConverter SHA-256\n"))
              #t))
          (add-after 'unpack 'patch-jni-libs
            ;; Hardcode dynamically loaded libraries.
-- 
2.35.1





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

* [bug#55255] [PATCH] gnu: openjdk: Update to 11.0.15.
  2022-05-04  6:39 [bug#55255] [PATCH] gnu: openjdk: Update to 11.0.15 Danny Milosavljevic
@ 2022-05-08 21:38 ` Ludovic Courtès
  2022-05-09 10:41   ` Danny Milosavljevic
  2022-05-09 17:50   ` Greg Hogan
  0 siblings, 2 replies; 5+ messages in thread
From: Ludovic Courtès @ 2022-05-08 21:38 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 55255

Hi Danny,

Danny Milosavljevic <dannym@scratchpost.org> skribis:

> * gnu/packages/java (openjdk): Update to 11.0.15.
> [arguments]<#:phases>[fix-java-shebangs]: Adapt phase.

If it works and dependents are fine (which I expect should be the case
for a point release), go for it!

Ludo’.




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

* [bug#55255] [PATCH] gnu: openjdk: Update to 11.0.15.
  2022-05-08 21:38 ` Ludovic Courtès
@ 2022-05-09 10:41   ` Danny Milosavljevic
  2022-05-09 17:50   ` Greg Hogan
  1 sibling, 0 replies; 5+ messages in thread
From: Danny Milosavljevic @ 2022-05-09 10:41 UTC (permalink / raw)
  To: 55255; +Cc: Ludovic Courtès

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

Pushed openjdk11 update to guix master as commit 271b2e43bef96f17f3f1e1085394b4bb144c5768.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#55255] [PATCH] gnu: openjdk: Update to 11.0.15.
  2022-05-08 21:38 ` Ludovic Courtès
  2022-05-09 10:41   ` Danny Milosavljevic
@ 2022-05-09 17:50   ` Greg Hogan
  2022-05-10 12:54     ` bug#55255: " Efraim Flashner
  1 sibling, 1 reply; 5+ messages in thread
From: Greg Hogan @ 2022-05-09 17:50 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Danny Milosavljevic, 55255

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

On Sun, May 8, 2022 at 5:39 PM Ludovic Courtès <ludo@gnu.org> wrote:

> > * gnu/packages/java (openjdk): Update to 11.0.15.
> > [arguments]<#:phases>[fix-java-shebangs]: Adapt phase.
>
> If it works and dependents are fine (which I expect should be the case
> for a point release), go for it!
>

This evaluation broke openjdk12+:
  https://ci.guix.gnu.org/build/760901/details

Greg

[-- Attachment #2: Type: text/html, Size: 796 bytes --]

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

* bug#55255: [PATCH] gnu: openjdk: Update to 11.0.15.
  2022-05-09 17:50   ` Greg Hogan
@ 2022-05-10 12:54     ` Efraim Flashner
  0 siblings, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2022-05-10 12:54 UTC (permalink / raw)
  To: Greg Hogan; +Cc: Danny Milosavljevic, Ludovic Courtès, 55255-done

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

On Mon, May 09, 2022 at 01:50:34PM -0400, Greg Hogan wrote:
> On Sun, May 8, 2022 at 5:39 PM Ludovic Courtès <ludo@gnu.org> wrote:
> 
> > > * gnu/packages/java (openjdk): Update to 11.0.15.
> > > [arguments]<#:phases>[fix-java-shebangs]: Adapt phase.
> >
> > If it works and dependents are fine (which I expect should be the case
> > for a point release), go for it!
> >
> 
> This evaluation broke openjdk12+:
>   https://ci.guix.gnu.org/build/760901/details

It's fixed now

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2022-05-10 12:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-04  6:39 [bug#55255] [PATCH] gnu: openjdk: Update to 11.0.15 Danny Milosavljevic
2022-05-08 21:38 ` Ludovic Courtès
2022-05-09 10:41   ` Danny Milosavljevic
2022-05-09 17:50   ` Greg Hogan
2022-05-10 12:54     ` bug#55255: " Efraim Flashner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).