diff options
author | Mark H Weaver <mhw@netris.org> | 2014-07-07 01:19:17 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-07-07 17:17:18 -0400 |
commit | fa40e4d4ec92222fa68cb9694812a310344cc4f0 (patch) | |
tree | 25da6d4853211e7c4438dd79829a016a3afa4795 /gnu/packages/patches/bitlbee-fix-tests.patch | |
parent | 59c51be2900b896d87b2393faecfef732d015e34 (diff) | |
download | guix-fa40e4d4ec92222fa68cb9694812a310344cc4f0.tar.gz |
gnu: bitlbee: Upgrade to 3.2.2.
* gnu/packages/messaging.scm (bitlbee): Upgrade to 3.2.2. Remove patches. Use 'libotr' instead of 'libotr-3'. * gnu/packages/patches/bitlbee-fix-tests.patch: Remove file. * gnu/packages/patches/bitlbee-memset-fix.patch: Remove file. * gnu-system.am (dist_patch_DATA): Remove patches.
Diffstat (limited to 'gnu/packages/patches/bitlbee-fix-tests.patch')
-rw-r--r-- | gnu/packages/patches/bitlbee-fix-tests.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/gnu/packages/patches/bitlbee-fix-tests.patch b/gnu/packages/patches/bitlbee-fix-tests.patch deleted file mode 100644 index 52bb6c605d..0000000000 --- a/gnu/packages/patches/bitlbee-fix-tests.patch +++ /dev/null @@ -1,33 +0,0 @@ -Pass the correct number of arguments to 'nick_strip' and 'nick_ok' in tests. - -Patch by Mark H Weaver <mhw@netris.org>. - ---- bitlbee/tests/check_nick.c.orig 2013-11-27 17:54:54.000000000 -0500 -+++ bitlbee/tests/check_nick.c 2014-03-05 23:41:45.761230468 -0500 -@@ -30,7 +30,7 @@ START_TEST(test_nick_strip) - for (i = 0; get[i]; i++) { - char copy[60]; - strcpy(copy, get[i]); -- nick_strip(copy); -+ nick_strip(NULL, copy); - fail_unless (strcmp(copy, expected[i]) == 0, - "(%d) nick_strip broken: %s -> %s (expected: %s)", - i, get[i], copy, expected[i]); -@@ -45,7 +45,7 @@ START_TEST(test_nick_ok_ok) - int i; - - for (i = 0; nicks[i]; i++) { -- fail_unless (nick_ok(nicks[i]) == 1, -+ fail_unless (nick_ok(NULL, nicks[i]) == 1, - "nick_ok() failed: %s", nicks[i]); - } - } -@@ -58,7 +58,7 @@ START_TEST(test_nick_ok_notok) - int i; - - for (i = 0; nicks[i]; i++) { -- fail_unless (nick_ok(nicks[i]) == 0, -+ fail_unless (nick_ok(NULL, nicks[i]) == 0, - "nick_ok() succeeded for invalid: %s", nicks[i]); - } - } |