[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
140/160: gnu: Add %diffutils-static, %diffutils-static-stripped, %diffut
From: |
Jan Nieuwenhuizen |
Subject: |
140/160: gnu: Add %diffutils-static, %diffutils-static-stripped, %diffutils-bootstrap-tarball. |
Date: |
Tue, 28 Aug 2018 15:56:38 -0400 (EDT) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 8683d1740e8469d0bb2978522288f26e36d14f39
Author: Jan Nieuwenhuizen <address@hidden>
Date: Thu Aug 23 22:52:29 2018 +0200
gnu: Add %diffutils-static, %diffutils-static-stripped,
%diffutils-bootstrap-tarball.
* gnu/packages/make-bootstrap.scm (%diffutils-static,
%diffutils-static-stripped, %diffutils-bootstrap-tarball): New variable.
---
gnu/packages/make-bootstrap.scm | 52 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index efef713..a84cfb3 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -41,6 +41,7 @@
#:use-module (ice-9 match)
#:use-module (srfi srfi-1)
#:export (%bootstrap-binaries-tarball
+ %diffutils-bootstrap-tarball
%make-bootstrap-tarball
%binutils-bootstrap-tarball
%glibc-bootstrap-tarball
@@ -301,6 +302,53 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
(license gpl3+)
(home-page #f)))
+(define %diffutils-static
+ ;; Statically-linked Diffutils.
+ (package
+ (inherit diffutils)
+ (name "diffutils-static")
+ (arguments
+ `(#:strip-flags '("--strip-all")
+ #:make-flags '("V=2")
+ #:phases (modify-phases %standard-phases
+ (add-before 'configure 'all-static
+ (lambda _
+ ;; The `-all-static' libtool flag can only be passed
+ ;; after `configure', since configure tests don't use
+ ;; libtool, and only for executables built with libtool.
+ (substitute* '("Makefile.in"
+ "src/Makefile.in")
+ (("^LDFLAGS =(.*)$" line)
+ (string-append line
+ "\nAM_LDFLAGS = -static\n"))))))))))
+
+(define %diffutils-static-stripped
+ ;; The subset of Diffutils that we need.
+ (package (inherit %diffutils-static)
+ (name (string-append (package-name %diffutils-static) "-stripped"))
+ (build-system trivial-build-system)
+ (outputs '("out"))
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+
+ (setvbuf (current-output-port) _IOLBF)
+ (let* ((in (assoc-ref %build-inputs "diffutils"))
+ (out (assoc-ref %outputs "out"))
+ (bin (string-append out "/bin")))
+ (mkdir-p bin)
+ (for-each (lambda (file)
+ (let ((target (string-append bin "/" file)))
+ (format #t "copying `~a'...~%" file)
+ (copy-file (string-append in "/bin/" file)
+ target)
+ (remove-store-references target)))
+ '("cmp" "diff"))
+ #t))))
+ (inputs `(("diffutils" ,%diffutils-static)))))
+
(define %make-static
;; Statically-linked Make.
(package
@@ -702,6 +750,10 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
;; A tarball with the statically-linked bootstrap binaries.
(tarball-package %static-binaries))
+(define %diffutils-bootstrap-tarball
+ ;; A tarball with the statically-linked Diffutils programs.
+ (tarball-package %diffutils-static-stripped))
+
(define %make-bootstrap-tarball
;; A tarball with the statically-linked Make programs.
(tarball-package %make-static-stripped))
- 62/160: gnu: Add binutils-boot 2.5.1., (continued)
- 62/160: gnu: Add binutils-boot 2.5.1., Jan Nieuwenhuizen, 2018/08/28
- 159/160: gcc-mesboot: use package-full-name "-" :-), Jan Nieuwenhuizen, 2018/08/28
- 160/160: gnu: Add mpc-boot 1.0.3., Jan Nieuwenhuizen, 2018/08/28
- 142/160: gnu: Add %linux-libre-headers-stripped, %linux-libre-headers-bootstrap-tarball., Jan Nieuwenhuizen, 2018/08/28
- 145/160: bootstrap: Integrate mes bootstrap for i686-linux., Jan Nieuwenhuizen, 2018/08/28
- 158/160: gnu: Add make-mesboot0 3.80, Jan Nieuwenhuizen, 2018/08/28
- 151/160: gnu: Add diffutils-mesboot 2.7., Jan Nieuwenhuizen, 2018/08/28
- 138/160: gnu: Add %make-static, %make-static-stripped, %make-bootstrap-tarball., Jan Nieuwenhuizen, 2018/08/28
- 143/160: gnu: Add %bootstrap-linux-libre-headers., Jan Nieuwenhuizen, 2018/08/28
- 150/160: gnu: Add make-mesboot 3.79., Jan Nieuwenhuizen, 2018/08/28
- 140/160: gnu: Add %diffutils-static, %diffutils-static-stripped, %diffutils-bootstrap-tarball.,
Jan Nieuwenhuizen <=
- 154/160: Revert "gnu: Add %bootstrap-diffutils.", Jan Nieuwenhuizen, 2018/08/28
- 137/160: gnu: tcc-boot: Use gnu-build-system., Jan Nieuwenhuizen, 2018/08/28
- 148/160: gnu: mes-boot: Update to 0.18. WIP, Jan Nieuwenhuizen, 2018/08/28
- 149/160: gnu: tcc-boot: Update for mes 0.18. WIP, Jan Nieuwenhuizen, 2018/08/28
- 127/160: gnu: binutils-mesboot: Revise dependencies., Jan Nieuwenhuizen, 2018/08/28
- 156/160: Revert "gnu: Add %bootstrap-make.", Jan Nieuwenhuizen, 2018/08/28
- 155/160: Revert "gnu: Add %diffutils-static, %diffutils-static-stripped, %diffutils-bootstrap-tarball.", Jan Nieuwenhuizen, 2018/08/28
- 147/160: gnu: %tinycc-seed: Update for mes 0.18. WIP, Jan Nieuwenhuizen, 2018/08/28
- 123/160: gnu: binutils-mesboot0: Revise dependencies., Jan Nieuwenhuizen, 2018/08/28
- 146/160: gnu: %mes-seed: Update for mes 0.18. WIP, Jan Nieuwenhuizen, 2018/08/28