[fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread jungle Boogie
Hello, OpenBSDs base image doesn't come with unzip, so I propose OpenBSD's installer be made into a tar.gz file, like the source tarball download: https://www.fossil-scm.org/download.html If there's a method to unzip Fossil with tools in the base image, I'd be interested to know about them. Than

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread Warren Young
On Dec 11, 2015, at 12:30 PM, jungle Boogie wrote: > > OpenBSDs base image doesn't come with unzip, so I propose OpenBSD's > installer be made into a tar.gz file, like the source tarball > download: > https://www.fossil-scm.org/download.html OpenBSD is perfectly in the right to leave non-POSIX t

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread Warren Young
On Dec 11, 2015, at 12:30 PM, jungle Boogie wrote: > > If there's a method to unzip Fossil with tools in the base image, I'd > be interested to know about them. While I stand by my previous reply, I was just reading the libarchive.org main page, and discovered that both bsdtar and bsdcpio will

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread jungle Boogie
On 11 December 2015 at 12:16, Warren Young wrote: > I don’t have an OpenBSD box handy, but “tar xvf foo.zip” works here on OS X, > which uses bsdtar. What do you suppose this means, then? $ tar xvf fossil-openbsd-x86-1.34.zip tar: Cannot identify format. Searching... tar: Cpio file name length

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread Warren Young
On Dec 11, 2015, at 1:29 PM, jungle Boogie wrote: > > On 11 December 2015 at 12:16, Warren Young wrote: >> I don’t have an OpenBSD box handy, but “tar xvf foo.zip” works here on OS X, >> which uses bsdtar. > > > What do you suppose this means, then? > > $ tar xvf fossil-openbsd-x86-1.34.zip

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread jungle Boogie
On 11 December 2015 at 12:34, Warren Young wrote: > Which version of OpenBSD are you running? Latest, or something older? A snapshot from earlier this week. Man page for tar: http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/tar.1?query=tar I see bzip and gzip for 'zip'. -- --

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread Richard Hipp
On 12/11/15, jungle Boogie wrote: > Hello, > > OpenBSDs base image doesn't come with unzip, so I propose OpenBSD's > installer be made into a tar.gz file, like the source tarball > download: > https://www.fossil-scm.org/download.html > The OpenBSD download is now a tarball rather than a ZIP. --

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread Warren Young
On Dec 11, 2015, at 1:38 PM, jungle Boogie wrote: > > Man page for tar: > http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/tar.1?query=tar Scroll down to AUTHORS and HISTORY: it’s not bsdtar. Pity. NetBSD doesn’t ship bsdtar in base, either. DragonFly BSD and FreeBSD do, though. __

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread Joerg Sonnenberger
On Fri, Dec 11, 2015 at 01:54:21PM -0700, Warren Young wrote: > On Dec 11, 2015, at 1:38 PM, jungle Boogie wrote: > > > > Man page for tar: > > http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/tar.1?query=tar > > Scroll down to AUTHORS and HISTORY: it’s not bsdtar. > > Pity. > > Net

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-11 Thread jungle Boogie
On 11 December 2015 at 12:51, Richard Hipp wrote: > On 12/11/15, jungle Boogie wrote: >> Hello, >> >> OpenBSDs base image doesn't come with unzip, so I propose OpenBSD's >> installer be made into a tar.gz file, like the source tarball >> download: >> https://www.fossil-scm.org/download.html >> >

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-12 Thread Andy Bradford
Thus said Warren Young on Fri, 11 Dec 2015 12:57:45 -0700: > gzip-aware tar isn't POSIX, either, One doesn't need gzip-aware tar to handle this situation: gzip -dc fossil-version.tar.gz | (cd location && tar xvf - ) Andy -- TAI64 timestamp: 4000566c5d48 __

Re: [fossil-users] openBSD package download request: zip to tar.gz

2015-12-12 Thread Warren Young
On Dec 12, 2015, at 10:45 AM, Andy Bradford wrote: > > Thus said Warren Young on Fri, 11 Dec 2015 12:57:45 -0700: > >> gzip-aware tar isn't POSIX, either, > > One doesn't need gzip-aware tar to handle this situation: > > gzip -dc fossil-version.tar.gz | (cd location && tar xvf - ) I was using