* [PATCH] zlib: bump to 1.2.8. @ 2013-05-23 1:54 Cyril Roelandt 2013-05-23 12:03 ` Ludovic Courtès 0 siblings, 1 reply; 14+ messages in thread From: Cyril Roelandt @ 2013-05-23 1:54 UTC (permalink / raw) To: bug-guix --- gnu/packages/compression.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 89cb014..f34591d 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -26,7 +26,7 @@ (define-public zlib (package (name "zlib") - (version "1.2.7") + (version "1.2.8") (source (origin (method url-fetch) @@ -34,7 +34,7 @@ version ".tar.gz")) (sha256 (base32 - "1i96gsdvxqb6skp9a58bacf1wxamwi9m9pg4yn7cpf7g7239r77s")))) + "039agw5rqvqny92cpkrfn243x2gd4xn13hs3xi6isk55d2vqqr9n")))) (build-system gnu-build-system) (arguments `(#:phases (alist-replace -- 1.7.10.4 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-23 1:54 [PATCH] zlib: bump to 1.2.8 Cyril Roelandt @ 2013-05-23 12:03 ` Ludovic Courtès 2013-05-23 14:52 ` Cyril Roelandt 0 siblings, 1 reply; 14+ messages in thread From: Ludovic Courtès @ 2013-05-23 12:03 UTC (permalink / raw) To: Cyril Roelandt; +Cc: bug-guix Cyril Roelandt <tipecaml@gmail.com> skribis: > --- a/gnu/packages/compression.scm > +++ b/gnu/packages/compression.scm > @@ -26,7 +26,7 @@ > (define-public zlib > (package > (name "zlib") > - (version "1.2.7") > + (version "1.2.8") Unless I’m mistaken, this triggers a complete rebuild now that GCC depends on it. Thus it would need to go into ‘core-updates’. Would you like to open this branch? Thanks, Ludo’. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-23 12:03 ` Ludovic Courtès @ 2013-05-23 14:52 ` Cyril Roelandt 2013-05-23 15:19 ` Ludovic Courtès 0 siblings, 1 reply; 14+ messages in thread From: Cyril Roelandt @ 2013-05-23 14:52 UTC (permalink / raw) To: Ludovic Courtès On 05/23/2013 02:03 PM, Ludovic Courtès wrote: > Cyril Roelandt<tipecaml@gmail.com> skribis: > >> --- a/gnu/packages/compression.scm >> +++ b/gnu/packages/compression.scm >> @@ -26,7 +26,7 @@ >> (define-public zlib >> (package >> (name "zlib") >> - (version "1.2.7") >> + (version "1.2.8") > > Unless I’m mistaken, this triggers a complete rebuild now that GCC > depends on it. Thus it would need to go into ‘core-updates’. > The problem is that the 1.2.7 tarball is no longer available, and Guix therefore fails to install zlib. This is a blocking bug for anyone who would like to try Guix from the git repository, so I'd like to have this fixed in master. WDYT ? Cyril. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-23 14:52 ` Cyril Roelandt @ 2013-05-23 15:19 ` Ludovic Courtès 2013-05-25 20:56 ` Cyril Roelandt 0 siblings, 1 reply; 14+ messages in thread From: Ludovic Courtès @ 2013-05-23 15:19 UTC (permalink / raw) To: Cyril Roelandt Cyril Roelandt <tipecaml@gmail.com> skribis: > On 05/23/2013 02:03 PM, Ludovic Courtès wrote: >> Cyril Roelandt<tipecaml@gmail.com> skribis: >> >>> --- a/gnu/packages/compression.scm >>> +++ b/gnu/packages/compression.scm >>> @@ -26,7 +26,7 @@ >>> (define-public zlib >>> (package >>> (name "zlib") >>> - (version "1.2.7") >>> + (version "1.2.8") >> >> Unless I’m mistaken, this triggers a complete rebuild now that GCC >> depends on it. Thus it would need to go into ‘core-updates’. >> > > The problem is that the 1.2.7 tarball is no longer available, and Guix > therefore fails to install zlib. This is not a problem when using the substituter, because hydra.gnu.org mirrors it: --8<---------------cut here---------------start------------->8--- $ ./pre-inst-env guix build -S zlib The following file will be downloaded: /nix/store/5b910ka58b3h4x7n3vbdgndf6zfxnpwf-zlib-1.2.7.tar.gz @ substituter-started /nix/store/5b910ka58b3h4x7n3vbdgndf6zfxnpwf-zlib-1.2.7.tar.gz /home/ludo/src/guix/nix/scripts/substitute-binary downloading `/nix/store/5b910ka58b3h4x7n3vbdgndf6zfxnpwf-zlib-1.2.7.tar.gz' from `http://hydra.gnu.org/nar/5b910ka58b3h4x7n3vbdgndf6zfxnpwf-zlib-1.2.7.tar.gz'... @ substituter-succeeded /nix/store/5b910ka58b3h4x7n3vbdgndf6zfxnpwf-zlib-1.2.7.tar.gz /nix/store/5b910ka58b3h4x7n3vbdgndf6zfxnpwf-zlib-1.2.7.tar.gz --8<---------------cut here---------------end--------------->8--- Did you use --no-substitutes? > This is a blocking bug for anyone who would like to try Guix from the > git repository, so I'd like to have this fixed in master. WDYT ? It can still be found at mirror://sourceforge/libpng/zlib-1.2.7.tar.gz. So for the moment I would suggest changing the ‘uri’ field to a list: (origin (method url-fetch) (uri (list (string-append "http://zlib.net/zlib-" version ".tar.gz") (string-append "mirror://sourceforge/libpng/zlib-" version ".tar.gz"))) (sha256 (base32 "1i96gsdvxqb6skp9a58bacf1wxamwi9m9pg4yn7cpf7g7239r77s"))) Problem solved. :-) And the upgrade can be scheduled for later, in a ‘core-updates’ branch. WDYT? Ludo’. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-23 15:19 ` Ludovic Courtès @ 2013-05-25 20:56 ` Cyril Roelandt 2013-05-25 21:08 ` [PATCH] zlib: Add a sourceforge mirror Cyril Roelandt 2013-05-26 20:00 ` [PATCH] zlib: bump to 1.2.8 Ludovic Courtès 0 siblings, 2 replies; 14+ messages in thread From: Cyril Roelandt @ 2013-05-25 20:56 UTC (permalink / raw) To: bug-guix On 05/23/2013 05:19 PM, Ludovic Courtès wrote: > Did you use --no-substitutes? > No, but anyway I can't use the substituter on x86. >> This is a blocking bug for anyone who would like to try Guix from the >> git repository, so I'd like to have this fixed in master. WDYT ? > > It can still be found at mirror://sourceforge/libpng/zlib-1.2.7.tar.gz. > So for the moment I would suggest changing the ‘uri’ field to a list: > > (origin > (method url-fetch) > (uri (list (string-append "http://zlib.net/zlib-" > version ".tar.gz") > (string-append "mirror://sourceforge/libpng/zlib-" > version ".tar.gz"))) > (sha256 > (base32 > "1i96gsdvxqb6skp9a58bacf1wxamwi9m9pg4yn7cpf7g7239r77s"))) > OK, I'll resend. > > And the upgrade can be scheduled for later, in a ‘core-updates’ branch. > OK. Cyril ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] zlib: Add a sourceforge mirror. 2013-05-25 20:56 ` Cyril Roelandt @ 2013-05-25 21:08 ` Cyril Roelandt 2013-05-25 21:23 ` Ludovic Courtès 2013-05-26 20:00 ` [PATCH] zlib: bump to 1.2.8 Ludovic Courtès 1 sibling, 1 reply; 14+ messages in thread From: Cyril Roelandt @ 2013-05-25 21:08 UTC (permalink / raw) To: bug-guix This is especially useful since the tarball is deleted from zlib.net as soon as a new version of zlib is released. --- gnu/packages/compression.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 89cb014..b39119f 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -30,8 +30,10 @@ (source (origin (method url-fetch) - (uri (string-append "http://zlib.net/zlib-" - version ".tar.gz")) + (uri (list (string-append "http://zlib.net/zlib-" + version ".tar.gz") + (string-append "mirror://sourceforge/libpng/zlib-" + version ".tar.gz"))) (sha256 (base32 "1i96gsdvxqb6skp9a58bacf1wxamwi9m9pg4yn7cpf7g7239r77s")))) -- 1.7.10.4 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: Add a sourceforge mirror. 2013-05-25 21:08 ` [PATCH] zlib: Add a sourceforge mirror Cyril Roelandt @ 2013-05-25 21:23 ` Ludovic Courtès 0 siblings, 0 replies; 14+ messages in thread From: Ludovic Courtès @ 2013-05-25 21:23 UTC (permalink / raw) To: Cyril Roelandt; +Cc: bug-guix Cyril Roelandt <tipecaml@gmail.com> skribis: > This is especially useful since the tarball is deleted from zlib.net as soon as > a new version of zlib is released. > --- > gnu/packages/compression.scm | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) Please commit, thanks! Ludo’. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-25 20:56 ` Cyril Roelandt 2013-05-25 21:08 ` [PATCH] zlib: Add a sourceforge mirror Cyril Roelandt @ 2013-05-26 20:00 ` Ludovic Courtès 2013-05-28 20:41 ` Cyril Roelandt 1 sibling, 1 reply; 14+ messages in thread From: Ludovic Courtès @ 2013-05-26 20:00 UTC (permalink / raw) To: Cyril Roelandt; +Cc: bug-guix Cyril Roelandt <tipecaml@gmail.com> skribis: > On 05/23/2013 05:19 PM, Ludovic Courtès wrote: > >> Did you use --no-substitutes? >> > > No, but anyway I can't use the substituter on x86. You can: the tar.gz is architecture-independent, and it’s the exact same regardless of the architecture (technically, it’s a “fixed-output derivation”.) So ‘guix build -S foo’ should by default try to go through the substituter. If that is not the case, it may be a bug. Could you check what happens? Ludo’. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-26 20:00 ` [PATCH] zlib: bump to 1.2.8 Ludovic Courtès @ 2013-05-28 20:41 ` Cyril Roelandt 2013-05-28 21:55 ` Ludovic Courtès 0 siblings, 1 reply; 14+ messages in thread From: Cyril Roelandt @ 2013-05-28 20:41 UTC (permalink / raw) To: Ludovic Courtès; +Cc: bug-guix On 05/26/2013 10:00 PM, Ludovic Courtès wrote: > Cyril Roelandt<tipecaml@gmail.com> skribis: > >> On 05/23/2013 05:19 PM, Ludovic Courtès wrote: >> >>> Did you use --no-substitutes? >>> >> >> No, but anyway I can't use the substituter on x86. > > You can: the tar.gz is architecture-independent, and it’s the exact same > regardless of the architecture (technically, it’s a “fixed-output > derivation”.) > > So ‘guix build -S foo’ should by default try to go through the > substituter. If that is not the case, it may be a bug. > > Could you check what happens? > IIRC, I noticed the issue in zlib because Guix failed to download it when I tried to install gnutls. I could not reproduce the issue though :/ Cyril. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-28 20:41 ` Cyril Roelandt @ 2013-05-28 21:55 ` Ludovic Courtès 2013-06-04 0:13 ` Cyril Roelandt 0 siblings, 1 reply; 14+ messages in thread From: Ludovic Courtès @ 2013-05-28 21:55 UTC (permalink / raw) To: Cyril Roelandt; +Cc: bug-guix Cyril Roelandt <tipecaml@gmail.com> skribis: > On 05/26/2013 10:00 PM, Ludovic Courtès wrote: >> Cyril Roelandt<tipecaml@gmail.com> skribis: >> >>> On 05/23/2013 05:19 PM, Ludovic Courtès wrote: >>> >>>> Did you use --no-substitutes? >>>> >>> >>> No, but anyway I can't use the substituter on x86. >> >> You can: the tar.gz is architecture-independent, and it’s the exact same >> regardless of the architecture (technically, it’s a “fixed-output >> derivation”.) >> >> So ‘guix build -S foo’ should by default try to go through the >> substituter. If that is not the case, it may be a bug. >> >> Could you check what happens? >> > > IIRC, I noticed the issue in zlib because Guix failed to download it > when I tried to install gnutls. I could not reproduce the issue though > :/ Perhaps if you do: guix gc --delete `guix build -S zlib` that will remove your copy of the zlib source from the store. Then you can try again to see if the substituter is used: guix build -S zlib Ludo’. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-05-28 21:55 ` Ludovic Courtès @ 2013-06-04 0:13 ` Cyril Roelandt 2013-06-04 7:10 ` Ludovic Courtès 0 siblings, 1 reply; 14+ messages in thread From: Cyril Roelandt @ 2013-06-04 0:13 UTC (permalink / raw) To: Ludovic Courtès; +Cc: bug-guix [-- Attachment #1: Type: text/plain, Size: 1333 bytes --] On 05/28/2013 11:55 PM, Ludovic Courtès wrote: > Cyril Roelandt<tipecaml@gmail.com> skribis: > >> On 05/26/2013 10:00 PM, Ludovic Courtès wrote: >>> Cyril Roelandt<tipecaml@gmail.com> skribis: >>> >>>> On 05/23/2013 05:19 PM, Ludovic Courtès wrote: >>>> >>>>> Did you use --no-substitutes? >>>>> >>>> >>>> No, but anyway I can't use the substituter on x86. >>> >>> You can: the tar.gz is architecture-independent, and it’s the exact same >>> regardless of the architecture (technically, it’s a “fixed-output >>> derivation”.) >>> >>> So ‘guix build -S foo’ should by default try to go through the >>> substituter. If that is not the case, it may be a bug. >>> >>> Could you check what happens? >>> >> >> IIRC, I noticed the issue in zlib because Guix failed to download it >> when I tried to install gnutls. I could not reproduce the issue though >> :/ > > Perhaps if you do: > > guix gc --delete `guix build -S zlib` > > that will remove your copy of the zlib source from the store. > > Then you can try again to see if the substituter is used: > > guix build -S zlib > > Ludo’. I just ran into a similar issue (still on i686). Subversion 1.7.8 cannot be found on the Apache website any more (the current version is 1.7.10), and Guix does not try to download it from Hydra. I attached the log. Cyril. [-- Attachment #2: log_subversion --] [-- Type: text/plain, Size: 28458 bytes --] The following derivations will be built: /nix/store/696y90a8i3w0bgx3gvqpdvkm9i89r5x7-subversion-1.7.8.drv /nix/store/jgvijba29y3wjnhl4rwjn5qzv05c8a2h-apr-util-1.5.1.tar.bz2.drv /nix/store/025yq4kpzw3b557260w16jkldmjccjdz-sqlite-autoconf-3071502.tar.gz.drv /nix/store/cfldkiawphb35llarxacrx0kzcxk2rz0-sqlite-3.7.15.2.drv /nix/store/hcz78d6rizbikl4lz5czinsgzfvplz8s-libaprutil-1.5.1.drv /nix/store/l7fnzzdzh2gadr98gg6m1y70vlbairyq-libapr-1.4.6.drv /nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv @ build-started /nix/store/l7fnzzdzh2gadr98gg6m1y70vlbairyq-libapr-1.4.6.drv - i686-linux /usr/local/var/log/nix/drvs/l7//fnzzdzh2gadr98gg6m1y70vlbairyq-libapr-1.4.6.drv.bz2 @ build-started /nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv - i686-linux /usr/local/var/log/nix/drvs/q7//dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv.bz2 starting phase `set-paths' environment variable `PATH' set to `/nix/store/rp1fdpa8fa4cdx3j76yyhi45lgx796nw-perl-5.16.1/bin:/nix/store/fs45zsw3niwmaccfshiw53r659l37im8-tar-1.26/bin:/nix/store/fs45zsw3niwmaccfshiw53r659l37im8-tar-1.26/sbin:/nix/store/q0p5vk2s1dvir098s3ngyq1q5ri5cfnc-gzip-1.5/bin:/nix/store/i9fmk6j2p0a8kwhfa0sm3abhsh95zjii-bzip2-1.0.6/bin:/nix/store/9npd13xp0zs7wzwgr7rxny7ssbi082vp-xz-5.0.4/bin:/nix/store/mr3xs2q42lcmz1vjk41lm26a36ynm42i-diffutils-3.3/bin:/nix/store/y0l5bm22w6kdb818fcddpi87yq3lj0z3-patch-2.7.1/bin:/nix/store/ird00bq02j503g92f0di288s1gm6hlp5-coreutils-8.21/bin:/nix/store/i27r63bhg02bl1ny03aj85yg1w8d4ipa-sed-4.2.2/bin:/nix/store/ng7li7lrx30rfvb7kv4zhaknppyyj88w-grep-2.14/bin:/nix/store/d4kbdav70kzfghbx6lk2hwr6jr9xhqh3-findutils-4.4.2/bin:/nix/store/walbn4wvrrzzrdzlc89cd8cf0y8v3nwk-gawk-4.0.2/bin:/nix/store/2fa8c2bdrs5bdsw4zm9c3j1c8pd5a36r-make-3.82/bin:/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin:/nix/store/3w22flx5im0k6da77yhgrd6fhkjp8vj8-ld-wrapper-0/bin:/nix/store/2gli8apa8l16qacpyi3g1cmz649f3z4s-binutils-2.23.2/bin:/nix/store/0cqfds5z0f1jacqmah6fac26x3x5caqy-gcc-4.7.3/bin:/nix/store/xxvgbrc33fa1hngv5ljb79dc7xcg45k6-glibc-2.17/bin:/nix/store/xxvgbrc33fa1hngv5ljb79dc7xcg45k6-glibc-2.17/sbin' environment variable `CPATH' set to `/nix/store/hf5y6fahpdw80ni8rgdwv8sh7a8acc79-libtool-2.4.2/include:/nix/store/i9fmk6j2p0a8kwhfa0sm3abhsh95zjii-bzip2-1.0.6/include:/nix/store/9npd13xp0zs7wzwgr7rxny7ssbi082vp-xz-5.0.4/include:/nix/store/0cqfds5z0f1jacqmah6fac26x3x5caqy-gcc-4.7.3/include:/nix/store/xxvgbrc33fa1hngv5ljb79dc7xcg45k6-glibc-2.17/include:/nix/store/f78lslcyxcysgjiri124nzznsd16kc4d-linux-libre-headers-3.3.8/include' environment variable `LIBRARY_PATH' set to `/nix/store/rp1fdpa8fa4cdx3j76yyhi45lgx796nw-perl-5.16.1/lib:/nix/store/hf5y6fahpdw80ni8rgdwv8sh7a8acc79-libtool-2.4.2/lib:/nix/store/i9fmk6j2p0a8kwhfa0sm3abhsh95zjii-bzip2-1.0.6/lib:/nix/store/9npd13xp0zs7wzwgr7rxny7ssbi082vp-xz-5.0.4/lib:/nix/store/0cqfds5z0f1jacqmah6fac26x3x5caqy-gcc-4.7.3/lib:/nix/store/xxvgbrc33fa1hngv5ljb79dc7xcg45k6-glibc-2.17/lib' environment variable `PERL5LIB' set to `/nix/store/rp1fdpa8fa4cdx3j76yyhi45lgx796nw-perl-5.16.1/lib/perl5/site_perl' phase `set-paths' succeeded after 0 seconds starting phase `unpack' starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://www.eu.apache.org/dist/subversion/subversion-1.7.8.tar.bz2'... apr-1.4.6/ apr-1.4.6/shmem/ apr-1.4.6/shmem/win32/ apr-1.4.6/shmem/win32/shm.c apr-1.4.6/shmem/beos/ apr-1.4.6/shmem/beos/shm.c apr-1.4.6/shmem/os2/ apr-1.4.6/shmem/os2/shm.c apr-1.4.6/shmem/unix/ apr-1.4.6/shmem/unix/shm.c apr-1.4.6/buildconf apr-1.4.6/test/ apr-1.4.6/test/readchild.c apr-1.4.6/test/testglobalmutex.h apr-1.4.6/test/testfile.c apr-1.4.6/test/testdll.dsp apr-1.4.6/test/testpipe.c apr-1.4.6/test/NWGNUmakefile apr-1.4.6/test/testmmap.c apr-1.4.6/test/teststr.c apr-1.4.6/test/NWGNUproc_child apr-1.4.6/test/abts.h apr-1.4.6/test/testsleep.c apr-1.4.6/test/tryread.c apr-1.4.6/test/testuser.c apr-1.4.6/test/testshmproducer.c apr-1.4.6/test/testoc.c apr-1.4.6/test/occhild.c apr-1.4.6/test/testpools.c apr-1.4.6/test/data/ apr-1.4.6/test/data/mmap_datafile.txt apr-1.4.6/test/data/file_datafile.txt apr-1.4.6/test/NWGNUechod apr-1.4.6/test/testdup.c apr-1.4.6/test/testtime.c apr-1.4.6/test/testhash.c apr-1.4.6/test/NWGNUmod_test apr-1.4.6/test/sockperf.c apr-1.4.6/test/testlockperf.c apr-1.4.6/test/testshm.c apr-1.4.6/test/NWGNUglobalmutexchild apr-1.4.6/test/testpoll.c apr-1.4.6/test/testlib.dsp apr-1.4.6/test/testdso.c apr-1.4.6/test/testfnmatch.c apr-1.4.6/test/Makefile.win apr-1.4.6/test/testflock.c apr-1.4.6/test/testlfs.c apr-1.4.6/test/testsockopt.c apr-1.4.6/test/testrand.c apr-1.4.6/test/testvsn.c apr-1.4.6/test/testmutexscope.c apr-1.4.6/test/testud.c apr-1.4.6/test/echod.c apr-1.4.6/test/testnames.c apr-1.4.6/test/testsock.c apr-1.4.6/test/testdir.c apr-1.4.6/test/testflock.h apr-1.4.6/test/NWGNUaprtest apr-1.4.6/test/testprocmutex.c apr-1.4.6/test/testproc.c apr-1.4.6/test/NWGNUsockperf apr-1.4.6/test/testfileinfo.c apr-1.4.6/test/testthread.c apr-1.4.6/test/testutil.h apr-1.4.6/test/README apr-1.4.6/test/testtemp.c apr-1.4.6/test/globalmutexchild.c apr-1.4.6/test/testfmt.c apr-1.4.6/test/abts_tests.h apr-1.4.6/test/internal/ apr-1.4.6/test/internal/Makefile.win apr-1.4.6/test/internal/Makefile.in apr-1.4.6/test/internal/testucs.c apr-1.4.6/test/internal/testregex.c apr-1.4.6/test/testpath.c apr-1.4.6/test/Makefile.in apr-1.4.6/test/sockchild.c apr-1.4.6/test/testargs.c apr-1.4.6/test/abts.c apr-1.4.6/test/NWGNUtestatmc apr-1.4.6/test/NWGNUtryread apr-1.4.6/test/testcond.c apr-1.4.6/test/testsockets.c apr-1.4.6/test/testipsub.c apr-1.4.6/test/testtable.c apr-1.4.6/test/testatomic.c apr-1.4.6/test/testlock.c apr-1.4.6/test/testshmconsumer.c apr-1.4.6/test/testfilecopy.c apr-1.4.6/test/proc_child.c apr-1.4.6/test/NWGNUreadchild apr-1.4.6/test/nw_misc.c apr-1.4.6/test/testshm.h apr-1.4.6/test/teststrnatcmp.c apr-1.4.6/test/testutil.c apr-1.4.6/test/NWGNUsockchild apr-1.4.6/test/sendfile.c apr-1.4.6/test/testapp.c apr-1.4.6/test/mod_test.c apr-1.4.6/test/testenv.c apr-1.4.6/test/testsock.h apr-1.4.6/test/testglobalmutex.c apr-1.4.6/test/testall.dsw apr-1.4.6/NWGNUmakefile apr-1.4.6/configure.in apr-1.4.6/apr.dep apr-1.4.6/build/ apr-1.4.6/build/apr_threads.m4 apr-1.4.6/build/libaprapp.dep apr-1.4.6/build/NWGNUmakefile apr-1.4.6/build/install.sh apr-1.4.6/build/apr_network.m4 apr-1.4.6/build/aprapp.mak apr-1.4.6/build/NWGNUenvironment.inc apr-1.4.6/build/apr_win32.m4 apr-1.4.6/build/make_var_export.awk apr-1.4.6/build/libtool.m4 apr-1.4.6/build/win32ver.awk apr-1.4.6/build/prelibaprapp.dsp apr-1.4.6/build/gen-build.py apr-1.4.6/build/NWGNUtail.inc apr-1.4.6/build/preaprapp.dsp apr-1.4.6/build/lt~obsolete.m4 apr-1.4.6/build/ltversion.m4 apr-1.4.6/build/pkg/ apr-1.4.6/build/pkg/README apr-1.4.6/build/pkg/pkginfo.in apr-1.4.6/build/pkg/buildpkg.sh apr-1.4.6/build/mkdir.sh apr-1.4.6/build/MakeEtags apr-1.4.6/build/lineends.pl apr-1.4.6/build/config.guess apr-1.4.6/build/find_apr.m4 apr-1.4.6/build/apr_common.m4 apr-1.4.6/build/jlibtool.c apr-1.4.6/build/cvtdsp.pl apr-1.4.6/build/libaprapp.mak apr-1.4.6/build/ltoptions.m4 apr-1.4.6/build/nw_ver.awk apr-1.4.6/build/ltmain.sh apr-1.4.6/build/make_nw_export.awk apr-1.4.6/build/get-version.sh apr-1.4.6/build/buildcheck.sh apr-1.4.6/build/nw_export.inc apr-1.4.6/build/make_exports.awk apr-1.4.6/build/aprapp.dsp apr-1.4.6/build/aprapp.dep apr-1.4.6/build/libaprapp.dsp apr-1.4.6/build/apr_rules.mk.in apr-1.4.6/build/NWGNUhead.inc apr-1.4.6/build/fixwin32mak.pl apr-1.4.6/build/ltsugar.m4 apr-1.4.6/build/aplibtool.c apr-1.4.6/build/config.sub apr-1.4.6/build/PrintPath apr-1.4.6/build/rpm/ apr-1.4.6/build/rpm/apr.spec.in apr-1.4.6/build/apr_hints.m4 apr-1.4.6/build/run-gcov.sh apr-1.4.6/misc/ apr-1.4.6/misc/win32/ apr-1.4.6/misc/win32/env.c apr-1.4.6/misc/win32/start.c apr-1.4.6/misc/win32/utf8.c apr-1.4.6/misc/win32/internal.c apr-1.4.6/misc/win32/misc.c apr-1.4.6/misc/win32/charset.c apr-1.4.6/misc/win32/apr_app.c apr-1.4.6/misc/win32/rand.c apr-1.4.6/misc/unix/ apr-1.4.6/misc/unix/env.c apr-1.4.6/misc/unix/start.c apr-1.4.6/misc/unix/otherchild.c apr-1.4.6/misc/unix/charset.c apr-1.4.6/misc/unix/randbyte_os2.inc apr-1.4.6/misc/unix/getopt.c apr-1.4.6/misc/unix/errorcodes.c apr-1.4.6/misc/unix/version.c apr-1.4.6/misc/unix/rand.c apr-1.4.6/misc/netware/ apr-1.4.6/misc/netware/start.c apr-1.4.6/misc/netware/aprlib.def apr-1.4.6/misc/netware/libprews.c apr-1.4.6/misc/netware/charset.c apr-1.4.6/misc/netware/rand.c apr-1.4.6/misc/netware/apr.xdc apr-1.4.6/helpers/ apr-1.4.6/helpers/apr_rename.pl apr-1.4.6/mmap/ apr-1.4.6/mmap/win32/ apr-1.4.6/mmap/win32/mmap.c apr-1.4.6/mmap/unix/ apr-1.4.6/mmap/unix/mmap.c apr-1.4.6/mmap/unix/common.c apr-1.4.6/apr.dsw apr-1.4.6/file_io/ apr-1.4.6/file_io/win32/ apr-1.4.6/file_io/win32/filepath.c apr-1.4.6/file_io/win32/buffer.c apr-1.4.6/file_io/win32/readwrite.c apr-1.4.6/file_io/win32/filesys.c apr-1.4.6/file_io/win32/flock.c apr-1.4.6/file_io/win32/pipe.c apr-1.4.6/file_io/win32/dir.c apr-1.4.6/file_io/win32/seek.c apr-1.4.6/file_io/win32/filedup.c apr-1.4.6/file_io/win32/filestat.c apr-1.4.6/file_io/win32/open.c apr-1.4.6/file_io/os2/ apr-1.4.6/file_io/os2/fullrw.c apr-1.4.6/file_io/os2/filepath.c apr-1.4.6/file_io/os2/buffer.c apr-1.4.6/file_io/os2/readwrite.c apr-1.4.6/file_io/os2/filesys.c apr-1.4.6/file_io/os2/filepath_util.c apr-1.4.6/file_io/os2/flock.c apr-1.4.6/file_io/os2/dir_make_recurse.c apr-1.4.6/file_io/os2/mktemp.c apr-1.4.6/file_io/os2/pipe.c apr-1.4.6/file_io/os2/dir.c apr-1.4.6/file_io/os2/tempdir.c apr-1.4.6/file_io/os2/copy.c apr-1.4.6/file_io/os2/seek.c apr-1.4.6/file_io/os2/maperrorcode.c apr-1.4.6/file_io/os2/filedup.c apr-1.4.6/file_io/os2/filestat.c apr-1.4.6/file_io/os2/open.c apr-1.4.6/file_io/os2/fileacc.c apr-1.4.6/file_io/unix/ apr-1.4.6/file_io/unix/fullrw.c apr-1.4.6/file_io/unix/filepath.c apr-1.4.6/file_io/unix/buffer.c apr-1.4.6/file_io/unix/readwrite.c apr-1.4.6/file_io/unix/filepath_util.c apr-1.4.6/file_io/unix/flock.c apr-1.4.6/file_io/unix/mktemp.c apr-1.4.6/file_io/unix/pipe.c apr-1.4.6/file_io/unix/dir.c apr-1.4.6/file_io/unix/tempdir.c apr-1.4.6/file_io/unix/copy.c apr-1.4.6/file_io/unix/seek.c apr-1.4.6/file_io/unix/filedup.c apr-1.4.6/file_io/unix/filestat.c apr-1.4.6/file_io/unix/open.c apr-1.4.6/file_io/unix/fileacc.c apr-1.4.6/file_io/netware/ apr-1.4.6/file_io/netware/filepath.c apr-1.4.6/file_io/netware/filesys.c apr-1.4.6/file_io/netware/flock.c apr-1.4.6/file_io/netware/mktemp.c apr-1.4.6/file_io/netware/pipe.c apr-1.4.6/file_io/netware/filestat.c apr-1.4.6/tables/ apr-1.4.6/tables/apr_hash.c apr-1.4.6/tables/apr_tables.c apr-1.4.6/atomic/ apr-1.4.6/atomic/win32/ apr-1.4.6/atomic/win32/apr_atomic.c apr-1.4.6/atomic/unix/ apr-1.4.6/atomic/unix/builtins.c apr-1.4.6/atomic/unix/mutex.c apr-1.4.6/atomic/unix/s390.c apr-1.4.6/atomic/unix/ia32.c apr-1.4.6/atomic/unix/solaris.c apr-1.4.6/atomic/unix/ppc.c apr-1.4.6/atomic/netware/ apr-1.4.6/atomic/netware/apr_atomic.c apr-1.4.6/atomic/os390/ apr-1.4.6/atomic/os390/atomic.c apr-1.4.6/strings/ apr-1.4.6/strings/apr_fnmatch.c apr-1.4.6/strings/apr_snprintf.c apr-1.4.6/strings/apr_cpystrn.c apr-1.4.6/strings/apr_strings.c apr-1.4.6/strings/apr_strtok.c apr-1.4.6/strings/apr_strnatcmp.c apr-1.4.6/user/ apr-1.4.6/user/win32/ apr-1.4.6/user/win32/userinfo.c apr-1.4.6/user/win32/groupinfo.c apr-1.4.6/user/unix/ apr-1.4.6/user/unix/userinfo.c apr-1.4.6/user/unix/groupinfo.c apr-1.4.6/user/netware/ apr-1.4.6/user/netware/userinfo.c apr-1.4.6/user/netware/groupinfo.c apr-1.4.6/CHANGES apr-1.4.6/Makefile.win apr-1.4.6/libapr.dsp apr-1.4.6/poll/ apr-1.4.6/poll/os2/ apr-1.4.6/poll/os2/poll.c apr-1.4.6/poll/os2/pollset.c apr-1.4.6/poll/unix/ apr-1.4.6/poll/unix/port.c apr-1.4.6/poll/unix/poll.c apr-1.4.6/poll/unix/select.c apr-1.4.6/poll/unix/pollcb.c apr-1.4.6/poll/unix/pollset.c apr-1.4.6/poll/unix/epoll.c apr-1.4.6/poll/unix/kqueue.c apr-1.4.6/libapr.dep apr-1.4.6/apr.mak apr-1.4.6/memory/ apr-1.4.6/memory/unix/ apr-1.4.6/memory/unix/apr_pools.c apr-1.4.6/emacs-mode apr-1.4.6/config.layout apr-1.4.6/network_io/ apr-1.4.6/network_io/win32/ apr-1.4.6/network_io/win32/sendrecv.c apr-1.4.6/network_io/win32/sockopt.c apr-1.4.6/network_io/win32/sockets.c apr-1.4.6/network_io/beos/ apr-1.4.6/network_io/beos/sendrecv.c apr-1.4.6/network_io/beos/socketcommon.c apr-1.4.6/network_io/os2/ apr-1.4.6/network_io/os2/os2calls.c apr-1.4.6/network_io/os2/sendrecv.c apr-1.4.6/network_io/os2/inet_ntop.c apr-1.4.6/network_io/os2/socket_util.c apr-1.4.6/network_io/os2/inet_pton.c apr-1.4.6/network_io/os2/sockopt.c apr-1.4.6/network_io/os2/sockets.c apr-1.4.6/network_io/os2/sendrecv_udp.c apr-1.4.6/network_io/os2/sockaddr.c apr-1.4.6/network_io/unix/ apr-1.4.6/network_io/unix/sendrecv.c apr-1.4.6/network_io/unix/inet_ntop.c apr-1.4.6/network_io/unix/socket_util.c apr-1.4.6/network_io/unix/inet_pton.c apr-1.4.6/network_io/unix/sockopt.c apr-1.4.6/network_io/unix/multicast.c apr-1.4.6/network_io/unix/sockets.c apr-1.4.6/network_io/unix/sockaddr.c apr-1.4.6/random/ apr-1.4.6/random/unix/ apr-1.4.6/random/unix/sha2_glue.c apr-1.4.6/random/unix/sha2.h apr-1.4.6/random/unix/sha2.c apr-1.4.6/random/unix/apr_random.c apr-1.4.6/NOTICE apr-1.4.6/apr.pc.in apr-1.4.6/support/ apr-1.4.6/support/unix/ apr-1.4.6/support/unix/waitio.c apr-1.4.6/time/ apr-1.4.6/time/win32/ apr-1.4.6/time/win32/time.c apr-1.4.6/time/win32/timestr.c apr-1.4.6/time/unix/ apr-1.4.6/time/unix/time.c apr-1.4.6/time/unix/timestr.c apr-1.4.6/README apr-1.4.6/apr.spec apr-1.4.6/configure apr-1.4.6/docs/ apr-1.4.6/docs/non_apr_programs apr-1.4.6/docs/APRDesign.html apr-1.4.6/docs/doxygen.conf apr-1.4.6/docs/pool-design.html apr-1.4.6/docs/incomplete_types apr-1.4.6/docs/canonical_filenames.html apr-1.4.6/docs/win32_builds.html apr-1.4.6/Makefile.in apr-1.4.6/include/ apr-1.4.6/include/apr_mmap.h apr-1.4.6/include/apr_time.h apr-1.4.6/include/apr_lib.h apr-1.4.6/include/apr_getopt.h apr-1.4.6/include/apr.hw apr-1.4.6/include/apr.hnw apr-1.4.6/include/apr_hash.h apr-1.4.6/include/apr_user.h apr-1.4.6/include/apr_thread_cond.h apr-1.4.6/include/apr_file_io.h apr-1.4.6/include/apr_thread_rwlock.h apr-1.4.6/include/apr_want.h apr-1.4.6/include/apr_pools.h apr-1.4.6/include/apr_allocator.h apr-1.4.6/include/apr_file_info.h apr-1.4.6/include/apr_version.h apr-1.4.6/include/apr_portable.h apr-1.4.6/include/apr_poll.h apr-1.4.6/include/apr_network_io.h apr-1.4.6/include/apr.h.in apr-1.4.6/include/apr_dso.h apr-1.4.6/include/apr_global_mutex.h apr-1.4.6/include/apr_signal.h apr-1.4.6/include/apr_fnmatch.h apr-1.4.6/include/apr_random.h apr-1.4.6/include/apr_atomic.h apr-1.4.6/include/apr_inherit.h apr-1.4.6/include/apr_shm.h apr-1.4.6/include/apr_strings.h apr-1.4.6/include/apr_ring.h apr-1.4.6/include/apr_general.h apr-1.4.6/include/apr_thread_mutex.h apr-1.4.6/include/apr_errno.h apr-1.4.6/include/apr_proc_mutex.h apr-1.4.6/include/apr_support.h apr-1.4.6/include/apr_tables.h apr-1.4.6/include/arch/ apr-1.4.6/include/arch/win32/ apr-1.4.6/include/arch/win32/apr_private.h apr-1.4.6/include/arch/win32/apr_arch_threadproc.h apr-1.4.6/include/arch/win32/apr_arch_thread_rwlock.h apr-1.4.6/include/arch/win32/apr_arch_thread_cond.h apr-1.4.6/include/arch/win32/apr_arch_inherit.h apr-1.4.6/include/arch/win32/apr_arch_thread_mutex.h apr-1.4.6/include/arch/win32/apr_dbg_win32_handles.h apr-1.4.6/include/arch/win32/apr_arch_atime.h apr-1.4.6/include/arch/win32/apr_arch_dso.h apr-1.4.6/include/arch/win32/apr_arch_networkio.h apr-1.4.6/include/arch/win32/apr_arch_file_io.h apr-1.4.6/include/arch/win32/apr_arch_utf8.h apr-1.4.6/include/arch/win32/apr_arch_misc.h apr-1.4.6/include/arch/win32/apr_arch_proc_mutex.h apr-1.4.6/include/arch/darwin/ apr-1.4.6/include/arch/beos/ apr-1.4.6/include/arch/beos/apr_arch_threadproc.h apr-1.4.6/include/arch/beos/apr_arch_thread_rwlock.h apr-1.4.6/include/arch/beos/apr_arch_thread_cond.h apr-1.4.6/include/arch/beos/apr_arch_thread_mutex.h apr-1.4.6/include/arch/beos/apr_arch_dso.h apr-1.4.6/include/arch/beos/apr_arch_proc_mutex.h apr-1.4.6/include/arch/apr_private_common.h apr-1.4.6/include/arch/os2/ apr-1.4.6/include/arch/os2/apr_arch_threadproc.h apr-1.4.6/include/arch/os2/apr_arch_thread_rwlock.h apr-1.4.6/include/arch/os2/apr_arch_thread_cond.h apr-1.4.6/include/arch/os2/apr_arch_inherit.h apr-1.4.6/include/arch/os2/apr_arch_thread_mutex.h apr-1.4.6/include/arch/os2/apr_arch_dso.h apr-1.4.6/include/arch/os2/apr_arch_os2calls.h apr-1.4.6/include/arch/os2/apr_arch_networkio.h apr-1.4.6/include/arch/os2/apr_arch_file_io.h apr-1.4.6/include/arch/os2/apr_arch_proc_mutex.h apr-1.4.6/include/arch/unix/ apr-1.4.6/include/arch/unix/apr_arch_threadproc.h apr-1.4.6/include/arch/unix/apr_arch_thread_rwlock.h apr-1.4.6/include/arch/unix/apr_arch_thread_cond.h apr-1.4.6/include/arch/unix/apr_arch_poll_private.h apr-1.4.6/include/arch/unix/apr_private.h.in apr-1.4.6/include/arch/unix/apr_arch_atomic.h apr-1.4.6/include/arch/unix/apr_arch_inherit.h apr-1.4.6/include/arch/unix/apr_arch_global_mutex.h apr-1.4.6/include/arch/unix/apr_arch_thread_mutex.h apr-1.4.6/include/arch/unix/apr_arch_internal_time.h apr-1.4.6/include/arch/unix/apr_arch_dso.h apr-1.4.6/include/arch/unix/apr_arch_networkio.h apr-1.4.6/include/arch/unix/apr_arch_file_io.h apr-1.4.6/include/arch/unix/apr_arch_misc.h apr-1.4.6/include/arch/unix/apr_arch_proc_mutex.h apr-1.4.6/include/arch/unix/apr_arch_shm.h apr-1.4.6/include/arch/aix/ apr-1.4.6/include/arch/aix/apr_arch_dso.h apr-1.4.6/include/arch/netware/ apr-1.4.6/include/arch/netware/apr_arch_pre_nw.h apr-1.4.6/include/arch/netware/apr_private.h apr-1.4.6/include/arch/netware/apr_arch_threadproc.h apr-1.4.6/include/arch/netware/apr_arch_thread_rwlock.h apr-1.4.6/include/arch/netware/apr_arch_thread_cond.h apr-1.4.6/include/arch/netware/apr_arch_global_mutex.h apr-1.4.6/include/arch/netware/apr_arch_thread_mutex.h apr-1.4.6/include/arch/netware/apr_arch_internal_time.h apr-1.4.6/include/arch/netware/apr_arch_dso.h apr-1.4.6/include/arch/netware/apr_arch_networkio.h apr-1.4.6/include/arch/netware/apr_arch_file_io.h apr-1.4.6/include/arch/netware/apr_arch_proc_mutex.h apr-1.4.6/include/arch/os390/ apr-1.4.6/include/arch/os390/apr_arch_dso.h apr-1.4.6/include/apr_env.h apr-1.4.6/include/apr_thread_proc.h apr-1.4.6/build-outputs.mk ERROR: download failed "http://www.eu.apache.org/dist/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://www.us.apache.org/dist/subversion/subversion-1.7.8.tar.bz2'... apr-1.4.6/passwd/ apr-1.4.6/passwd/apr_getpass.c apr-1.4.6/build.conf apr-1.4.6/apr-config.in apr-1.4.6/LICENSE apr-1.4.6/libapr.mak apr-1.4.6/locks/ apr-1.4.6/locks/win32/ apr-1.4.6/locks/win32/thread_cond.c apr-1.4.6/locks/win32/thread_mutex.c apr-1.4.6/locks/win32/proc_mutex.c apr-1.4.6/locks/win32/thread_rwlock.c apr-1.4.6/locks/beos/ apr-1.4.6/locks/beos/thread_cond.c apr-1.4.6/locks/beos/thread_mutex.c apr-1.4.6/locks/beos/proc_mutex.c apr-1.4.6/locks/beos/thread_rwlock.c apr-1.4.6/locks/os2/ apr-1.4.6/locks/os2/thread_cond.c apr-1.4.6/locks/os2/thread_mutex.c apr-1.4.6/locks/os2/proc_mutex.c apr-1.4.6/locks/os2/thread_rwlock.c apr-1.4.6/locks/unix/ apr-1.4.6/locks/unix/thread_cond.c apr-1.4.6/locks/unix/thread_mutex.c apr-1.4.6/locks/unix/proc_mutex.c apr-1.4.6/locks/unix/global_mutex.c apr-1.4.6/locks/unix/thread_rwlock.c apr-1.4.6/locks/netware/ apr-1.4.6/locks/netware/thread_cond.c apr-1.4.6/locks/netware/thread_mutex.c apr-1.4.6/locks/netware/proc_mutex.c apr-1.4.6/locks/netware/thread_rwlock.c apr-1.4.6/threadproc/ apr-1.4.6/threadproc/win32/ apr-1.4.6/threadproc/win32/proc.c apr-1.4.6/threadproc/win32/thread.c apr-1.4.6/threadproc/win32/threadpriv.c apr-1.4.6/threadproc/win32/signals.c apr-1.4.6/threadproc/beos/ apr-1.4.6/threadproc/beos/proc.c apr-1.4.6/threadproc/beos/thread.c apr-1.4.6/threadproc/beos/apr_proc_stub.c apr-1.4.6/threadproc/beos/threadpriv.c apr-1.4.6/threadproc/beos/threadproc_common.c apr-1.4.6/threadproc/os2/ apr-1.4.6/threadproc/os2/proc.c apr-1.4.6/threadproc/os2/thread.c apr-1.4.6/threadproc/os2/threadpriv.c apr-1.4.6/threadproc/os2/signals.c apr-1.4.6/threadproc/unix/ apr-1.4.6/threadproc/unix/proc.c apr-1.4.6/threadproc/unix/thread.c apr-1.4.6/threadproc/unix/threadpriv.c apr-1.4.6/threadproc/unix/procsup.c apr-1.4.6/threadproc/unix/signals.c apr-1.4.6/threadproc/netware/ apr-1.4.6/threadproc/netware/proc.c apr-1.4.6/threadproc/netware/thread.c apr-1.4.6/threadproc/netware/threadpriv.c apr-1.4.6/threadproc/netware/procsup.c apr-1.4.6/threadproc/netware/signals.c apr-1.4.6/dso/ apr-1.4.6/dso/win32/ apr-1.4.6/dso/win32/dso.c apr-1.4.6/dso/beos/ apr-1.4.6/dso/beos/dso.c apr-1.4.6/dso/os2/ apr-1.4.6/dso/os2/dso.c apr-1.4.6/dso/unix/ apr-1.4.6/dso/unix/dso.c apr-1.4.6/dso/aix/ apr-1.4.6/dso/aix/dso.c apr-1.4.6/dso/netware/ apr-1.4.6/dso/netware/dso.c apr-1.4.6/dso/os390/ apr-1.4.6/dso/os390/dso.c apr-1.4.6/libapr.rc apr-1.4.6/apr.dsp phase `unpack' succeeded after 0 seconds starting phase `patch' applying patch `/nix/store/6zkggmsx2qcbxdzkm325lm3mhyl80k9l-libapr-skip-getservbyname-test.patch' patching file test/testsock.c phase `patch' succeeded after 0 seconds starting phase `patch-source-shebangs' patch-shebang: ./build/pkg/buildpkg.sh: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/get-version.sh: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/install.sh: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/config.guess: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/gen-build.py: warning: no binary for interpreter `python' found in $PATH patch-shebang: ./build/MakeEtags: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/run-gcov.sh: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/buildcheck.sh: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/lineends.pl: changing `/usr/local/bin/perl' to `/nix/store/rp1fdpa8fa4cdx3j76yyhi45lgx796nw-perl-5.16.1/bin/perl' patch-shebang: ./build/config.sub: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/mkdir.sh: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./build/PrintPath: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./helpers/apr_rename.pl: changing `/usr/bin/perl' to `/nix/store/rp1fdpa8fa4cdx3j76yyhi45lgx796nw-perl-5.16.1/bin/perl' patch-shebang: ./configure: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./apr-config.in: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' patch-shebang: ./buildconf: changing `/bin/sh' to `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/sh' phase `patch-source-shebangs' succeeded after 0 seconds starting phase `configure' source directory: "/tmp/nix-build-libapr-1.4.6.drv-0/apr-1.4.6" (relative from build: ".") build directory: "/tmp/nix-build-libapr-1.4.6.drv-0/apr-1.4.6" configure flags: ("CONFIG_SHELL=/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/bash" "SHELL=/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2/bin/bash" "--prefix=/nix/store/3ia3nzign8wrsp2qcc1qgp73vg5fnjvs-libapr-1.4.6" "--enable-fast-install") checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu Configuring APR library Platform: i686-pc-linux-gnu checking for working mkdir -p... yes APR Version: 1.4.6 ERROR: download failed "http://www.us.apache.org/dist/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `ftp://gd.tuwien.ac.at/pub/infosys/servers/http/apache/dist/subversion/subversion-1.7.8.tar.bz2'... checking for chosen layout... apr checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for a sed that does not truncate output... /nix/store/i27r63bhg02bl1ny03aj85yg1w8d4ipa-sed-4.2.2/bin/sed Applying APR hints file rules for i686-pc-linux-gnu setting CPPFLAGS to "-D_REENTRANT -D_GNU_SOURCE" (Default will be unix) checking whether make sets $(MAKE)... no checking how to run the C preprocessor... gcc -E checking for gawk... gawk checking whether ln -s works... yes checking for ranlib... ranlib checking for a BSD-compatible install... /nix/store/ird00bq02j503g92f0di288s1gm6hlp5-coreutils-8.21/bin/install -c checking for rm... rm checking for as... as checking for cpp... cpp checking for ar... ar checking for grep that handles long lines and -e... /nix/store/ng7li7lrx30rfvb7kv4zhaknppyyj88w-grep-2.14/bin/grep checking for egrep... /nix/store/ng7li7lrx30rfvb7kv4zhaknppyyj88w-grep-2.14/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... ERROR: Throw to key `ftp-error' with args `(#<input-output: socket 8> "RETR subversion-1.7.8.tar.bz2" 550 "Failed to open file.\r")'. starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://apache.belnet.be/subversion/subversion-1.7.8.tar.bz2'... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for library containing strerror... ERROR: download failed "http://apache.belnet.be/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://mirrors.ircam.fr/pub/apache/subversion/subversion-1.7.8.tar.bz2'... none required checking whether system uses EBCDIC... ERROR: download failed "http://mirrors.ircam.fr/pub/apache/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://apache-mirror.rbc.ru/pub/apache/subversion/subversion-1.7.8.tar.bz2'... no performing libtool configuration... checking how to print strings... printf checking for a sed that does not truncate output... (cached) /nix/store/i27r63bhg02bl1ny03aj85yg1w8d4ipa-sed-4.2.2/bin/sed checking for fgrep... /nix/store/ng7li7lrx30rfvb7kv4zhaknppyyj88w-grep-2.14/bin/grep -F checking for ld used by gcc... /nix/store/3w22flx5im0k6da77yhgrd6fhkjp8vj8-ld-wrapper-0/bin/ld checking if the linker (/nix/store/3w22flx5im0k6da77yhgrd6fhkjp8vj8-ld-wrapper-0/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /nix/store/2gli8apa8l16qacpyi3g1cmz649f3z4s-binutils-2.23.2/bin/nm -B checking the name lister (/nix/store/2gli8apa8l16qacpyi3g1cmz649f3z4s-binutils-2.23.2/bin/nm -B) interface... ERROR: download failed "http://apache-mirror.rbc.ru/pub/apache/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" failed to download "/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2" from "mirror://apache/subversion/subversion-1.7.8.tar.bz2" builder for `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv' failed with exit code 1 @ build-failed /nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv - 1 builder for `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv' failed with exit code 1 cannot build derivation `/nix/store/696y90a8i3w0bgx3gvqpdvkm9i89r5x7-subversion-1.7.8.drv': 1 dependencies couldn't be built guix build: error: build failed: build of `/nix/store/696y90a8i3w0bgx3gvqpdvkm9i89r5x7-subversion-1.7.8.drv' failed ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-06-04 0:13 ` Cyril Roelandt @ 2013-06-04 7:10 ` Ludovic Courtès 2013-06-05 0:22 ` Cyril Roelandt 0 siblings, 1 reply; 14+ messages in thread From: Ludovic Courtès @ 2013-06-04 7:10 UTC (permalink / raw) To: Cyril Roelandt; +Cc: bug-guix Cyril Roelandt <tipecaml@gmail.com> skribis: > On 05/28/2013 11:55 PM, Ludovic Courtès wrote: >> Cyril Roelandt<tipecaml@gmail.com> skribis: >> >>> On 05/26/2013 10:00 PM, Ludovic Courtès wrote: >>>> Cyril Roelandt<tipecaml@gmail.com> skribis: >>>> >>>>> On 05/23/2013 05:19 PM, Ludovic Courtès wrote: >>>>> >>>>>> Did you use --no-substitutes? >>>>>> >>>>> >>>>> No, but anyway I can't use the substituter on x86. >>>> >>>> You can: the tar.gz is architecture-independent, and it’s the exact same >>>> regardless of the architecture (technically, it’s a “fixed-output >>>> derivation”.) >>>> >>>> So ‘guix build -S foo’ should by default try to go through the >>>> substituter. If that is not the case, it may be a bug. >>>> >>>> Could you check what happens? >>>> >>> >>> IIRC, I noticed the issue in zlib because Guix failed to download it >>> when I tried to install gnutls. I could not reproduce the issue though >>> :/ >> >> Perhaps if you do: >> >> guix gc --delete `guix build -S zlib` >> >> that will remove your copy of the zlib source from the store. >> >> Then you can try again to see if the substituter is used: >> >> guix build -S zlib >> >> Ludo’. > > I just ran into a similar issue (still on i686). Subversion 1.7.8 > cannot be found on the Apache website any more (the current version is > 1.7.10), and Guix does not try to download it from Hydra. I attached > the log. Can you check whether you have /nix/var/nix/substitute-binary/cache/i35q1vm2sl27sjhs7mx8n2m05056ya9x, and what its value is (use the right $localstatedir value)? If it’s there and has (value #f), which means that it’s a negative cached lookup, can you remove it and try again ‘guix build -S subversion’? TIA, Ludo’. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-06-04 7:10 ` Ludovic Courtès @ 2013-06-05 0:22 ` Cyril Roelandt 2013-06-05 7:31 ` Ludovic Courtès 0 siblings, 1 reply; 14+ messages in thread From: Cyril Roelandt @ 2013-06-05 0:22 UTC (permalink / raw) To: Ludovic Courtès; +Cc: bug-guix [-- Attachment #1: Type: text/plain, Size: 883 bytes --] On 06/04/2013 09:10 AM, Ludovic Courtès wrote: > Can you check whether you have > /nix/var/nix/substitute-binary/cache/i35q1vm2sl27sjhs7mx8n2m05056ya9x, > and what its value is (use the right $localstatedir value)? > # cat /usr/local/var/nix/substitute-binary/cache/i35q1vm2sl27sjhs7mx8n2m05056ya9x (narinfo (version 0) (date 1370389238) (value #f)) > If it’s there and has (value #f), which means that it’s a negative > cached lookup, can you remove it and try again ‘guix build -S > subversion’? # rm /usr/local/var/nix/substitute-binary/cache/i35q1vm2sl27sjhs7mx8n2m05056ya9x Then I tried building subversion and got the same error. Using the verbose input, I can see this line in the log (I attached the full log): path `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' is required, but there is no substituter that can build it Cyril. [-- Attachment #2: log --] [-- Type: text/plain, Size: 18726 bytes --] The following derivation will be built: /nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv building `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv' | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': created | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': woken up | entered goal loop | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': init | | substitution of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': created | | substitution of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': woken up | | substitution of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': init | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | substitution of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': done | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': waitee `substitution of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv'' done; 0 left | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': woken up | | substitution of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': goal destroyed | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': loading derivation | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2': created | | substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2': woken up | | substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2': init | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2': trying next substituter | | substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2': trying next substituter | | path `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' is required, but there is no substituter that can build it | | substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2': done | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': waitee `substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2'' done; 0 left | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': woken up | | substitution of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2': goal destroyed | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': all outputs substituted (maybe) | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': created | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': woken up | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': created | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': woken up | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': created | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': woken up | | substitution of `/nix/store/hfp2ry7vjin8b517whzcklzb5y5jg64k-subversion-1.7.8.tar.bz2-guile-builder': created | | substitution of `/nix/store/hfp2ry7vjin8b517whzcklzb5y5jg64k-subversion-1.7.8.tar.bz2-guile-builder': woken up | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': init | | substitution of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': created | | substitution of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': woken up | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': init | | substitution of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': created | | substitution of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': woken up | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': init | | substitution of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': created | | substitution of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': woken up | | substitution of `/nix/store/hfp2ry7vjin8b517whzcklzb5y5jg64k-subversion-1.7.8.tar.bz2-guile-builder': init | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | substitution of `/nix/store/hfp2ry7vjin8b517whzcklzb5y5jg64k-subversion-1.7.8.tar.bz2-guile-builder': done | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': waitee `substitution of `/nix/store/hfp2ry7vjin8b517whzcklzb5y5jg64k-subversion-1.7.8.tar.bz2-guile-builder'' done; 3 left | | substitution of `/nix/store/hfp2ry7vjin8b517whzcklzb5y5jg64k-subversion-1.7.8.tar.bz2-guile-builder': goal destroyed | | substitution of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': init | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | substitution of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': done | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': waitee `substitution of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv'' done; 0 left | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': woken up | | substitution of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': goal destroyed | | substitution of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': init | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | substitution of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': done | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': waitee `substitution of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv'' done; 0 left | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': woken up | | substitution of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': goal destroyed | | substitution of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': init | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | substitution of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': done | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': waitee `substitution of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv'' done; 0 left | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': woken up | | substitution of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': goal destroyed | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': loading derivation | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': done | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': waitee `building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv'' done; 2 left | | building of `/nix/store/62yaqwwmrm4yyi98cbbcx59w88p3x8sf-module-import-compiled.drv': goal destroyed | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': loading derivation | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': done | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': waitee `building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv'' done; 1 left | | building of `/nix/store/zvwjzyhxyj0qn59bdx3ykycdsxkys4br-module-import.drv': goal destroyed | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': loading derivation | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | acquiring write lock on `/usr/local/var/nix/temproots/29770' | | downgrading to read lock on `/usr/local/var/nix/temproots/29770' | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': done | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': waitee `building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv'' done; 0 left | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': woken up | | building of `/nix/store/qk7vwgzm3hyij703mhh17ivs3sswzyx0-guile-2.0.9.drv': goal destroyed | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': all inputs realised | | building path `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' | | added input paths `/nix/store/0cqfds5z0f1jacqmah6fac26x3x5caqy-gcc-4.7.3', `/nix/store/1qqn1fp5dh0n1lcga8fjihahfx1pp6j0-readline-6.2', `/nix/store/26pgdvws1vhpblak26li690fg19zpigk-ncurses-5.9', `/nix/store/56rh0cw6sl0cgd3w7x2f5j5vx9gqskrw-ftp-client.scm', `/nix/store/6x4cbwiq20kq1mvafd8wrgyz0zajw1yv-gmp-5.1.1', `/nix/store/86cnkmp1hr5rqk9khahdn75v726kqs97-libffi-3.0.9', `/nix/store/aca098nb81amhlm9pfcimizdn1zy659m-ncurses-5.9', `/nix/store/czjmbsxrr2sgcnbv0pl5xfg09bra4835-utils.scm', `/nix/store/gzd3p1zj3j1v4wzd37sph0hg57aq9chf-glibc-2.17-locales', `/nix/store/hfp2ry7vjin8b517whzcklzb5y5jg64k-subversion-1.7.8.tar.bz2-guile-builder', `/nix/store/i45lw9v6hr8v5gglikv67sdkzhx11xyh-guile-2.0.9', `/nix/store/iwifivczl16jn6l1di4f33sg94kakiyd-readline-6.2', `/nix/store/iy6fpqyqycsy23jb7ng5yflagwfrn4i4-pkg-config-0.27.1', `/nix/store/j2sa1lr6frkajhkd928p343bad1hylyf-download.scm', `/nix/store/kcbp1rj3wsyygv56693dxxk0zhrggkwn-libtool-2.4.2', `/nix/store/mn4m6pplhl4r8fibzkapwqdn7b0czghp-module-import-compiled', `/nix/store/n0ykx1s32h8gkqph68vpxhagw87nl0wj-libgc-7.2alpha6', `/nix/store/r1hyl2zhx00zn93y3jhndacz62vlhc0j-libunistring-0.9.3', `/nix/store/xxvgbrc33fa1hngv5ljb79dc7xcg45k6-glibc-2.17', `/nix/store/ynvq3bppppp5r33dxvs8q0y3as2vnzcj-module-import', `/nix/store/zkg7nnj03yp6pg9gx8wq3lpalr4ffw71-bash-4.2' | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': woken up | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': trying to build | | locking path `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' | | lock acquired on `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2.lock' | | building path(s) `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' | | | found build user `guix-builder1' | | | found build user `guix-builder2' | | | trying user `guix-builder1' | | | killing all processes running under uid `1001' | | | executing builder `/nix/store/i45lw9v6hr8v5gglikv67sdkzhx11xyh-guile-2.0.9/bin/guile' | | | @ build-started /nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv - i686-linux /usr/local/var/log/nix/drvs/q7//dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv.bz2 | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 46 bytes | | | switching to user `guix-builder1' | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 168 bytes starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://www.eu.apache.org/dist/subversion/subversion-1.7.8.tar.bz2'... | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 107 bytes ERROR: download failed "http://www.eu.apache.org/dist/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 168 bytes starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://www.us.apache.org/dist/subversion/subversion-1.7.8.tar.bz2'... | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 107 bytes ERROR: download failed "http://www.us.apache.org/dist/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 197 bytes starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `ftp://gd.tuwien.ac.at/pub/infosys/servers/http/apache/dist/subversion/subversion-1.7.8.tar.bz2'... | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 134 bytes ERROR: Throw to key `ftp-error' with args `(#<input-output: socket 8> "RETR subversion-1.7.8.tar.bz2" 550 "Failed to open file.\r")'. | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 162 bytes starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://apache.belnet.be/subversion/subversion-1.7.8.tar.bz2'... | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 101 bytes ERROR: download failed "http://apache.belnet.be/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 173 bytes starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://mirrors.ircam.fr/pub/apache/subversion/subversion-1.7.8.tar.bz2'... | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 112 bytes ERROR: download failed "http://mirrors.ircam.fr/pub/apache/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 177 bytes starting download of `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2' from `http://apache-mirror.rbc.ru/pub/apache/subversion/subversion-1.7.8.tar.bz2'... | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 116 bytes ERROR: download failed "http://apache-mirror.rbc.ru/pub/apache/subversion/subversion-1.7.8.tar.bz2" 404 "Not Found" | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': read 149 bytes failed to download "/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2" from "mirror://apache/subversion/subversion-1.7.8.tar.bz2" | | waiting for children | | sleeping 3600 seconds | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': got EOF | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': woken up | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': build done | | builder process for `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv' finished | | killing all processes running under uid `1001' | | recursively deleting path `/tmp/nix-build-subversion-1.7.8.tar.bz2.drv-0' | | | /tmp/nix-build-subversion-1.7.8.tar.bz2.drv-0 | | builder for `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv' failed with exit code 1 | | lock released on `/nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2.lock' | | @ build-failed /nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv - 1 builder for `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv' failed with exit code 1 | | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': done | building of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv': goal destroyed guix build: error: build failed: build of `/nix/store/q7dpkpp45ihph23papl06jfkgv87bbl2-subversion-1.7.8.tar.bz2.drv' failed ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] zlib: bump to 1.2.8. 2013-06-05 0:22 ` Cyril Roelandt @ 2013-06-05 7:31 ` Ludovic Courtès 0 siblings, 0 replies; 14+ messages in thread From: Ludovic Courtès @ 2013-06-05 7:31 UTC (permalink / raw) To: Cyril Roelandt; +Cc: bug-guix [-- Attachment #1: Type: text/plain, Size: 1237 bytes --] Cyril Roelandt <tipecaml@gmail.com> skribis: > On 06/04/2013 09:10 AM, Ludovic Courtès wrote: >> Can you check whether you have >> /nix/var/nix/substitute-binary/cache/i35q1vm2sl27sjhs7mx8n2m05056ya9x, >> and what its value is (use the right $localstatedir value)? >> > > # cat > /usr/local/var/nix/substitute-binary/cache/i35q1vm2sl27sjhs7mx8n2m05056ya9x > (narinfo (version 0) (date 1370389238) (value #f)) OK, so that’s a negative cache–i.e., it cached the fact that there is no substitute available. >> If it’s there and has (value #f), which means that it’s a negative >> cached lookup, can you remove it and try again ‘guix build -S >> subversion’? > > # rm > /usr/local/var/nix/substitute-binary/cache/i35q1vm2sl27sjhs7mx8n2m05056ya9x > > Then I tried building subversion and got the same error. What are the contents of the above file now? Still (value #f)? Can you remove it, apply the patch below, and run: echo info /nix/store/i35q1vm2sl27sjhs7mx8n2m05056ya9x-subversion-1.7.8.tar.bz2 | \ sudo ./pre-inst-env guix substitute-binary --query (This is how the daemon invokes the substituter.) BTW, I assume that ‘make check’ passes, right? Thanks, Ludo’. [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: Type: text/x-patch, Size: 574 bytes --] diff --git a/guix/scripts/substitute-binary.scm b/guix/scripts/substitute-binary.scm index 13c3828..786193a 100755 --- a/guix/scripts/substitute-binary.scm +++ b/guix/scripts/substitute-binary.scm @@ -238,7 +238,7 @@ reading PORT." (define (download url) ;; Download the .narinfo from URL, and return its contents as a list of ;; key/value pairs. - (false-if-exception (fetch (string->uri url)))) + (fetch (string->uri url))) (and (string=? (cache-store-directory cache) (%store-prefix)) (and=> (download (string-append (cache-url cache) "/" ^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2013-06-05 7:36 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-05-23 1:54 [PATCH] zlib: bump to 1.2.8 Cyril Roelandt 2013-05-23 12:03 ` Ludovic Courtès 2013-05-23 14:52 ` Cyril Roelandt 2013-05-23 15:19 ` Ludovic Courtès 2013-05-25 20:56 ` Cyril Roelandt 2013-05-25 21:08 ` [PATCH] zlib: Add a sourceforge mirror Cyril Roelandt 2013-05-25 21:23 ` Ludovic Courtès 2013-05-26 20:00 ` [PATCH] zlib: bump to 1.2.8 Ludovic Courtès 2013-05-28 20:41 ` Cyril Roelandt 2013-05-28 21:55 ` Ludovic Courtès 2013-06-04 0:13 ` Cyril Roelandt 2013-06-04 7:10 ` Ludovic Courtès 2013-06-05 0:22 ` Cyril Roelandt 2013-06-05 7:31 ` Ludovic Courtès
Code repositories for project(s) associated with this public inbox https://git.savannah.gnu.org/cgit/guix.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).