From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1em3uQ-0007ej-4Y for guix-patches@gnu.org; Wed, 14 Feb 2018 15:44:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1em3uM-0006zq-15 for guix-patches@gnu.org; Wed, 14 Feb 2018 15:44:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:35378) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1em3uL-0006zf-TZ for guix-patches@gnu.org; Wed, 14 Feb 2018 15:44:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1em3uL-0000gu-HO for guix-patches@gnu.org; Wed, 14 Feb 2018 15:44:01 -0500 Subject: [bug#30417] [PATCH 10/11] gnu: Add java-modello-plugins-xpp3. Resent-Message-ID: Date: Wed, 14 Feb 2018 21:43:19 +0100 From: =?UTF-8?Q?Bj=C3=B6rn_?= =?UTF-8?Q?H=C3=B6fling?= Message-ID: <20180214214319.272db096@alma-ubu> In-Reply-To: <20180210230438.26794-10-julien@lepiller.eu> References: <20180210234811.40ddec07@lepiller.eu> <20180210230438.26794-10-julien@lepiller.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Julien Lepiller Cc: 30417@debbugs.gnu.org On Sun, 11 Feb 2018 00:04:37 +0100 Julien Lepiller wrote: > gnu/packages/java.scm (java-modello-plugins-xpp3): New variable. > --- > gnu/packages/java.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) >=20 > diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm > index 18ba46c5c..758665df9 100644 > --- a/gnu/packages/java.scm > +++ b/gnu/packages/java.scm > @@ -2924,6 +2924,34 @@ XSD and documentation.") > ("java-plexus-compiler-javac" ,java-plexus-compiler-javac) > ("java-plexus-container-default" ,java-plexus-container-default))= ))) > =20 > +(define-public java-modello-plugins-xpp3 > + (package > + (inherit java-modello-core) > + (name "java-modello-plugins-xpp3") > + (arguments > + `(#:jar-name "modello-plugins-xpp3.jar" > + #:source-dir > "modello-plugins/modello-plugin-xpp3/src/main/java" > + #:test-dir "modello-plugins/modello-plugin-xpp3/src/test" The following line is too long: > + #:tests? #f; I can find some of its dependencies, for > instance > org.codehaus.modello.test.features.io.xpp3.ModelloFeaturesTestXpp3Reader Did you really mean "I can find" or did you mean the opposite: "I can't find"? I would expect here reasons of why the tests are NOT executable. > + #:jdk ,icedtea-8 > + #:phases > + (modify-phases %standard-phases > + (add-before 'build 'copy-resources > + (lambda _ > + (mkdir-p "build/classes") > + (copy-recursively > "modello-plugins/modello-plugin-xpp3/src/main/resources" > + "build/classes") > + #t))))) > + (inputs > + `(("java-modello-core" ,java-modello-core) > + ("java-modello-plugins-java" ,java-modello-plugins-java) > + ("java-modello-plugins-xml" ,java-modello-plugins-xml) > + ,@(package-inputs java-modello-core))) > + (native-inputs > + `(("java-xmlunit" ,java-xmlunit) > + ("java-modello-test" ,java-modello-test) > + ,@(package-native-inputs java-modello-core))))) > + > (define-public java-asm > (package > (name "java-asm") License, description, synopsis: See java-modello-plugins-java. Bj=C3=B6rn