[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/67: gnu: commencement: Add git-fetch-from-tarball utility.
From: |
guix-commits |
Subject: |
03/67: gnu: commencement: Add git-fetch-from-tarball utility. |
Date: |
Tue, 18 Jul 2023 10:16:00 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 161bab138845fe307ec92b8fea181e00ece86e58
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Jul 18 12:49:28 2023 +0200
gnu: commencement: Add git-fetch-from-tarball utility.
* gnu/packages/commencement.scm (git-fetch-from-tarball): New procedure.
---
gnu/packages/commencement.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index d0603e62c8..1d69c2a80f 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -57,7 +57,10 @@
#:use-module (gnu packages xml)
#:use-module (guix gexp)
#:use-module (guix packages)
+ #:use-module ((guix store) #:select (%store-monad))
+ #:use-module (guix monads)
#:use-module (guix download)
+ #:use-module ((guix git-download) #:select (git-reference git-file-name))
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module ((guix licenses) #:prefix license:)
@@ -90,6 +93,34 @@
;;;
;;; Code:
+(define* (git-fetch-from-tarball tarball)
+ (lambda* (url hash-algo hash
+ #:optional name
+ #:key (system (%current-system))
+ (guile %bootstrap-guile))
+ (mlet %store-monad ((guile (package->derivation guile system)))
+ (gexp->derivation
+ (or name "git-checkout")
+ (with-imported-modules '((guix build utils))
+ #~(begin
+ (use-modules (guix build utils)
+ (ice-9 ftw)
+ (ice-9 match))
+ (setenv "PATH"
+ #+(file-append %bootstrap-coreutils&co "/bin"))
+ (invoke (string-append #+tar "/bin/tar")
+ "xf" #$tarball)
+ (match (scandir ".")
+ (("." ".." directory)
+ (copy-recursively directory #$output)))))
+ #:recursive? #t
+ #:hash-algo hash-algo
+ #:hash hash
+ #:system system
+ #:guile-for-build guile
+ #:graft? #f
+ #:local-build? #t))))
+
(define bootar
(package
(name "bootar")
- 18/67: hurd: Support system init in /libexec/runsystem., (continued)
- 18/67: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/07/18
- 20/67: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/07/18
- 38/67: gnu: ruby-2.6: Skip test on the Hurd., guix-commits, 2023/07/18
- 32/67: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/07/18
- 41/67: gnu: zstd: Skip tests when building for the Hurd., guix-commits, 2023/07/18
- 45/67: gnu: graphite2: Skip test on the Hurd., guix-commits, 2023/07/18
- 54/67: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/07/18
- 16/67: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/07/18
- 27/67: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., guix-commits, 2023/07/18
- 25/67: gnu: c-ares: Skip failing tests on the Hurd., guix-commits, 2023/07/18
- 03/67: gnu: commencement: Add git-fetch-from-tarball utility.,
guix-commits <=
- 65/67: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/07/18
- 10/67: gnu: guile: Skip hanging and failing pipe tests on the Hurd., guix-commits, 2023/07/18
- 04/67: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224., guix-commits, 2023/07/18
- 43/67: gnu: cmake-minimal: Skip tests on the Hurd., guix-commits, 2023/07/18
- 05/67: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/07/18
- 29/67: gnu: curl: Skip failing test on the Hurd., guix-commits, 2023/07/18
- 52/67: gnu: po4a: Skip failing test on the Hurd., guix-commits, 2023/07/18
- 48/67: gnu: ghostscript: Fix build for the Hurd., guix-commits, 2023/07/18
- 60/67: gnu: guix: Disable some tests on the Hurd., guix-commits, 2023/07/18
- 50/67: gnu: pango: Support build for the Hurd., guix-commits, 2023/07/18