summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-20 07:38:17 +0100
committerDavid Seifert <soap@gentoo.org>2017-01-20 21:20:40 +0100
commit8b6596f187991bfe593096f79706cf00558586ba (patch)
tree53237c1f35c18602fa10e6ff35032e8b03a1d79d /net-mail
parentprofiles/targets: Clean obsolete package.use* entries (diff)
downloadgentoo-8b6596f187991bfe593096f79706cf00558586ba.tar.gz
gentoo-8b6596f187991bfe593096f79706cf00558586ba.tar.bz2
gentoo-8b6596f187991bfe593096f79706cf00558586ba.zip
net-mail/notmuch: remove unused patch/file
Closes: https://github.com/gentoo/gentoo/pull/3558
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/notmuch/files/0.16-0001-test-exit-with-nonzero-value-when-not-.patch56
-rw-r--r--net-mail/notmuch/files/60notmuch-pick-gentoo.el1
2 files changed, 0 insertions, 57 deletions
diff --git a/net-mail/notmuch/files/0.16-0001-test-exit-with-nonzero-value-when-not-.patch b/net-mail/notmuch/files/0.16-0001-test-exit-with-nonzero-value-when-not-.patch
deleted file mode 100644
index f66a12497320..000000000000
--- a/net-mail/notmuch/files/0.16-0001-test-exit-with-nonzero-value-when-not-.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From c1f05bfb791e82776f5759e38c758cedd7e6190f Mon Sep 17 00:00:00 2001
-From: Tomi Ollila <tomi.ollila@iki.fi>
-Date: Sun, 8 Sep 2013 18:53:30 +0300
-Subject: [PATCH] test: exit with nonzero value when not all tests completed
- successfully
-
-If any of the tests in our test system is not passing the execution
-of the test suite completes with nonzero exit value.
-
-It is better to rely on the exit value of the test system instead
-of some arbitrary strings in test output (or use both).
----
- test/aggregate-results.sh | 9 +++++++++
- test/notmuch-test | 3 +++
- 2 files changed, 12 insertions(+)
-
-diff --git a/test/aggregate-results.sh b/test/aggregate-results.sh
-index 732d6ca..b016edb 100755
---- a/test/aggregate-results.sh
-+++ b/test/aggregate-results.sh
-@@ -1,5 +1,7 @@
- #!/usr/bin/env bash
-
-+set -eu
-+
- fixed=0
- success=0
- failed=0
-@@ -79,3 +81,10 @@ if [ "$skipped" != "0" ]; then
- tests=$(pluralize "test" $skipped)
- echo "$skipped $tests skipped."
- fi
-+
-+if [ $success -gt 0 -a $fixed -eq 0 -a $failed -eq 0 -a $skipped -eq 0 ]
-+then
-+ exit 0
-+else
-+ exit 1
-+fi
-diff --git a/test/notmuch-test b/test/notmuch-test
-index 6db7979..aa28bb0 100755
---- a/test/notmuch-test
-+++ b/test/notmuch-test
-@@ -97,6 +97,9 @@ trap - HUP INT TERM
-
- # Report results
- ./aggregate-results.sh test-results/*
-+ev=$?
-
- # Clean up
- rm -rf test-results corpus.mail
-+
-+exit $ev
---
-1.8.3.2
-
diff --git a/net-mail/notmuch/files/60notmuch-pick-gentoo.el b/net-mail/notmuch/files/60notmuch-pick-gentoo.el
deleted file mode 100644
index 84ef4b4d2293..000000000000
--- a/net-mail/notmuch/files/60notmuch-pick-gentoo.el
+++ /dev/null
@@ -1 +0,0 @@
-(autoload 'notmuch-pick "notmuch-pick" "Run notmuch pick with the given `query' and display the results" t)