Based on https://anonscm.debian.org/viewvc/pkg-java/trunk/libxerces2-java/debian/patches/03_bootclasspath.patch?revision=14509, adopted for guix --- xerces-2_11_0/build.xml.orig 2010-11-26 21:42:11.000000000 +0100 +++ xerces-2_11_0/build.xml 2017-03-28 14:04:41.946606996 +0200 @@ -290,13 +290,14 @@ destdir="${build.dest}" source="${javac.source}" target="${javac.target}" - classpath="${build.dir}/classes:${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${tools.dir}/${jar.serializer}" + classpath="${build.dir}/classes:${jar.jaxp}:${jar.apis-ext}:${jar.resolver}" debug="${debug}" nowarn="true" debuglevel="${debuglevel}" deprecation="${deprecation}" optimize="${optimize}" includeAntRuntime="false" - includeJavaRuntime="false" + includeJavaRuntime="true" + bootclasspath="${jar.jaxp}:${jar.apis-ext}:${jar.resolver}" excludes="org/xml/sax/** javax/xml/** org/w3c/dom/* @@ -1451,13 +1452,14 @@ destdir="${build.dest}" source="${javac.source}" target="${javac.target}" - classpath="${build.dir}/classes:${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${tools.dir}/${jar.serializer}" + classpath="${build.dir}/classes:${jar.jaxp}:${jar.apis-ext}:${jar.resolver}" debug="${debug}" debuglevel="${debuglevel}" deprecation="${deprecation}" optimize="${optimize}" includeAntRuntime="false" - includeJavaRuntime="false" + includeJavaRuntime="true" + bootclasspath="${jar.jaxp}:${jar.apis-ext}:${jar.resolver}" excludes="org/xml/sax/** javax/xml/** org/w3c/dom/* ue=''/>
path: root/tests/guix-environment.sh
AgeCommit message (Expand)Author
2016-07-26environment: Set 'GUIX_ENVIRONMENT' to the profile....* guix/scripts/environment.scm (create-environment): Set 'GUIX_ENVIRONMENT' to PROFILE. * tests/guix-environment.sh: Test it. * doc/guix.texi (Invoking guix environment): Document it. Ludovic Courtès
2016-06-05profiles: 'profile-derivation' now honors #:system....Fixes <http://bugs.gnu.org/23682>. Reported by Ander GM <anthk@openmailbox.org>. * guix/profiles.scm (profile-derivation): Pass #:system to 'gexp->derivation'. * tests/guix-environment.sh: Add 'guix environment -s' test. Ludovic Courtès
2016-02-12scripts: environment: Build environments as profiles....Fixes <http://bugs.gnu.org/19816>. * guix/scripts/environment.scm (evaluate-input-search-paths) (build-inputs): Delete. (evaluate-profile-search-paths, strip-input-name) (package-or-package+output?, package-environment-inputs) (build-environment, inputs->profile-derivations): New procedures. (create-environment, show-search-paths, launch-environment) (launch-environment/container): Replace 'inputs' argument with 'profile' argument. (package+propagated-inputs): Strip off names off of input tuples. (options/resolve-packages): Handle input tuples that specify an output in expressions. (guix-environment): Convert inputs into a profile to use in the environment. Remove non-package inputs such as origins from environment inputs. * doc/guix.texi ("invoking guix environment"): Document package+output tuples for --expression option. * tests/guix-environment.sh: Update tests. * tests/guix-environment-container.sh: Likewise. Co-authored-by: Ludovic Courtès <ludo@gnu.org> David Thompson