Submitted upstream. From 4c3eb19a11dfe5c88c902481a8294c4f675fcd03 Mon Sep 17 00:00:00 2001 From: "Jan (janneke) Nieuwenhuizen" Date: Sun, 19 Apr 2020 23:33:28 +0200 Subject: [PATCH] Support cross-compiling to the Hurd. * cnf/hints/gnu: New file. * cnf/configure_tool.sh: Guess it. --- cnf/configure_tool.sh | 4 ++++ cnf/hints/gnu | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 cnf/hints/gnu diff --git a/cnf/configure_tool.sh b/cnf/configure_tool.sh index 32201c0..7b0baa4 100644 --- a/cnf/configure_tool.sh +++ b/cnf/configure_tool.sh @@ -266,6 +266,10 @@ if not hinted 'osname'; then define osname "bsd" result "BSD" ;; + *-gnu*) + define osname "gnu" + result "GNU" + ;; *) result "no" ;; diff --git a/cnf/hints/gnu b/cnf/hints/gnu new file mode 100644 index 0000000..a0583a2 --- /dev/null +++ b/cnf/hints/gnu @@ -0,0 +1,21 @@ +# Hurd syscalls +d_voidsig='define' +d_nanosleep='undef' +d_clock_gettime='define' +d_clock_getres='define' +d_clock_nanosleep='define' +d_clock='define' + +# From the original linux.sh +usemallocwrap='define' + +# libraries to test +libswanted='m crypt pthread nm ndbm gdbm dbm db dl gdbm_compat' + +d_procselfexe='undef' +procselfexe='"undef"' + +st_ino_sign=1 +st_ino_size=8 + +d_fcntl_can_lock='define' -- 2.26.0 92012c9'>treecommitdiff
path: root/etc/disarchive-manifest.scm
AgeCommit message (Expand)Author
2024-02-12gnu: disarchive: Update to 0.6.0....* gnu/packages/backup.scm (disarchive): Update to 0.6.0; add 'guile-bzip2' as an input. * gnu/packages/package-management.scm (guix): Add 'guile-bzip2' as an input to enable bzip2 support when using Disarchive. * guix/self.scm (%packages): Add 'guile-bzip2'. (compiled-guix): Include 'guile-bzip2' as a dependency when building the 'guix' command. * etc/disarchive-manifest.scm (tarball-origin?): Include bzip2 tarballs. Co-authored-by: Ludovic Courtès <ludovic.courtes@inria.fr> Change-Id: I4da479054f6bef225f5ea979c091152f8a9e51d5 Timothy Sample
2023-10-08disarchive-manifest: Add one manifest entry per tarball....This works around a situation where ‘cuirass remote-worker’ now builds with max-jobs = 1 (Cuirass commit 980ef610989895be5ac2ba7f9d1901e5c7f22934). The effect is that all .dis.drv would be performed sequentially, on a single machine (‘cuirass remote-server’ is unable to distribute those derivations to several machines because it only “sees” the ‘disarchive-collection’ derivation). This would take a lot of time and force a rebuild of all of *.dis.drv every time because their build results would not be retrieved by the ‘remote-server’ process. * etc/disarchive-manifest.scm (disarchive-collection): Remove. <top level>: Define ‘disarchives’. Append it to the entries of the manifest. Ludovic Courtès
2022-08-06disarchive-manifest: Exclude the Chromium tarball....* etc/disarchive-manifest.scm (disarchive-collection): Exclude "chromium-" tarballs. Ludovic Courtès
2022-08-05disarchive-manifest: Filter out origins without a hash....* etc/disarchive-manifest.scm (disarchive-collection): Filter out origins with a phony hash. Ludovic Courtès
2022-08-05disarchive-manifest: Handle tar.xz archives....* etc/disarchive-manifest.scm (tarball-origin?): Add ".tar.xz". Ludovic Courtès
2021-10-09disarchive-manifest: Provide valid 'version' string....* etc/disarchive-manifest.scm <top level>: Turn 'version' field into a string. Ludovic Courtès
2021-09-14etc: Add 'disarchive-manifest.scm'....* etc/disarchive-manifest.scm: New file. * Makefile.am (EXTRA_DIST): Add it. Ludovic Courtès