[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/12: gnu: bzip2-mesboot: Remove package.
From: |
guix-commits |
Subject: |
08/12: gnu: bzip2-mesboot: Remove package. |
Date: |
Sat, 19 Mar 2022 15:42:20 -0400 (EDT) |
samplet pushed a commit to branch core-updates
in repository guix.
commit 97a5819643a045b7cc68e80fd2fc05ed4eabf0d0
Author: Timothy Sample <samplet@ngyro.com>
AuthorDate: Sun Apr 4 22:30:07 2021 -0400
gnu: bzip2-mesboot: Remove package.
gnu/packages/commencement.scm (bzip2-mesboot): Remove variable.
(tcc-boot)[native-inputs]: Remove 'bzip2-mesboot'.
[arguments]: Do not replace the 'unpack' phase.
(%boot-tcc-inputs): Remove 'bzip2-mesboot'.
---
gnu/packages/commencement.scm | 60 +------------------------------------------
1 file changed, 1 insertion(+), 59 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index df91f57b59..d0bac512a3 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -662,54 +662,6 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
("tcc" ,tcc-boot0)
,@(%boot-gash-inputs)))
-(define bzip2-mesboot
- ;; The initial bzip2
- (package
- (inherit bzip2)
- (name "bzip2-mesboot")
- (version (package-version bzip2))
- (source (bootstrap-origin (package-source bzip2)))
- (supported-systems '("i686-linux" "x86_64-linux"))
- (inputs '())
- (propagated-inputs '())
- (native-inputs (%boot-tcc0-inputs))
- (outputs '("out"))
- (arguments
- `(#:implicit-inputs? #f
- #:guile ,%bootstrap-guile
- #:parallel-build? #f
- #:tests? #f ; check is naive, also checks non-built PROGRAMS
- #:strip-binaries? #f ; no strip yet
- #:make-flags (list "CC=tcc -I ." "AR=tcc -ar" "bzip2"
- (string-append "PREFIX="
- (assoc-ref %outputs "out")))
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'scripted-patch
- (lambda _
- (substitute* "Makefile"
- (("\tln " all)
- (string-append "\t#" all)))
- (substitute* "bzip2.c"
- (("struct utimbuf uTimBuf;" all)
- (string-append "// " all))
- (("uTimBuf[.]" all)
- (string-append "// " all))
- (("retVal = utime [(] dstName, &uTimBuf [)];" all)
- (string-append "retVal = 0; // " all)))))
- (replace 'configure
- (lambda _
- (with-output-to-file "utime.h"
- (lambda _ (display "
-#define fchown(filedes, owner, group) 0
-#define fchmod(filedes, mode) 0
-")))))
- (replace 'check
- (lambda _
- (invoke "./bzip2" "--help")))
- ;; FIXME: no compressing gzip yet
- (delete 'compress-documentation))))))
-
(define bash-mesboot0
;; The initial Bash
(package
@@ -818,8 +770,7 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
(build-system gnu-build-system)
(inputs '())
(propagated-inputs '())
- (native-inputs `(("bzip2" ,bzip2-mesboot)
- ,@(%boot-tcc0-inputs)))
+ (native-inputs (%boot-tcc0-inputs))
(arguments
`(#:implicit-inputs? #f
#:guile ,%bootstrap-guile
@@ -827,14 +778,6 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
#:strip-binaries? #f ; no strip yet
#:phases
(modify-phases %standard-phases
- ;; tar xvf ..bz2 gives
- ;; bzip2: PANIC -- internal consistency error
- (replace 'unpack
- (lambda* (#:key source #:allow-other-keys)
- (copy-file source "tarball.tar.bz2")
- (invoke "bzip2" "-d" "tarball.tar.bz2")
- (invoke "tar" "xvf" "tarball.tar")
- (chdir (string-append "tcc-" ,version))))
(add-after 'unpack 'scripted-patch
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "libtcc.c"
@@ -982,7 +925,6 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
(define (%boot-tcc-inputs)
`(("bash" ,bash-mesboot0)
- ("bzip2" ,bzip2-mesboot)
("gzip" ,gzip-mesboot)
("patch" ,patch-mesboot)
("sed" ,sed-mesboot0)
- branch core-updates updated (806824c2c0 -> f0136b36ae), guix-commits, 2022/03/19
- 01/12: gnu: hello-mesboot: Downgrade to 2.10., guix-commits, 2022/03/19
- 03/12: gnu-bootstrap: Allow multiple module directories., guix-commits, 2022/03/19
- 05/12: gnu: bootar: Update to 1b., guix-commits, 2022/03/19
- 07/12: gnu: gash-utils-boot: Create 'echo' wrapper., guix-commits, 2022/03/19
- 02/12: gnu-bootstrap: Configure PACKAGE_NAME., guix-commits, 2022/03/19
- 04/12: gnu: gash-utils: Update to 0.2.0., guix-commits, 2022/03/19
- 10/12: gnu: binutils-mesboot0: Update to 2.20.1a., guix-commits, 2022/03/19
- 06/12: gnu: gash: Update to 0.3.0., guix-commits, 2022/03/19
- 08/12: gnu: bzip2-mesboot: Remove package.,
guix-commits <=
- 09/12: gnu: sed-mesboot0: Remove package., guix-commits, 2022/03/19
- 11/12: gnu: %boot-tcc-inputs: Remove extra "gash-utils"., guix-commits, 2022/03/19
- 12/12: gnu: commencement: Remove many old utilities., guix-commits, 2022/03/19