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 Date: 29-Jul-2003 12:23:37
Branch: OPENPKG_1_STABLE Handle: 2003072911233700
Modified files: (Branch: OPENPKG_1_STABLE)
openpkg-src/openpkg HISTORY aux.wrapbin.sh aux.wrapsrc.sh
Log:
MFC: changes since last merge
Summary:
Revision Changes Path
1.19.2.4 +1 -0 openpkg-src/openpkg/HISTORY
1.5.2.3 +2 -2 openpkg-src/openpkg/aux.wrapbin.sh
1.4.2.2 +2 -2 openpkg-src/openpkg/aux.wrapsrc.sh
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/HISTORY
============================================================================
$ cvs diff -u -r1.19.2.3 -r1.19.2.4 HISTORY
--- openpkg-src/openpkg/HISTORY 29 Jul 2003 10:11:42 -0000 1.19.2.3
+++ openpkg-src/openpkg/HISTORY 29 Jul 2003 10:23:37 -0000 1.19.2.4
@@ -2,6 +2,7 @@
2003
====
+20030729 aux.wrap{src,bin}.sh: exit immediately if uudecode cannot be found
20030729 rc: fixed processing of $openpkg_rc_def (requires pre-inclusion of rc.conf)
20030729 fixed nasty filedescriptor leakage in RPM on script execution
20030728 upgraded to cURL 7.10.6
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/aux.wrapbin.sh
============================================================================
$ cvs diff -u -r1.5.2.2 -r1.5.2.3 aux.wrapbin.sh
--- openpkg-src/openpkg/aux.wrapbin.sh 24 Jul 2003 20:41:59 -0000 1.5.2.2
+++ openpkg-src/openpkg/aux.wrapbin.sh 29 Jul 2003 10:23:37 -0000 1.5.2.3
@@ -114,14 +114,14 @@
fi
# extract installation files
-uudecode $f
+uudecode $f || exit 1
cat $tgz | (cd $prefix; tar x${v}f -)
rm -f $tgz >/dev/null 2>&1
if [ ".$cusr" = .root ]; then
( cd $prefix || exit 1
chown -R -h $musr . >/dev/null 2>&1 || true
chgrp -R -h $mgrp . >/dev/null 2>&1 || true
- )
+ ) || exit 1
fi
echo "$0: installation done."
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/aux.wrapsrc.sh
============================================================================
$ cvs diff -u -r1.4.2.1 -r1.4.2.2 aux.wrapsrc.sh
--- openpkg-src/openpkg/aux.wrapsrc.sh 24 Jul 2003 20:41:59 -0000 1.4.2.1
+++ openpkg-src/openpkg/aux.wrapsrc.sh 29 Jul 2003 10:23:37 -0000 1.4.2.2
@@ -78,7 +78,7 @@
# extract the tarball
echo "$me: extracting to $dir..."
-uudecode $me
+uudecode $me || exit 1
rm -rf $dir >/dev/null 2>&1
mkdir $dir || exit 1
cat $tgz | (cd $dir; tar x${v}f - 2>/dev/null)
@@ -86,7 +86,7 @@
( cd $dir
chown -R -h $cusr . >/dev/null 2>&1 || true
chgrp -R -h $cgrp . >/dev/null 2>&1 || true
- )
+ ) || exit 1
fi
echo "$me: extraction done."
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]