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
2020-09-21services: dicod: Reduce irony....* gnu/services/dict.scm (dicod-service): Fix docstring typo. Tobias Geerinckx-Rice
2020-05-08services: Add descriptions....* gnu/services/dbus.scm (polkit-service-type)[description]: New field. * gnu/services/dict.scm (dicod-service-type)[description]: New field. * gnu/services/dns.scm (knot-service-type)[description]: New field. * gnu/services/networking.scm (dhcpd-service-type)[description]: New field. * gnu/services/shepherd.scm (shepherd-root-service-type)[description]: New field. * gnu/services/xorg.scm (slim-service-type)[description]: New field. (screen-locker-service-type)[description]: New field. * gnu/system/pam.scm (pam-root-service-type)[description]: New field. * gnu/system/shadow.scm (account-service-type)[description]: New field. Ludovic Courtès