This patch eliminates the need for providing "xjavac", which saves building a package for the unmaintained "xerces-tools". Taken from https://anonscm.debian.org/viewvc/pkg-java/trunk/libxerces2-java/debian/patches/01_xjavac_taskdef.patch?revision=14507 Index: b/build.xml =================================================================== --- a/build.xml +++ b/build.xml @@ -39,7 +39,7 @@ - + @@ -291,7 +291,7 @@ source="${javac.source}" target="${javac.target}" classpath="${build.dir}/classes:${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${tools.dir}/${jar.serializer}" - debug="${debug}" + debug="${debug}" nowarn="true" debuglevel="${debuglevel}" deprecation="${deprecation}" optimize="${optimize}" @@ -359,7 +359,7 @@ source="${javac.source}" target="${javac.target}" classpath="${build.dir}/classes:${tools.dir}/${jar.apis}" - debug="${debug}" + debug="${debug}" nowarn="true" debuglevel="${debuglevel}" includeAntRuntime="false" includeJavaRuntime="true"/> @@ -379,7 +379,7 @@ source="${javac.source}" target="${javac.target}" classpath="${tools.dir}/${jar.apis}:${build.dir}/classes:./tools/junit.jar" - debug="${debug}" + debug="${debug}" nowarn="true" debuglevel="${debuglevel}" includeAntRuntime="false" includeJavaRuntime="true"/> alue='a44569899a54d18a70b62498bec3774f0be3f66b'/>
AgeCommit message (Expand)Author
2022-02-24gnu: webkitgtk: Adjust BubbleWrap wrapper....This revisits <https://issues.guix.gnu.org/40837> with a fix that doesn't require to have PULSE_CLIENTCONFIG point to an absolute store location, which will allow us to revert to have PULSE_CLIENTCONFIG point to a fixed location under /etc. This would alleviate the need to reboot to have changes to the PulseAudio configuration effected. * gnu/packages/patches/webkitgtk-share-store.patch: Delete file. * gnu/packages/patches/webkitgtk-bubblewrap-paths.patch: Add file. * gnu/packages/patches/webkitgtk-canonicalize-paths.patch: Likewise. * gnu/local.mk (dist_patch_DATA): Update patches list. * gnu/packages/webkit.scm (webkitgtk)[patches]: Adjust accordingly. Maxim Cournoyer