From b148826f17b86ad2e5618e901f6da3a72da7a5fb Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 26 Jun 2022 02:36:05 +0200 Subject: gnu: mit-krb5: Remove label usage. * gnu/packages/kerberos.scm (mit-krb5)[arguments]: Use SEARCH-INPUT-FILE. --- gnu/packages/kerberos.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/kerberos.scm b/gnu/packages/kerberos.scm index 0f0bf30672..d96fa661d9 100644 --- a/gnu/packages/kerberos.scm +++ b/gnu/packages/kerberos.scm @@ -103,11 +103,13 @@ (chdir "src"))) (add-before 'check 'pre-check (lambda* (#:key inputs native-inputs #:allow-other-keys) - (let ((perl (assoc-ref (or native-inputs inputs) "perl"))) + (let ((perl (search-input-file (or native-inputs inputs) + "bin/perl"))) (substitute* "plugins/kdb/db2/libdb2/test/run.test" - (("/bin/cat") (string-append perl "/bin/perl")) + (("/bin/cat") perl) (("D/bin/sh") (string-append "D" (which "sh"))) - (("bindir=/bin/.") (string-append "bindir=" perl "/bin"))))))))) + (("bindir=/bin/.") (string-append "bindir=" + (dirname perl)))))))))) (synopsis "MIT Kerberos 5") (description "Massachusetts Institute of Technology implementation of Kerberos. -- cgit v1.2.3 d782bc421d38104a4e62'>treecommitdiff
path: root/etc/disarchive-manifest.scm
AgeCommit message (Collapse)Author
2024-02-12gnu: disarchive: Update to 0.6.0.Timothy Sample
* 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
2023-10-08disarchive-manifest: Add one manifest entry per tarball.Ludovic Courtès
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.
2022-08-06disarchive-manifest: Exclude the Chromium tarball.Ludovic Courtès
* etc/disarchive-manifest.scm (disarchive-collection): Exclude "chromium-" tarballs.
2022-08-05disarchive-manifest: Filter out origins without a hash.Ludovic Courtès
* etc/disarchive-manifest.scm (disarchive-collection): Filter out origins with a phony hash.
2022-08-05disarchive-manifest: Handle tar.xz archives.Ludovic Courtès
* etc/disarchive-manifest.scm (tarball-origin?): Add ".tar.xz".