summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Lauwers <blauwers@gentoo.org>2002-12-17 19:47:37 +0000
committerBart Lauwers <blauwers@gentoo.org>2002-12-17 19:47:37 +0000
commit67be5b74d36867637d572e19b2800f540aa5b555 (patch)
tree92c029bea4bf932d29b4a4982808c050377883b7 /net-misc/rdiff-backup/files
parentfixed header (changed dev-util/usermode to sys-apps/usermode-utilities) (diff)
downloadgentoo-2-67be5b74d36867637d572e19b2800f540aa5b555.tar.gz
gentoo-2-67be5b74d36867637d572e19b2800f540aa5b555.tar.bz2
gentoo-2-67be5b74d36867637d572e19b2800f540aa5b555.zip
Added patch per Bug#9945
Diffstat (limited to 'net-misc/rdiff-backup/files')
-rw-r--r--net-misc/rdiff-backup/files/digest-rdiff-backup-0.10.1-r11
-rw-r--r--net-misc/rdiff-backup/files/rpath.patch21
2 files changed, 22 insertions, 0 deletions
diff --git a/net-misc/rdiff-backup/files/digest-rdiff-backup-0.10.1-r1 b/net-misc/rdiff-backup/files/digest-rdiff-backup-0.10.1-r1
new file mode 100644
index 000000000000..be191c449729
--- /dev/null
+++ b/net-misc/rdiff-backup/files/digest-rdiff-backup-0.10.1-r1
@@ -0,0 +1 @@
+MD5 813bae3ff36abba30e916c8571dc8837 rdiff-backup-0.10.1.tar.gz 110139
diff --git a/net-misc/rdiff-backup/files/rpath.patch b/net-misc/rdiff-backup/files/rpath.patch
new file mode 100644
index 000000000000..aecd5834a01e
--- /dev/null
+++ b/net-misc/rdiff-backup/files/rpath.patch
@@ -0,0 +1,21 @@
+--- rdiff_backup/rpath.py.ORG 2002-12-17 20:32:23.000000000 +0100
++++ rdiff_backup/rpath.py 2002-12-17 20:33:34.000000000 +0100
+@@ -209,7 +209,9 @@
+ """
+ assert rpath.conn is Globals.local_connection
+ s = socket.socket(socket.AF_UNIX)
+- s.bind(rpath.path)
++ try: s.bind(rpath.path)
++ except socket.error, exc:
++ raise SkipFileException("Socket error: " + str(exc))
+
+ def gzip_open_local_read(rpath):
+ """Return open GzipFile. See security note directly above"""
+@@ -838,6 +840,7 @@
+ from lazy import *
+ from selection import *
+ from destructive_stepping import *
++from highlevel import *
+
+ class RpathDeleter(ITRBranch):
+ """Delete a directory. Called by RPath.delete()"""