diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-01 17:26:53 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-01 17:26:53 +0100 |
commit | 3ce3c4fd596debefbad77328a9b62a39eccf753c (patch) | |
tree | 8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/roundup/roundup-avoid-bash-syntax-in-tests.patch | |
parent | 62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff) | |
download | aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2 aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz |
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to
periodically purge aports in unmaintained that haven't been touched
in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/roundup/roundup-avoid-bash-syntax-in-tests.patch')
-rw-r--r-- | unmaintained/roundup/roundup-avoid-bash-syntax-in-tests.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/unmaintained/roundup/roundup-avoid-bash-syntax-in-tests.patch b/unmaintained/roundup/roundup-avoid-bash-syntax-in-tests.patch deleted file mode 100644 index ecd2f076ea..0000000000 --- a/unmaintained/roundup/roundup-avoid-bash-syntax-in-tests.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/roundup-5-test.sh b/roundup-5-test.sh -index 250a586..8e8739a 100644 ---- a/roundup-5-test.sh -+++ b/roundup-5-test.sh -@@ -87,10 +87,10 @@ it_runs_after_if_a_test_fails_part_2() { - - # Output the correct return code of a failing command of a testcase. - it_outputs_the_return_code_7() { -- function f() { return 42; } -+ f() { return 42; } - x=$(echo asdf) - -- function g() { return 7; } -+ g() { return 7; } - g - } - |