From 8b6596f187991bfe593096f79706cf00558586ba Mon Sep 17 00:00:00 2001 From: "Michael Mair-Keimberger (asterix)" Date: Fri, 20 Jan 2017 07:38:17 +0100 Subject: net-mail/notmuch: remove unused patch/file Closes: https://github.com/gentoo/gentoo/pull/3558 --- ...01-test-exit-with-nonzero-value-when-not-.patch | 56 ---------------------- net-mail/notmuch/files/60notmuch-pick-gentoo.el | 1 - 2 files changed, 57 deletions(-) delete mode 100644 net-mail/notmuch/files/0.16-0001-test-exit-with-nonzero-value-when-not-.patch delete mode 100644 net-mail/notmuch/files/60notmuch-pick-gentoo.el (limited to 'net-mail') 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 -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) -- cgit v1.2.3-65-gdbad