summaryrefslogtreecommitdiff
path: root/etc/disarchive-manifest.scm
Commit message (Collapse)AuthorAgeFilesLines
* etc: Move manifests to a separate directory.Ludovic Courtès2024-12-121-136/+0
| | | | | | | | | | | | * etc/disarchive-manifest.scm, etc/hurd-manifest.scm, etc/kernels-manifest.scm, etc/release-manifest.scm, etc/source-manifest.scm, etc/system-tests.scm, etc/time-travel-manifest.scm, etc/upgrade-manifest.scm: Move to… * etc/manifests: … here, and drop “-manifest” from file name. * Makefile.am (EXTRA_DIST, assert-binaries-available, check-system): Adjust accordingly. Change-Id: Iedee3d0cdd42e72ef8bbf654ea5d3b47dca95874
* gnu: disarchive: Update to 0.6.0.Timothy Sample2024-02-121-1/+3
| | | | | | | | | | | | | | | * 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
* disarchive-manifest: Add one manifest entry per tarball.Ludovic Courtès2023-10-081-27/+34
| | | | | | | | | | | | | | | | 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.
* disarchive-manifest: Exclude the Chromium tarball.Ludovic Courtès2022-08-061-0/+8
| | | | | * etc/disarchive-manifest.scm (disarchive-collection): Exclude "chromium-" tarballs.
* disarchive-manifest: Filter out origins without a hash.Ludovic Courtès2022-08-051-0/+6
| | | | | * etc/disarchive-manifest.scm (disarchive-collection): Filter out origins with a phony hash.
* disarchive-manifest: Handle tar.xz archives.Ludovic Courtès2022-08-051-3/+4
| | | | * etc/disarchive-manifest.scm (tarball-origin?): Add ".tar.xz".
* disarchive-manifest: Provide valid 'version' string.Ludovic Courtès2021-10-091-1/+1
| | | | | * etc/disarchive-manifest.scm <top level>: Turn 'version' field into a string.
* etc: Add 'disarchive-manifest.scm'.Ludovic Courtès2021-09-141-0/+112
* etc/disarchive-manifest.scm: New file. * Makefile.am (EXTRA_DIST): Add it.