gnu: bootar: Update to 1a.
authorTimothy Sample <samplet@ngyro.com>
Sat, 22 Feb 2020 04:48:37 +0000 (23:48 -0500)
committerTimothy Sample <samplet@ngyro.com>
Sat, 22 Feb 2020 04:56:27 +0000 (23:56 -0500)
* gnu/packages/commencement.scm (bootar): Update to 1a; remove BZip2
workaround for 32-bit platforms.

gnu/packages/commencement.scm

index dc5d9a1..dfc913e 100644 (file)
 (define bootar
   (package
     (name "bootar")
-    (version "1")
+    (version "1a")
     (source (origin
               (method url-fetch)
-              (uri "https://files.ngyro.com/bootar/bootar-1.ses")
+              (uri "https://files.ngyro.com/bootar/bootar-1a.ses")
               (sha256
                (base32
-                "011p0nky2qp0vmyhvdx220qywxxp7a0m6pvy0lzzg4qxbpyqpf0r"))))
+                "0mvp6vgx0q316fvy3z2lddlc5xgq5np3bm1fypgvj6dnayibg9np"))))
     (build-system gnu-build-system)
     (arguments
      `(#:implicit-inputs? #f
                       (guile (string-append guile-dir "/bin/guile")))
                  (invoke guile "--no-auto-compile" source)
                  (chdir "bootar")
-                 ;; (commencement bzip2) breaks tar on x86, see
-                 ;; https://bugs.gnu.org/39699
-                 (delete-file "scripts/bzip2.in")
-                 (delete-file "compression/bzip2.scm")
-                 (with-output-to-file "compression/bzip2.scm"
-                   (lambda _
-                     (display "(define-module (compression bzip2))
-(define-public is-bzip2-file? (const #f))
-(define-public make-bzip2-input-port (const #f))
-")))
                  #t)))
            (replace 'configure (bootstrap-configure ,version "." "scripts"))
            (replace 'build (bootstrap-build "."))