update to 1.3.12
This commit is contained in:
parent
22e097d705
commit
22bd6d80ee
@ -1 +1 @@
|
||||
gzip-1.3.11.tar.gz
|
||||
gzip-1.3.12.tar.gz
|
||||
|
@ -1,25 +1,25 @@
|
||||
--- gzip-1.3.9/znew.in.owl-tmp 2006-12-09 05:25:56.000000000 +0100
|
||||
+++ gzip-1.3.9/znew.in 2007-01-15 11:40:51.000000000 +0100
|
||||
--- gzip-1.3.12/znew.in.owl-tmp 2007-06-04 09:15:11.000000000 +0200
|
||||
+++ gzip-1.3.12/znew.in 2007-06-04 09:23:18.000000000 +0200
|
||||
@@ -55,28 +55,27 @@
|
||||
# block is the disk block size (best guess, need not be exact)
|
||||
|
||||
warn="(does not preserve modes and timestamp)"
|
||||
-tmp=/tmp/zfoo.$$
|
||||
-tmp=${TMPDIR-/tmp}/zfoo.$$
|
||||
-set -C
|
||||
-echo hi > $tmp || exit
|
||||
-if test -z "`(${CPMOD-cpmod} $tmp $tmp) 2>&1`"; then
|
||||
- cpmod=${CPMOD-cpmod}
|
||||
+cpmod=
|
||||
+cpmodarg=
|
||||
+if type ${CPMOD:-cpmod} 2>/dev/null; then
|
||||
+ cpmod=${CPMOD:-cpmod}
|
||||
+cpmod=
|
||||
+cpmodarg=
|
||||
+if type ${CPMOD:-cpmod} 2>/dev/null; then
|
||||
+ cpmod=${CPMOD:-cpmod}
|
||||
warn=""
|
||||
fi
|
||||
|
||||
-if test -z "$cpmod" && ${TOUCH-touch} -r $tmp $tmp 2>/dev/null; then
|
||||
- cpmod="${TOUCH-touch}"
|
||||
+if test -z "$cpmod"; then
|
||||
+ cpmod=touch
|
||||
+if test -z "$cpmod"; then
|
||||
+ cpmod=touch
|
||||
cpmodarg="-r"
|
||||
warn="(does not preserve file modes)"
|
||||
fi
|
||||
@ -32,14 +32,14 @@
|
||||
- echo znew: error determining gzip extension
|
||||
- exit 1
|
||||
-fi
|
||||
+case "$GZIP" in
|
||||
+ *-S*) ext=`echo "$GZIP" | sed 's/^.*-S[[:space:]]*\([^[:space:]]*\).*$/\1/'`
|
||||
+ ;;
|
||||
+ *-suffix*) ext=`echo "$GZIP" | sed 's/^.*--suffix=\([^[:space:]]*\).*$/\1/'`
|
||||
+ ;;
|
||||
+ *) ext='.gz'
|
||||
+ ;;
|
||||
+esac
|
||||
+case "$GZIP" in
|
||||
+ *-S*) ext=`echo "$GZIP" | sed 's/^.*-S[[:space:]]*\([^[:space:]]*\).*$/\1/'`
|
||||
+ ;;
|
||||
+ *-suffix*) ext=`echo "$GZIP" | sed 's/^.*--suffix=\([^[:space:]]*\).*$/\1/'`
|
||||
+ ;;
|
||||
+ *) ext='.gz'
|
||||
+ ;;
|
||||
+esac
|
||||
if test "$ext" = ".Z"; then
|
||||
echo znew: cannot use .Z as gzip extension.
|
||||
exit 1
|
@ -1,11 +1,11 @@
|
||||
Summary: The GNU data compression program
|
||||
Name: gzip
|
||||
Version: 1.3.11
|
||||
Version: 1.3.12
|
||||
Release: 1%{?dist}
|
||||
License: GPL
|
||||
Group: Applications/File
|
||||
Source: ftp://alpha.gnu.org/gnu/gzip/gzip-%{version}.tar.gz
|
||||
Patch0: gzip-1.3.9-openbsd-owl-tmp.patch
|
||||
Patch0: gzip-1.3.12-openbsd-owl-tmp.patch
|
||||
Patch1: gzip-1.3.5-zforce.patch
|
||||
Patch3: gzip-1.3.9-stderr.patch
|
||||
Patch4: gzip-1.3.10-zgreppipe.patch
|
||||
@ -91,6 +91,9 @@ fi
|
||||
%{_infodir}/gzip.info*
|
||||
|
||||
%changelog
|
||||
* Mon Jun 4 2007 Ivana Varekova <varekova@redhat.com> - 1.3.12-1
|
||||
- update to 1.3.12
|
||||
|
||||
* Mon Mar 5 2007 Ivana Varekova <varekova@redhat.com> - 1.3.11-1
|
||||
- update to 1.3.11
|
||||
remove uncompress
|
||||
|
Loading…
Reference in New Issue
Block a user