ABCL's build calls the hostname command, and needs the internet to download JUnit. Neither of these are really required, though, so we can patch them out to make it build. We also remove the Implemetation-Build property that ends up in the manifest file, because it stores information about the time of the build, which makes it non-deterministic. --- a/build.xml +++ b/build.xml @@ -338,7 +338,7 @@ from ${abcl.home.dir} + depends="abcl.compile,abcl.stamp.version"> @@ -479,11 +479,6 @@ Mercurial and Git. value="${abcl.version}-${abcl.version.src}"/> - - - abcl.hostname: ${abcl.hostname} - - @@ -524,8 +519,6 @@ Mercurial and Git. value="ABCL"/> - @@ -1050,8 +1043,7 @@ ${basedir}/../cl-bench - +
AgeCommit message (Expand)Author
2023-11-08gnu: vim: Add vim packages to 'package-path' instead of 'runtime-path'.... This is neccesary because vim's built-in plugin manager looks for directories under 'package-path' instead of 'runtime-path.' Once we have told vim the package-path, it adds all the packages to the runtime-path automatically for us. * gnu/packages/aux-files/guix.vim: Add paths to packagepath instead of runtimepath. Remove code to adjust runtimepath after adding paths. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Jonathan Scoresby