summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2005-08-10 22:05:59 +0000
committerDaniel Black <dragonheart@gentoo.org>2005-08-10 22:05:59 +0000
commitab04fd268d94feba07c5725f99f67f0ea3f66461 (patch)
tree4413cb8874d7a1822e46f3540ab551499319d9ca /app-arch/sharutils/files
parentAdd makedepend-location.patch to stop mesa from looking in /usr/X11R6/bin. (diff)
downloadgentoo-2-ab04fd268d94feba07c5725f99f67f0ea3f66461.tar.gz
gentoo-2-ab04fd268d94feba07c5725f99f67f0ea3f66461.tar.bz2
gentoo-2-ab04fd268d94feba07c5725f99f67f0ea3f66461.zip
version bump as per bug #101904
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-arch/sharutils/files')
-rw-r--r--app-arch/sharutils/files/digest-sharutils-4.4-r11
-rw-r--r--app-arch/sharutils/files/digest-sharutils-4.51
-rw-r--r--app-arch/sharutils/files/sharutils-4.4-r1-tempfile.patch84
-rw-r--r--app-arch/sharutils/files/sharutils-4.4-uninitalisedvar.patch11
4 files changed, 1 insertions, 96 deletions
diff --git a/app-arch/sharutils/files/digest-sharutils-4.4-r1 b/app-arch/sharutils/files/digest-sharutils-4.4-r1
deleted file mode 100644
index ef8161e1f768..000000000000
--- a/app-arch/sharutils/files/digest-sharutils-4.4-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 0ad657c2dd04793b1dcd8b8135cd6395 sharutils-4.4.tar.bz2 634676
diff --git a/app-arch/sharutils/files/digest-sharutils-4.5 b/app-arch/sharutils/files/digest-sharutils-4.5
new file mode 100644
index 000000000000..a1637a4bdd65
--- /dev/null
+++ b/app-arch/sharutils/files/digest-sharutils-4.5
@@ -0,0 +1 @@
+MD5 72d6072152c67af299e7a193bb78f258 sharutils-4.5.tar.bz2 634934
diff --git a/app-arch/sharutils/files/sharutils-4.4-r1-tempfile.patch b/app-arch/sharutils/files/sharutils-4.4-r1-tempfile.patch
deleted file mode 100644
index 0abfa71e6ec9..000000000000
--- a/app-arch/sharutils/files/sharutils-4.4-r1-tempfile.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-Index: doc/shar.1
-===================================================================
-RCS file: /cvsroot/sharutils/sharutils/doc/shar.1,v
-retrieving revision 1.3
-diff -b -B -u -p -r1.3 shar.1
---- doc/shar.1 1 Jul 2005 13:44:51 -0000 1.3
-+++ doc/shar.1 30 Jul 2005 17:08:20 -0000
-@@ -48,7 +48,9 @@ switch is especially useful when the com
- the list of files to be packed. For example:
- .nf
-
--find . \-type f \-print | sort | shar \-S \-Z \-L50 \-o /tmp/big
-+find . \-type f \-print | \\
-+ sort | \\
-+ shar \-S \-Z \-L50 \-o /somewhere/big
-
- .fi
- If \f2\-p\f1 is specified on the command line, then the options
-Index: doc/sharutils.texi
-===================================================================
-RCS file: /cvsroot/sharutils/sharutils/doc/sharutils.texi,v
-retrieving revision 1.7
-diff -b -B -u -p -r1.7 sharutils.texi
---- doc/sharutils.texi 23 Jan 2005 18:49:46 -0000 1.7
-+++ doc/sharutils.texi 30 Jul 2005 17:08:20 -0000
-@@ -279,7 +279,8 @@ This switch is especially useful when th
- the list of files to be packed. For example:
-
- @example
--find . -type f -print | shar -S -o /tmp/big.shar
-+find . -type f -print | \
-+ shar -S -o /somewhere/big.shar
- @end example
-
- If @code{-p} is specified on the command line, then the options
-Index: src/remsync.in
-===================================================================
-RCS file: /cvsroot/sharutils/sharutils/src/remsync.in,v
-retrieving revision 1.2
-diff -b -B -u -p -r1.2 remsync.in
---- src/remsync.in 7 Jun 2005 21:54:04 -0000 1.2
-+++ src/remsync.in 30 Jul 2005 17:08:21 -0000
-@@ -3,6 +3,8 @@
- eval "exec @PERL@ -S $0 $*"
- if $running_under_some_shell;
-
-+use File::Temp qw/ :mktemp /;
-+
- # Synchronization tool for remote directories.
- # Copyright (C) 1994 Free Software Foundation, Inc.
- # François Pinard <pinard@iro.umontreal.ca>, 1994.
-@@ -1785,8 +1787,10 @@ sub maybe_study_files
- }
- }
-
-+ $findtempfile = mktemp( "./remsync.XXXXXX" );
-+
- open (SCAN,
-- "find$list -type f 2> /tmp/$$.find | xargs -r $checksum_command |")
-+ "find$list -type f 2> $findtempfile | xargs -r $checksum_command |")
- || &interrupt ('Cannot launch program `find\'');
-
- # Process each existing file in turn.
-@@ -1815,9 +1819,9 @@ sub maybe_study_files
- }
- close SCAN;
-
-- # Clean out scanning for inexisting files.
-+ # Clean out scanning for non-existing files.
-
-- open (SCAN, "/tmp/$$.find");
-+ open (SCAN, $findtempfile);
- while (<SCAN>)
- {
- chop;
-@@ -1843,7 +1847,7 @@ To get rid of this warning, delete the s
- }
- }
- close SCAN;
-- unlink "/tmp/$$.find";
-+ unlink $findtempfile;
-
- $study_files = 0;
- }
diff --git a/app-arch/sharutils/files/sharutils-4.4-uninitalisedvar.patch b/app-arch/sharutils/files/sharutils-4.4-uninitalisedvar.patch
deleted file mode 100644
index 1cf0ce120ddd..000000000000
--- a/app-arch/sharutils/files/sharutils-4.4-uninitalisedvar.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/unshar.c.orig 2005-08-03 07:53:51.000000000 +1000
-+++ src/unshar.c 2005-08-03 07:55:25.000000000 +1000
-@@ -358,7 +358,7 @@
- char *const *argv;
- {
- FILE *file;
-- char* name_buffer;
-+ char* name_buffer=NULL;
- int optchar;
-
- program_name = argv[0];