aboutsummaryrefslogtreecommitdiff
path: root/etc/disarchive-manifest.scm
Commit message (Collapse)AuthorAge
* disarchive-manifest: Add one manifest entry per tarball.Ludovic Courtès2023-10-08
| | | | | | | | | | | | | | | | 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-06
| | | | | * etc/disarchive-manifest.scm (disarchive-collection): Exclude "chromium-" tarballs.
* disarchive-manifest: Filter out origins without a hash.Ludovic Courtès2022-08-05
| | | | | * etc/disarchive-manifest.scm (disarchive-collection): Filter out origins with a phony hash.
* disarchive-manifest: Handle tar.xz archives.Ludovic Courtès2022-08-05
| | | | * etc/disarchive-manifest.scm (tarball-origin?): Add ".tar.xz".
* disarchive-manifest: Provide valid 'version' string.Ludovic Courtès2021-10-09
| | | | | * etc/disarchive-manifest.scm <top level>: Turn 'version' field into a string.
* etc: Add 'disarchive-manifest.scm'.Ludovic Courtès2021-09-14
* etc/disarchive-manifest.scm: New file. * Makefile.am (EXTRA_DIST): Add it.