distro: Add i686-linux port.
* distro/packages/bootstrap/i686-linux/bash, distro/packages/bootstrap/i686-linux/mkdir, distro/packages/bootstrap/i686-linux/tar, distro/packages/bootstrap/i686-linux/xz: New files. * distro/packages/base.scm (%bootstrap-coreutils&co, %bootstrap-binutils, %bootstrap-glibc, %bootstrap-gcc): Add hashes of the i686-linux tarballs. * Makefile.am (bootstrap_i686_linuxdir, dist_bootstrap_i686_linux_DATA, nodist_bootstrap_i686_linux_DATA): New variables (DISTCLEANFILES): Add $(nodist_bootstrap_i686_linux_DATA). (distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz): New rule.master
parent
fc95fdaebe
commit
d25468bcb2
|
@ -46,3 +46,4 @@ config.cache
|
||||||
/doc/version.texi
|
/doc/version.texi
|
||||||
/distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz
|
/distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz
|
||||||
/guix-download
|
/guix-download
|
||||||
|
/distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz
|
||||||
|
|
15
Makefile.am
15
Makefile.am
|
@ -66,6 +66,7 @@ dist_patch_DATA = \
|
||||||
|
|
||||||
bootstrapdir = $(pkgdatadir)/bootstrap
|
bootstrapdir = $(pkgdatadir)/bootstrap
|
||||||
bootstrap_x86_64_linuxdir = $(bootstrapdir)/x86_64-linux
|
bootstrap_x86_64_linuxdir = $(bootstrapdir)/x86_64-linux
|
||||||
|
bootstrap_i686_linuxdir = $(bootstrapdir)/i686-linux
|
||||||
|
|
||||||
dist_bootstrap_x86_64_linux_DATA = \
|
dist_bootstrap_x86_64_linux_DATA = \
|
||||||
distro/packages/bootstrap/x86_64-linux/bash \
|
distro/packages/bootstrap/x86_64-linux/bash \
|
||||||
|
@ -73,12 +74,22 @@ dist_bootstrap_x86_64_linux_DATA = \
|
||||||
distro/packages/bootstrap/x86_64-linux/tar \
|
distro/packages/bootstrap/x86_64-linux/tar \
|
||||||
distro/packages/bootstrap/x86_64-linux/xz
|
distro/packages/bootstrap/x86_64-linux/xz
|
||||||
|
|
||||||
|
dist_bootstrap_i686_linux_DATA = \
|
||||||
|
distro/packages/bootstrap/i686-linux/bash \
|
||||||
|
distro/packages/bootstrap/i686-linux/mkdir \
|
||||||
|
distro/packages/bootstrap/i686-linux/tar \
|
||||||
|
distro/packages/bootstrap/i686-linux/xz
|
||||||
|
|
||||||
# Big bootstrap binaries are not included in the tarball. Instead, they
|
# Big bootstrap binaries are not included in the tarball. Instead, they
|
||||||
# are downloaded.
|
# are downloaded.
|
||||||
nodist_bootstrap_x86_64_linux_DATA = \
|
nodist_bootstrap_x86_64_linux_DATA = \
|
||||||
distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz
|
distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz
|
||||||
|
nodist_bootstrap_i686_linux_DATA = \
|
||||||
|
distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz
|
||||||
|
|
||||||
DISTCLEANFILES = $(nodist_bootstrap_x86_64_linux_DATA)
|
DISTCLEANFILES = \
|
||||||
|
$(nodist_bootstrap_x86_64_linux_DATA) \
|
||||||
|
$(nodist_bootstrap_i686_linux_DATA)
|
||||||
|
|
||||||
# Method to download a file from an external source.
|
# Method to download a file from an external source.
|
||||||
DOWNLOAD_FILE = \
|
DOWNLOAD_FILE = \
|
||||||
|
@ -88,6 +99,8 @@ DOWNLOAD_FILE = \
|
||||||
|
|
||||||
distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz: guix/utils.go
|
distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz: guix/utils.go
|
||||||
$(DOWNLOAD_FILE) "$@" "0467a82cbe4136f60a79eb4176011bf88cf28ea19c9ad9defa365811ff8e11cf"
|
$(DOWNLOAD_FILE) "$@" "0467a82cbe4136f60a79eb4176011bf88cf28ea19c9ad9defa365811ff8e11cf"
|
||||||
|
distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz: guix/utils.go
|
||||||
|
$(DOWNLOAD_FILE) "$@" "93b537766dfab3ad287143523751e3ec02dd32d3ccaf88ad2d31c63158f342ee"
|
||||||
|
|
||||||
nobase_nodist_guilemodule_DATA = $(GOBJECTS)
|
nobase_nodist_guilemodule_DATA = $(GOBJECTS)
|
||||||
|
|
||||||
|
|
|
@ -1490,8 +1490,13 @@ check whether everything is alright."
|
||||||
%bootstrap-base-url "/"
|
%bootstrap-base-url "/"
|
||||||
system "/static-binaries.tar.xz"))
|
system "/static-binaries.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(match system
|
||||||
"0azisn8l2b3cvgni9k0ahzsxs5cxrj0hmf38zgpq3k6pggk3zbfm"))))
|
("x86_64-linux"
|
||||||
|
(base32
|
||||||
|
"0azisn8l2b3cvgni9k0ahzsxs5cxrj0hmf38zgpq3k6pggk3zbfm"))
|
||||||
|
("i686-linux"
|
||||||
|
(base32
|
||||||
|
"16v60frbh0naccanwxcxz0z3444dd8salbg8p7cp7vwz8245nhfk"))))))
|
||||||
"true" ; the program to test
|
"true" ; the program to test
|
||||||
"Bootstrap binaries of Coreutils, Awk, etc."))
|
"Bootstrap binaries of Coreutils, Awk, etc."))
|
||||||
|
|
||||||
|
@ -1504,8 +1509,13 @@ check whether everything is alright."
|
||||||
%bootstrap-base-url "/"
|
%bootstrap-base-url "/"
|
||||||
system "/binutils-2.22.tar.xz"))
|
system "/binutils-2.22.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(match system
|
||||||
"1cz1rwqhswgrr14kzbkaj3k32kzgv2b6mmzvc6ssbbz8k2m8jmqa"))))
|
("x86_64-linux"
|
||||||
|
(base32
|
||||||
|
"1cz1rwqhswgrr14kzbkaj3k32kzgv2b6mmzvc6ssbbz8k2m8jmqa"))
|
||||||
|
("i686-linux"
|
||||||
|
(base32
|
||||||
|
"1crg5xsf4cxk249sg90h6fjhfkwj1s5dxvhwbym79g79ygbww1br"))))))
|
||||||
"ld" ; the program to test
|
"ld" ; the program to test
|
||||||
"Bootstrap binaries of the GNU Binutils"))
|
"Bootstrap binaries of the GNU Binutils"))
|
||||||
|
|
||||||
|
@ -1552,8 +1562,13 @@ check whether everything is alright."
|
||||||
(uri (string-append %bootstrap-base-url "/"
|
(uri (string-append %bootstrap-base-url "/"
|
||||||
system "/glibc-2.16.0.tar.xz"))
|
system "/glibc-2.16.0.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(match system
|
||||||
"1cz587p3scrrx0zgqnmp4nnfj0vvf01zdqdgkz445dnbfh64nl0v"))))))))
|
("x86_64-linux"
|
||||||
|
(base32
|
||||||
|
"1cz587p3scrrx0zgqnmp4nnfj0vvf01zdqdgkz445dnbfh64nl0v"))
|
||||||
|
("i686-linux"
|
||||||
|
(base32
|
||||||
|
"0vzybz1577vflm0p0zg1slqj32carj5102b45k7iskkj46viy14z"))))))))))
|
||||||
(description "Bootstrap binaries and headers of the GNU C Library")
|
(description "Bootstrap binaries and headers of the GNU C Library")
|
||||||
(long-description #f)
|
(long-description #f)
|
||||||
(home-page #f)))
|
(home-page #f)))
|
||||||
|
@ -1618,8 +1633,13 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
|
||||||
(uri (string-append %bootstrap-base-url "/"
|
(uri (string-append %bootstrap-base-url "/"
|
||||||
system "/gcc-4.7.2.tar.xz"))
|
system "/gcc-4.7.2.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(match system
|
||||||
"07piqzcdaksjbcj037y5gdbh9dfqwzjivg6fkhgg8kif82ibwxxr"))))))))
|
("x86_64-linux"
|
||||||
|
(base32
|
||||||
|
"07piqzcdaksjbcj037y5gdbh9dfqwzjivg6fkhgg8kif82ibwxxr"))
|
||||||
|
("i686-linux"
|
||||||
|
(base32
|
||||||
|
"0caiihphp23rrqn382cabykz9ps3ixd5p63dgdnkhz1f01jiarl2"))))))))))
|
||||||
(description "Bootstrap binaries of the GNU Compiler Collection")
|
(description "Bootstrap binaries of the GNU Compiler Collection")
|
||||||
(long-description #f)
|
(long-description #f)
|
||||||
(home-page #f)))
|
(home-page #f)))
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue