diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2012-11-16 00:26:34 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-16 00:26:34 +0100 |
| commit | 68c141f144b68baa98a2f48c8ff3f867d667e153 (patch) | |
| tree | c8f977974ceb18b5f163c255887f5af35456f7c3 | |
| parent | 01d45404f69025c757c1800e8b64fdd29a8134a6 (diff) | |
distro: Rebuild bootstrap Binutils and GCC.
These new binaries are built with the `--with-lib-path' and
`--with-local-prefix' flags, respectively, as introduced in commit
01d4540.
* distro/packages/bootstrap.scm (%bootstrap-coreutils&co,
%bootstrap-glibc): Update URL.
(%bootstrap-binutils, %bootstrap-gcc): Update URL and hashes.
* build-aux/download.scm (file-name->uri): Update URL.
| -rw-r--r-- | build-aux/download.scm | 3 | ||||
| -rw-r--r-- | distro/packages/bootstrap.scm | 20 |
2 files changed, 12 insertions, 11 deletions
diff --git a/build-aux/download.scm b/build-aux/download.scm index 9da39155ea0..4c1a1a6e5dd 100644 --- a/build-aux/download.scm +++ b/build-aux/download.scm | |||
| @@ -34,7 +34,8 @@ | |||
| 34 | "Return the URI for FILE." | 34 | "Return the URI for FILE." |
| 35 | (match (string-tokenize file (char-set-complement (char-set #\/))) | 35 | (match (string-tokenize file (char-set-complement (char-set #\/))) |
| 36 | ((_ ... system basename) | 36 | ((_ ... system basename) |
| 37 | (string->uri (string-append %url-base "/" system "/" basename))))) | 37 | (string->uri (string-append %url-base "/" system |
| 38 | "/20121115/" basename))))) | ||
| 38 | 39 | ||
| 39 | (match (command-line) | 40 | (match (command-line) |
| 40 | ((_ file expected-hash) | 41 | ((_ file expected-hash) |
diff --git a/distro/packages/bootstrap.scm b/distro/packages/bootstrap.scm index 8165be1d53b..63e81098003 100644 --- a/distro/packages/bootstrap.scm +++ b/distro/packages/bootstrap.scm | |||
| @@ -204,7 +204,7 @@ $out/bin/guile --version~%" | |||
| 204 | (method url-fetch) | 204 | (method url-fetch) |
| 205 | (uri (string-append | 205 | (uri (string-append |
| 206 | %bootstrap-base-url "/" | 206 | %bootstrap-base-url "/" |
| 207 | system "/static-binaries.tar.xz")) | 207 | system "/20121115/static-binaries.tar.xz")) |
| 208 | (sha256 | 208 | (sha256 |
| 209 | (match system | 209 | (match system |
| 210 | ("x86_64-linux" | 210 | ("x86_64-linux" |
| @@ -223,15 +223,15 @@ $out/bin/guile --version~%" | |||
| 223 | (method url-fetch) | 223 | (method url-fetch) |
| 224 | (uri (string-append | 224 | (uri (string-append |
| 225 | %bootstrap-base-url "/" | 225 | %bootstrap-base-url "/" |
| 226 | system "/binutils-2.22.tar.xz")) | 226 | system "/20121115/binutils-2.22.tar.xz")) |
| 227 | (sha256 | 227 | (sha256 |
| 228 | (match system | 228 | (match system |
| 229 | ("x86_64-linux" | 229 | ("x86_64-linux" |
| 230 | (base32 | 230 | (base32 |
| 231 | "1cz1rwqhswgrr14kzbkaj3k32kzgv2b6mmzvc6ssbbz8k2m8jmqa")) | 231 | "0ms6i035v40n7mhi91n4b8ivwv2qni3mcd5dj9sj9qmvgqb50r84")) |
| 232 | ("i686-linux" | 232 | ("i686-linux" |
| 233 | (base32 | 233 | (base32 |
| 234 | "1crg5xsf4cxk249sg90h6fjhfkwj1s5dxvhwbym79g79ygbww1br")))))) | 234 | "193x62ach4l4x16rbzglrqa1d0a825z2as6czdiv9xjiizmcr0ad")))))) |
| 235 | "ld" ; the program to test | 235 | "ld" ; the program to test |
| 236 | "Bootstrap binaries of the GNU Binutils")) | 236 | "Bootstrap binaries of the GNU Binutils")) |
| 237 | 237 | ||
| @@ -275,8 +275,8 @@ $out/bin/guile --version~%" | |||
| 275 | (bootstrap-origin | 275 | (bootstrap-origin |
| 276 | (origin | 276 | (origin |
| 277 | (method url-fetch) | 277 | (method url-fetch) |
| 278 | (uri (string-append %bootstrap-base-url "/" | 278 | (uri (string-append %bootstrap-base-url "/" system |
| 279 | system "/glibc-2.16.0.tar.xz")) | 279 | "/20121115/glibc-2.16.0.tar.xz")) |
| 280 | (sha256 | 280 | (sha256 |
| 281 | (match system | 281 | (match system |
| 282 | ("x86_64-linux" | 282 | ("x86_64-linux" |
| @@ -346,16 +346,16 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \ | |||
| 346 | (bootstrap-origin | 346 | (bootstrap-origin |
| 347 | (origin | 347 | (origin |
| 348 | (method url-fetch) | 348 | (method url-fetch) |
| 349 | (uri (string-append %bootstrap-base-url "/" | 349 | (uri (string-append %bootstrap-base-url "/" system |
| 350 | system "/gcc-4.7.2.tar.xz")) | 350 | "/20121115/gcc-4.7.2.tar.xz")) |
| 351 | (sha256 | 351 | (sha256 |
| 352 | (match system | 352 | (match system |
| 353 | ("x86_64-linux" | 353 | ("x86_64-linux" |
| 354 | (base32 | 354 | (base32 |
| 355 | "07piqzcdaksjbcj037y5gdbh9dfqwzjivg6fkhgg8kif82ibwxxr")) | 355 | "0fg65i2qcym8ls5ig3g1cc9ida5cxwwsd6zi95xi1d8dnfrja4zz")) |
| 356 | ("i686-linux" | 356 | ("i686-linux" |
| 357 | (base32 | 357 | (base32 |
| 358 | "0caiihphp23rrqn382cabykz9ps3ixd5p63dgdnkhz1f01jiarl2")))))))))) | 358 | "01hlz98qmc8yhqrxqajpg5kbkhpvqq6wjnbfvplys32n895avzxg")))))))))) |
| 359 | (synopsis "Bootstrap binaries of the GNU Compiler Collection") | 359 | (synopsis "Bootstrap binaries of the GNU Compiler Collection") |
| 360 | (description #f) | 360 | (description #f) |
| 361 | (home-page #f))) | 361 | (home-page #f))) |
