unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* does a shebang-patched shebang of autotools leak into my 'make dist'?
@ 2017-09-21  7:05 ng0
  2017-09-21  7:39 ` Andy Wingo
  0 siblings, 1 reply; 3+ messages in thread
From: ng0 @ 2017-09-21  7:05 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1715 bytes --]

If you do:
git clone https://git.taler.net/gnurl.git
cd gnurl
guix environment gnurl -- ./buildconf
sed 's/\/usr\/bin\/file/\/usr\/bin\/env file/' configure
guix environment gnurl -- ./configure --enable-ipv6 --with-gnutls --without-libssh2 --without-libmetalink --without-winidn --without-librtmp --without-nghttp2 --without-nss --without-cyassl --without-polarssl --without-ssl --without-winssl --without-darwinssl --disable-sspi --disable-ntlm-wb --disable-ldap --disable-rtsp --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smtp --disable-gopher --disable-file --disable-ftp --disable-smb
guix environment gnurl -- make
guix environment gnurl zip xz perl git -- ./maketgz 7.55.1-4

and the extract the resulting gnurl-7.55.1-4.tar.xz somewhere
you can cat ltmain.sh:

#!/gnu/store/kpxi8h3669afr9r1bgvaf9ij3y4wdyyn-bash-minimal-4.4.12/bin/sh
## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
##               by inline-source v2014-01-03.01

# libtool (GNU libtool) 2.4.6
# Provide generalized library-building support services.
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
…

This is the only result when I grep for /gnu/store/.
Is this caused by our autotools or by the way I
produced the tarball?
What needs to be changed to remove this?
Adding something to rewrite the shebang in the maketgz
script is trivial, I'm just wondering if it was some
argument I used.
This is close to 'make dist', as make dist is involved
in maketgz.

Help is very much welcome!
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://www.krosos.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: does a shebang-patched shebang of autotools leak into my 'make dist'?
  2017-09-21  7:05 does a shebang-patched shebang of autotools leak into my 'make dist'? ng0
@ 2017-09-21  7:39 ` Andy Wingo
  2017-09-21  8:14   ` ng0
  0 siblings, 1 reply; 3+ messages in thread
From: Andy Wingo @ 2017-09-21  7:39 UTC (permalink / raw)
  To: guix-devel

On Thu 21 Sep 2017 09:05, ng0 <ng0@infotropique.org> writes:

> If you do:
> git clone https://git.taler.net/gnurl.git
> cd gnurl
> guix environment gnurl -- ./buildconf
> sed 's/\/usr\/bin\/file/\/usr\/bin\/env file/' configure
> guix environment gnurl -- ./configure --enable-ipv6 --with-gnutls
> --without-libssh2 --without-libmetalink --without-winidn
> --without-librtmp --without-nghttp2 --without-nss --without-cyassl
> --without-polarssl --without-ssl --without-winssl --without-darwinssl
> --disable-sspi --disable-ntlm-wb --disable-ldap --disable-rtsp
> --disable-dict --disable-telnet --disable-tftp --disable-pop3
> --disable-imap --disable-smtp --disable-gopher --disable-file
> --disable-ftp --disable-smb
> guix environment gnurl -- make
> guix environment gnurl zip xz perl git -- ./maketgz 7.55.1-4
>
> and the extract the resulting gnurl-7.55.1-4.tar.xz somewhere
> you can cat ltmain.sh:
>
> #!/gnu/store/kpxi8h3669afr9r1bgvaf9ij3y4wdyyn-bash-minimal-4.4.12/bin/sh
> ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
> ##               by inline-source v2014-01-03.01

This used to be the case but should have been fixed in
92e779592d269ca1924f184496eb4ca832997b12.

Andy

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: does a shebang-patched shebang of autotools leak into my 'make dist'?
  2017-09-21  7:39 ` Andy Wingo
@ 2017-09-21  8:14   ` ng0
  0 siblings, 0 replies; 3+ messages in thread
From: ng0 @ 2017-09-21  8:14 UTC (permalink / raw)
  To: Andy Wingo; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1626 bytes --]

Andy Wingo transcribed 1.2K bytes:
> On Thu 21 Sep 2017 09:05, ng0 <ng0@infotropique.org> writes:
> 
> > If you do:
> > git clone https://git.taler.net/gnurl.git
> > cd gnurl
> > guix environment gnurl -- ./buildconf
> > sed 's/\/usr\/bin\/file/\/usr\/bin\/env file/' configure
> > guix environment gnurl -- ./configure --enable-ipv6 --with-gnutls
> > --without-libssh2 --without-libmetalink --without-winidn
> > --without-librtmp --without-nghttp2 --without-nss --without-cyassl
> > --without-polarssl --without-ssl --without-winssl --without-darwinssl
> > --disable-sspi --disable-ntlm-wb --disable-ldap --disable-rtsp
> > --disable-dict --disable-telnet --disable-tftp --disable-pop3
> > --disable-imap --disable-smtp --disable-gopher --disable-file
> > --disable-ftp --disable-smb
> > guix environment gnurl -- make
> > guix environment gnurl zip xz perl git -- ./maketgz 7.55.1-4
> >
> > and the extract the resulting gnurl-7.55.1-4.tar.xz somewhere
> > you can cat ltmain.sh:
> >
> > #!/gnu/store/kpxi8h3669afr9r1bgvaf9ij3y4wdyyn-bash-minimal-4.4.12/bin/sh
> > ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
> > ##               by inline-source v2014-01-03.01
> 
> This used to be the case but should have been fixed in
> 92e779592d269ca1924f184496eb4ca832997b12.
> 
> Andy

Thanks.
Well as I didn't send from the past before this commit, it's either
still the case or something is wrong with the way I generate this.
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://www.krosos.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-09-21  8:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-21  7:05 does a shebang-patched shebang of autotools leak into my 'make dist'? ng0
2017-09-21  7:39 ` Andy Wingo
2017-09-21  8:14   ` ng0

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).