unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#45530] [PATCH] gnu: java-xstream: Update to 1.4.15.
@ 2020-12-29 12:01 Vincent Legoll
  2020-12-30 21:11 ` Leo Famulari
  0 siblings, 1 reply; 6+ messages in thread
From: Vincent Legoll @ 2020-12-29 12:01 UTC (permalink / raw)
  To: 45530; +Cc: Vincent Legoll

* gnu/packages/xml.scm (java-xstream): Update to 1.4.15.
---
 gnu/packages/xml.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 9dc37addf4..2c7b2901a0 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -2132,7 +2132,7 @@ outputting XML data from Java code.")
 (define-public java-xstream
   (package
     (name "java-xstream")
-    (version "1.4.10")
+    (version "1.4.15")
     (source
      (origin
        (method git-fetch)
@@ -2144,7 +2144,7 @@ outputting XML data from Java code.")
                                   version)))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "12m2bw8bapdc1w0pni9wl5hh2y8jfdgcvxd464jl9917dsp3ai2n"))))
+        (base32 "1178qryrjwjp44439pi5dxzd32896r5zs429z1qhlc09951r7mi9"))))
     (build-system ant-build-system)
     (arguments
      `(#:jar-name "xstream.jar"
-- 
2.29.2





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

* [bug#45530] [PATCH] gnu: java-xstream: Update to 1.4.15.
  2020-12-29 12:01 [bug#45530] [PATCH] gnu: java-xstream: Update to 1.4.15 Vincent Legoll
@ 2020-12-30 21:11 ` Leo Famulari
  2020-12-31 14:00   ` Vincent Legoll
  0 siblings, 1 reply; 6+ messages in thread
From: Leo Famulari @ 2020-12-30 21:11 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 45530

On Tue, Dec 29, 2020 at 01:01:30PM +0100, Vincent Legoll wrote:
> * gnu/packages/xml.scm (java-xstream): Update to 1.4.15.

I tested the affected packages:

------
$ guix refresh -l java-xstream   
Building the following 1 package would ensure 31 dependent packages are rebuilt: maven@3.6.1
$ ./pre-inst-env guix build --no-grafts maven
[...]
BUILD FAILED
/tmp/guix-build-java-kafka-clients-1.0.0.drv-0/kafka-1.0.0-src/build.xml:1: Test org.apache.kafka.common.network.SslTransportLayerTest failed

Total time: 3 minutes 5 seconds
command "ant" "check" failed with status 1
builder for `/gnu/store/yls4mcjskj4c95hls51naj056685zqq6-java-kafka-clients-1.0.0.drv' failed with exit code 1
build of /gnu/store/yls4mcjskj4c95hls51naj056685zqq6-java-kafka-clients-1.0.0.drv failed
------

java-kafka-clients does not depend on java-xstream:

------
$ guix graph java-kafka-clients | grep xstream
$
------

But I'd like to be sure before pushing the update.

Are you able to build maven with the java-xstream update?




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

* [bug#45530] [PATCH] gnu: java-xstream: Update to 1.4.15.
  2020-12-30 21:11 ` Leo Famulari
@ 2020-12-31 14:00   ` Vincent Legoll
  2020-12-31 18:52     ` Leo Famulari
  0 siblings, 1 reply; 6+ messages in thread
From: Vincent Legoll @ 2020-12-31 14:00 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 45530

Hello,

On Wed, Dec 30, 2020 at 10:11 PM Leo Famulari <leo@famulari.name> wrote:
> Are you able to build maven with the java-xstream update?

I tried:

./pre-inst-env guix build --no-grafts maven

which failed with:

BUILD FAILED
/tmp/guix-build-maven-wagon-http-3.3.4.drv-0/wagon-3.3.4/build.xml:1:
Test org.apache.maven.wagon.providers.http.HttpWagonErrorTest failed

Total time: 1 second
command "ant" "check" failed with status 1
builder for `/gnu/store/pwmh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv'
failed with exit code 1
build of /gnu/store/pwmh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv
failed
View build log at
'/var/log/guix/drvs/pw/mh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv.bz2'.
cannot build derivation
`/gnu/store/9g3i7s3fyravk1q6mrdmqhi0dnszn5x7-maven-3.6.1.drv': 1
dependencies couldn't be built
guix build: error: build of
`/gnu/store/9g3i7s3fyravk1q6mrdmqhi0dnszn5x7-maven-3.6.1.drv' failed
vince@guix ~/dev/repo/guix [env]$ guix graph maven-wagon-http | grep xstream

So I don't know what to conclude.

-- 
Vincent Legoll




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

* [bug#45530] [PATCH] gnu: java-xstream: Update to 1.4.15.
  2020-12-31 14:00   ` Vincent Legoll
@ 2020-12-31 18:52     ` Leo Famulari
  2020-12-31 23:36       ` bug#45530: " Julien Lepiller
  0 siblings, 1 reply; 6+ messages in thread
From: Leo Famulari @ 2020-12-31 18:52 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 45530

Pinging the Maven expert!

On Thu, Dec 31, 2020 at 03:00:39PM +0100, Vincent Legoll wrote:
> Hello,
> 
> On Wed, Dec 30, 2020 at 10:11 PM Leo Famulari <leo@famulari.name> wrote:
> > Are you able to build maven with the java-xstream update?
> 
> I tried:
> 
> ./pre-inst-env guix build --no-grafts maven
> 
> which failed with:
> 
> BUILD FAILED
> /tmp/guix-build-maven-wagon-http-3.3.4.drv-0/wagon-3.3.4/build.xml:1:
> Test org.apache.maven.wagon.providers.http.HttpWagonErrorTest failed
> 
> Total time: 1 second
> command "ant" "check" failed with status 1
> builder for `/gnu/store/pwmh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv'
> failed with exit code 1
> build of /gnu/store/pwmh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv
> failed
> View build log at
> '/var/log/guix/drvs/pw/mh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv.bz2'.
> cannot build derivation
> `/gnu/store/9g3i7s3fyravk1q6mrdmqhi0dnszn5x7-maven-3.6.1.drv': 1
> dependencies couldn't be built
> guix build: error: build of
> `/gnu/store/9g3i7s3fyravk1q6mrdmqhi0dnszn5x7-maven-3.6.1.drv' failed
> vince@guix ~/dev/repo/guix [env]$ guix graph maven-wagon-http | grep xstream
> 
> So I don't know what to conclude.
> 
> -- 
> Vincent Legoll




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

* bug#45530: [PATCH] gnu: java-xstream: Update to 1.4.15.
  2020-12-31 18:52     ` Leo Famulari
@ 2020-12-31 23:36       ` Julien Lepiller
  2021-01-05 20:06         ` [bug#45530] " Björn Höfling
  0 siblings, 1 reply; 6+ messages in thread
From: Julien Lepiller @ 2020-12-31 23:36 UTC (permalink / raw)
  To: Leo Famulari; +Cc: Vincent Legoll, 45530-done

Le Thu, 31 Dec 2020 13:52:51 -0500,
Leo Famulari <leo@famulari.name> a écrit :

> Pinging the Maven expert!
> 
> On Thu, Dec 31, 2020 at 03:00:39PM +0100, Vincent Legoll wrote:
> > Hello,
> > 
> > On Wed, Dec 30, 2020 at 10:11 PM Leo Famulari <leo@famulari.name>
> > wrote:  
> > > Are you able to build maven with the java-xstream update?  
> > 
> > I tried:
> > 
> > ./pre-inst-env guix build --no-grafts maven
> > 
> > which failed with:
> > 
> > BUILD FAILED
> > /tmp/guix-build-maven-wagon-http-3.3.4.drv-0/wagon-3.3.4/build.xml:1:
> > Test org.apache.maven.wagon.providers.http.HttpWagonErrorTest failed
> > 
> > Total time: 1 second
> > command "ant" "check" failed with status 1
> > builder for
> > `/gnu/store/pwmh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv'
> > failed with exit code 1 build of
> > /gnu/store/pwmh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv
> > failed View build log at
> > '/var/log/guix/drvs/pw/mh9xclfmmacrw2ni989ha802fjmxqh-maven-wagon-http-3.3.4.drv.bz2'.
> > cannot build derivation
> > `/gnu/store/9g3i7s3fyravk1q6mrdmqhi0dnszn5x7-maven-3.6.1.drv': 1
> > dependencies couldn't be built
> > guix build: error: build of
> > `/gnu/store/9g3i7s3fyravk1q6mrdmqhi0dnszn5x7-maven-3.6.1.drv' failed
> > vince@guix ~/dev/repo/guix [env]$ guix graph maven-wagon-http |
> > grep xstream
> > 
> > So I don't know what to conclude.
> > 
> > -- 
> > Vincent Legoll  

Weird, I'm able to build maven from master, and after that
maven-wagon-http is indeed not in the path from xstream to maven.

Since it does not create any new failure (I was able to build maven
with this patch), I pushed it as
fdf7095e856c3c13a54baee5d942d14e96f7fb4d.

Thank you!




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

* [bug#45530] [PATCH] gnu: java-xstream: Update to 1.4.15.
  2020-12-31 23:36       ` bug#45530: " Julien Lepiller
@ 2021-01-05 20:06         ` Björn Höfling
  0 siblings, 0 replies; 6+ messages in thread
From: Björn Höfling @ 2021-01-05 20:06 UTC (permalink / raw)
  To: Julien Lepiller; +Cc: Vincent Legoll, 45530-done

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

On Fri, 1 Jan 2021 00:36:35 +0100
Julien Lepiller <julien@lepiller.eu> wrote:

> Le Thu, 31 Dec 2020 13:52:51 -0500,
> Leo Famulari <leo@famulari.name> a écrit :
> 
> > Pinging the Maven expert!

> > > BUILD FAILED
> > > /tmp/guix-build-maven-wagon-http-3.3.4.drv-0/wagon-3.3.4/build.xml:1:
> > > Test org.apache.maven.wagon.providers.http.HttpWagonErrorTest
> > > failed
> > > 

[..]

> Weird, I'm able to build maven from master, and after that
> maven-wagon-http is indeed not in the path from xstream to maven.
> 
> Since it does not create any new failure (I was able to build maven
> with this patch), I pushed it as
> fdf7095e856c3c13a54baee5d942d14e96f7fb4d.

Recently I noticed that maven-wagon-http has indeterministic test
failures. I opened a report under 45677.

Björn

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

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

end of thread, other threads:[~2021-01-05 20:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-29 12:01 [bug#45530] [PATCH] gnu: java-xstream: Update to 1.4.15 Vincent Legoll
2020-12-30 21:11 ` Leo Famulari
2020-12-31 14:00   ` Vincent Legoll
2020-12-31 18:52     ` Leo Famulari
2020-12-31 23:36       ` bug#45530: " Julien Lepiller
2021-01-05 20:06         ` [bug#45530] " Björn Höfling

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