diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-10-03 12:09:44 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-10-03 12:09:44 +0000 |
commit | e4602fdeb64caaca028796eec98ffdc2ac241486 (patch) | |
tree | c6caf96226dfe5502e1df6d6695c0cfd6a525f49 /dev-util/shtool/files | |
parent | Do not install generic INSTALL document. (diff) | |
download | historical-e4602fdeb64caaca028796eec98ffdc2ac241486.tar.gz historical-e4602fdeb64caaca028796eec98ffdc2ac241486.tar.bz2 historical-e4602fdeb64caaca028796eec98ffdc2ac241486.zip |
Version bump; tidy old ebuilds/patches.
Package-Manager: portage-2.0.53_rc3
Diffstat (limited to 'dev-util/shtool/files')
5 files changed, 1 insertions, 43 deletions
diff --git a/dev-util/shtool/files/digest-shtool-2.0.1-r1 b/dev-util/shtool/files/digest-shtool-2.0.1-r1 deleted file mode 100644 index 121f547af3f2..000000000000 --- a/dev-util/shtool/files/digest-shtool-2.0.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 b434ed054fed53af682b52489c7931d4 shtool-2.0.1.tar.gz 91315 diff --git a/dev-util/shtool/files/digest-shtool-2.0.1-r2 b/dev-util/shtool/files/digest-shtool-2.0.1-r2 deleted file mode 100644 index 121f547af3f2..000000000000 --- a/dev-util/shtool/files/digest-shtool-2.0.1-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 b434ed054fed53af682b52489c7931d4 shtool-2.0.1.tar.gz 91315 diff --git a/dev-util/shtool/files/digest-shtool-2.0.3 b/dev-util/shtool/files/digest-shtool-2.0.3 new file mode 100644 index 000000000000..142306b169bb --- /dev/null +++ b/dev-util/shtool/files/digest-shtool-2.0.3 @@ -0,0 +1 @@ +MD5 315596dfc7b728af6f83ec44c40eae46 shtool-2.0.3.tar.gz 92148 diff --git a/dev-util/shtool/files/shtool-2.0.1-fix-insecure-tmp-creation.diff b/dev-util/shtool/files/shtool-2.0.1-fix-insecure-tmp-creation.diff deleted file mode 100644 index f3611e27a30c..000000000000 --- a/dev-util/shtool/files/shtool-2.0.1-fix-insecure-tmp-creation.diff +++ /dev/null @@ -1,15 +0,0 @@ -diff --exclude='*~' --exclude='.*' -I '$Id:' -urN shtool-2.0.1.orig/sh.common shtool-2.0.1/sh.common ---- shtool-2.0.1.orig/sh.common 2005-05-24 18:47:37.000000000 -0400 -+++ shtool-2.0.1/sh.common 2005-05-24 18:51:21.000000000 -0400 -@@ -168,10 +168,7 @@ - else - tmpdir="/tmp" - fi -- tmpfile="$tmpdir/.shtool.$$" -- rm -f $tmpfile >/dev/null 2>&1 -- touch $tmpfile -- chmod 600 $tmpfile -+ tmpfile=`mktemp "$tmpdir/.shtool.XXXXXX"` - fi - - # utility function: map string to lower case diff --git a/dev-util/shtool/files/shtool-2.0.1-r2-fix-insecure-tmp-creation.diff b/dev-util/shtool/files/shtool-2.0.1-r2-fix-insecure-tmp-creation.diff deleted file mode 100644 index 115629468bc2..000000000000 --- a/dev-util/shtool/files/shtool-2.0.1-r2-fix-insecure-tmp-creation.diff +++ /dev/null @@ -1,26 +0,0 @@ ---- sh.common.orig 2004-04-07 08:50:21.000000000 +0100 -+++ sh.common 2005-05-29 20:39:20.854878600 +0100 -@@ -168,7 +168,13 @@ - else - tmpdir="/tmp" - fi -- tmpfile="$tmpdir/.shtool.$$" -+ if mkdir "$tmpdir/.shtool.$$"; then -+ tmpfile="$tmpdir/.shtool.$$/shtool.tmp" -+ else -+ echo "$msgprefix:Error: failed to create temporary file" 1>&2 -+ exit 1 -+ fi -+ tmpfile="$tmpdir/.shtool.$$/shtool.tmp" - rm -f $tmpfile >/dev/null 2>&1 - touch $tmpfile - chmod 600 $tmpfile -@@ -188,7 +194,7 @@ - shtool_exit () { - rc="$1" - if [ ".$gen_tmpfile" = .yes ]; then -- rm -f $tmpfile >/dev/null 2>&1 || true -+ rm -fr "$tmpdir/.shtool.$$" >/dev/null 2>&1 || true - fi - exit $rc - } |