Remove/patch metadata timestamps for reproducibility. diff -ur fpcbuild-3.0.0.old/fpcsrc/packages/fpmkunit/src/fpmkunit.pp fpcbuild-3.0.0/fpcsrc/packages/fpmkunit/src/fpmkunit.pp --- fpcbuild-3.0.0.old/fpcsrc/packages/fpmkunit/src/fpmkunit.pp 2015-11-04 16:17:00.000000000 -0500 +++ fpcbuild-3.0.0/fpcsrc/packages/fpmkunit/src/fpmkunit.pp 2017-01-26 16:25:29.327339282 -0500 @@ -3779,7 +3779,7 @@ Values[KeyName]:=Name; Values[KeyVersion]:=Version; // TODO Generate checksum based on PPUs - InstalledChecksum:=DateTimeToFileDate(Now); + InstalledChecksum:=0; Values[KeyChecksum]:=IntToStr(InstalledChecksum); Values[KeyCPU]:=CPUToString(ACPU); Values[KeyOS]:=OSToString(AOS); diff -ur fpcbuild-3.0.0.old/fpcsrc/utils/fpcmkcfg/fpcmkcfg.pp fpcbuild-3.0.0/fpcsrc/utils/fpcmkcfg/fpcmkcfg.pp --- fpcbuild-3.0.0.old/fpcsrc/utils/fpcmkcfg/fpcmkcfg.pp 2013-06-01 18:27:16.000000000 -0400 +++ fpcbuild-3.0.0/fpcsrc/utils/fpcmkcfg/fpcmkcfg.pp 2017-01-26 16:24:22.949044903 -0500 @@ -234,8 +234,8 @@ TemplateParser.Values['FPCTARGETOS'] := BuildOSTarget; TemplateParser.Values['FPCBIN'] := 'fpc'; TemplateParser.Values['PWD'] := GetCurrentDir; - TemplateParser.Values['BUILDDATE'] := DateToStr(Date); - TemplateParser.Values['BUILDTIME'] := TimeToStr(Time); + TemplateParser.Values['BUILDDATE'] := ''; + TemplateParser.Values['BUILDTIME'] := ''; TemplateParser.Values['LOCALREPOSITORY'] := GetDefaultLocalRepository; TemplateParser.Values['LOCALBASEPATH'] := GetDefaultLocalBasepath; action='/guix/log/gnu/tests/nfs.scm'>
path: root/gnu/tests/nfs.scm
AgeCommit message (Expand)Author
2020-11-07tests: nfs-root-fs: Use the right store file name....* gnu/tests/nfs.scm (run-nfs-root-fs-test): Pass "nfs-root-fs-test" as the first argument to 'gexp->derivation'. Ludovic Courtès
2020-09-10tests: nfs: Improve "nfs-root-fs"....Follow-up to a1a39ed5a46044161a71cbe6931c7e3006a82ecb. * gnu/tests/nfs.scm (run-nfs-root-fs-test): Improve tests. (%test-nfs-root-fs)[description]: Modify. Danny Milosavljevic
2020-09-07tests: nfs: Improve "nfs-root-fs"....Follow-up to a1a39ed5a46044161a71cbe6931c7e3006a82ecb. * gnu/tests/nfs.scm (run-nfs-root-fs-test): Improve tests. Danny Milosavljevic
2020-09-07tests: Add "nfs-root-fs" system test....* gnu/tests/nfs.scm (run-nfs-root-fs-test): New procedure. (%test-nfs-root-fs): New variable. Export it. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org> Stefan
2020-03-25tests/nfs: Fix use of WAIT-FOR-FILE....* gnu/tests/nfs.scm ("nfs services are running"): Pass marionette to WAIT-FOR-FILE. Ricardo Wurmus
2020-03-16tests: nfs-server: Use marionette helper procedures....* gnu/tests/nfs.scm (run-nfs-server-test)[test](wait-for-file): Remove. ("nscd is listening on its socket"): Use 'wait-for-unix-socket'. Ludovic Courtès
2020-03-16tests: nfs: Ensure 'rpcinfo' can be found....The test was failing since 8b9cad01e9619f53dc5a65892ca6a09ca5de3447. * gnu/tests/nfs.scm (run-nfs-test)[test]("RPC service running"): Add 'setenv' call for PATH. Ludovic Courtès
2020-01-08services: nfs: Add nfs-service-type....* gnu/services/nfs.scm (<nfs-configuration>): New record. (nfs-configuration, nfs-configuration?, nfs-configuration-nfs-utils, nfs-configuration-nfs-version, nfs-configuration-exports, nfs-configuration-rpcmountd-port, nfs-configuration-rpcstatd-port, nfs-configuration-rpcbind, nfs-configuration-idmap-domain, nfs-configuration-nfsd-port, nfs-configuration-nfsd-threads, nfs-configuration-pipefs-directory, nfs-configuration-debug, nfs-shepherd-services): New procedures. (nfs-service-type): New variable. * doc/guix.texi (Network File System): Document it. * gnu/tests/nfs.scm (%test-nfs-server): New variable. (%base-os): Use default value of rpcbind-service-type. Ricardo Wurmus