OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src openpkg-web Date: 13-Jan-2003 15:09:23
Branch: HEAD Handle: 2003011314092201
Modified files:
openpkg-src/openpkg aux.wrapbin.sh openpkg.boot
openpkg-web news.txt
Log:
drop compression on binary .sh
Summary:
Revision Changes Path
1.5 +1 -23 openpkg-src/openpkg/aux.wrapbin.sh
1.16 +1 -1 openpkg-src/openpkg/openpkg.boot
1.2694 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/aux.wrapbin.sh
============================================================================
$ cvs diff -u -r1.4 -r1.5 aux.wrapbin.sh
--- openpkg-src/openpkg/aux.wrapbin.sh 30 Dec 2002 22:05:34 -0000 1.4
+++ openpkg-src/openpkg/aux.wrapbin.sh 13 Jan 2003 14:09:23 -0000 1.5
@@ -73,27 +73,6 @@
(who am i | cut "-d " -f1) 2>/dev/null ||\
echo $LOGNAME`
-# determine uncompression tool
-uncompress=""
-for t in uncompress gunzip gzip; do
- for p in `IFS=":"; echo . $PATH /bin /sbin /usr/bin /usr/sbin`; do
- if [ -f "$p/$t" ]; then
- uncompress="$p/$t"
- if [ ".$t" = .gzip ]; then
- uncompress="$uncompress -d"
- fi
- break
- fi
- done
- if [ ".$uncompress" != . ]; then
- break
- fi
-done
-if [ ".$uncompress" = . ]; then
- echo "$0:FAILED: required uncompress, gunzip or gzip tool not found"
- exit 1
-fi
-
# perform the installation
echo "$0: installing into $prefix..."
@@ -117,8 +96,7 @@
# extract installation files
uudecode $f
-$uncompress <$tgz |\
-(cd $prefix; tar x${v}f -)
+cat $tgz | (cd $prefix; tar x${v}f -)
rm -f $tgz >/dev/null 2>&1
if [ ".$cusr" = .root ]; then
( cd $prefix || exit 1
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openpkg.boot
============================================================================
$ cvs diff -u -r1.15 -r1.16 openpkg.boot
--- openpkg-src/openpkg/openpkg.boot 30 Dec 2002 22:05:34 -0000 1.15
+++ openpkg-src/openpkg/openpkg.boot 13 Jan 2003 14:09:23 -0000 1.16
@@ -476,7 +476,7 @@
done
( cd $RPM_BUILD_ROOT$prefix;
$RPM_BUILD_ROOT$prefix/lib/openpkg/tar --no-recursion -cf - $files) |\
-compress | uuencode openpkg-$v.$t.tar.Z >>$dstdir/openpkg-$v.$t.sh
+uuencode openpkg-$v.$t.tar.Z >>$dstdir/openpkg-$v.$t.sh
# cleanup
echo "++ cleaning up"
@@ .
patch -p0 <<'@@ .'
Index: openpkg-web/news.txt
============================================================================
$ cvs diff -u -r1.2693 -r1.2694 news.txt
--- openpkg-web/news.txt 13 Jan 2003 13:57:53 -0000 1.2693
+++ openpkg-web/news.txt 13 Jan 2003 14:09:22 -0000 1.2694
@@ -1,3 +1,4 @@
+13-Jan-2003: Upgraded package: P<openpkg-20030113-20030113>
13-Jan-2003: Upgraded package: P<bind8-8.3.4-20030113>
13-Jan-2003: Upgraded package: P<gentle-97-20030113>
13-Jan-2003: Upgraded package: P<as-cui-0.5.6-20030113>
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]