summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hendrikx (whyscream) <tom@whyscream.net>2010-03-11 20:34:55 +0000
committerTom Hendrikx (whyscream) <tom@whyscream.net>2010-03-11 20:34:55 +0000
commit520dfaa6831421309d25dc19d491ecdf062ed408 (patch)
tree8847cebea8e6f2bddbc57008fc8b55b088330c6e /app-backup/rdup/files/rdup-1.1.0-fix-gnupg-tests.patch
parentdev-libs/liblouis: Remove dublicated Changelog entry (diff)
downloadsunrise-520dfaa6831421309d25dc19d491ecdf062ed408.tar.gz
sunrise-520dfaa6831421309d25dc19d491ecdf062ed408.tar.bz2
sunrise-520dfaa6831421309d25dc19d491ecdf062ed408.zip
app-backup/rdup: version bump, added support for USE=debug
svn path=/sunrise/; revision=10279
Diffstat (limited to 'app-backup/rdup/files/rdup-1.1.0-fix-gnupg-tests.patch')
-rw-r--r--app-backup/rdup/files/rdup-1.1.0-fix-gnupg-tests.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/app-backup/rdup/files/rdup-1.1.0-fix-gnupg-tests.patch b/app-backup/rdup/files/rdup-1.1.0-fix-gnupg-tests.patch
deleted file mode 100644
index 7399997ce..000000000
--- a/app-backup/rdup/files/rdup-1.1.0-fix-gnupg-tests.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From: Miek Gieben <miek@miek.nl>
-Date: Wed, 27 Jan 2010 17:15:05 +0000 (+0100)
-Subject: exit when no .gnupg is found
-X-Git-Url: http://www.miek.nl/cgi-bin/gitweb.cgi?p=rdup.git;a=commitdiff_plain;h=4868641f45c800cd7372bb669cbe004dd70377ee;hp=7d7bed8ccbc40b63debf6f7e3a61237ddde422ad
-
-exit when no .gnupg is found
----
-
-diff --git a/testsuite/rdup/rdup.simple.helper b/testsuite/rdup/rdup.simple.helper
-index eaafc02..7c61192 100755
---- a/testsuite/rdup/rdup.simple.helper
-+++ b/testsuite/rdup/rdup.simple.helper
-@@ -9,6 +9,10 @@ if ! which gpg 2>/dev/null 1>&2; then
- exit 0
- fi
-
-+if [ ! -d ~/.gnupg ]; then
-+ exit 0
-+fi
-+
- # test rdup-simple with mcrypt and path enryption
- rm -f ~/.rdup/list.$(uname -n).tmp
- rm -f ~/.rdup/timestamp.$(uname -n).tmp
-diff --git a/testsuite/rdup/rdup.simple3.helper b/testsuite/rdup/rdup.simple3.helper
-index 79beaea..8e6c76d 100755
---- a/testsuite/rdup/rdup.simple3.helper
-+++ b/testsuite/rdup/rdup.simple3.helper
-@@ -9,6 +9,10 @@ if ! which gpg 2>/dev/null 1>&2; then
- exit 0
- fi
-
-+if [ ! -d ~/.gnupg ]; then
-+ exit 0
-+fi
-+
- # test rdup-simple with mcrypt and path enryption
- rm -f ~/.rdup/list.$(uname -n).tmp
- rm -f ~/.rdup/timestamp.$(uname -n).tmp
-