diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-04-10 14:11:40 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-04-10 14:11:40 +0000 |
commit | 82091e695a2388c9810aa90a23676cef79bd91a8 (patch) | |
tree | d3e70b8f1e07243afe5da1af01cff6d920ab3b29 /net-irc/ezbounce/files | |
parent | Added patch for uclibc. The patch is already included upstream and fixed in (diff) | |
download | historical-82091e695a2388c9810aa90a23676cef79bd91a8.tar.gz historical-82091e695a2388c9810aa90a23676cef79bd91a8.tar.bz2 historical-82091e695a2388c9810aa90a23676cef79bd91a8.zip |
Version bump, drop old
Package-Manager: portage-2.1.2.3
Diffstat (limited to 'net-irc/ezbounce/files')
-rw-r--r-- | net-irc/ezbounce/files/digest-ezbounce-1.04a | 3 | ||||
-rw-r--r-- | net-irc/ezbounce/files/digest-ezbounce-1.04c | 3 | ||||
-rw-r--r-- | net-irc/ezbounce/files/ezbounce-1.04a-c++.patch | 23 | ||||
-rw-r--r-- | net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch | 22 |
4 files changed, 3 insertions, 48 deletions
diff --git a/net-irc/ezbounce/files/digest-ezbounce-1.04a b/net-irc/ezbounce/files/digest-ezbounce-1.04a deleted file mode 100644 index daf2d53ac779..000000000000 --- a/net-irc/ezbounce/files/digest-ezbounce-1.04a +++ /dev/null @@ -1,3 +0,0 @@ -MD5 f214fbd8ec1d95981639c9e1087436cb ezbounce-1.04a.tar.gz 189147 -RMD160 f71e09914d2c0e289f33af5b284c9ebb3883613d ezbounce-1.04a.tar.gz 189147 -SHA256 ab2b7f9c4b9083e9bda93da2cd1c219c9eb97af4900ef449afc630153ecd5db0 ezbounce-1.04a.tar.gz 189147 diff --git a/net-irc/ezbounce/files/digest-ezbounce-1.04c b/net-irc/ezbounce/files/digest-ezbounce-1.04c new file mode 100644 index 000000000000..e4e2e8f364a0 --- /dev/null +++ b/net-irc/ezbounce/files/digest-ezbounce-1.04c @@ -0,0 +1,3 @@ +MD5 d3cc3bbd162a0ba7d22a0a9fc629bfd6 ezbounce-1.04c.tar.gz 192630 +RMD160 b5c35757a5b6cfab26177f3dcadd3aa0d1e3caac ezbounce-1.04c.tar.gz 192630 +SHA256 5be7b903e3682aee9d1758f60957486e4aa08da717fc763caab1415454eaebd8 ezbounce-1.04c.tar.gz 192630 diff --git a/net-irc/ezbounce/files/ezbounce-1.04a-c++.patch b/net-irc/ezbounce/files/ezbounce-1.04a-c++.patch deleted file mode 100644 index a40f078e0040..000000000000 --- a/net-irc/ezbounce/files/ezbounce-1.04a-c++.patch +++ /dev/null @@ -1,23 +0,0 @@ -Fix some broken C++ code ... __list_iter doesn't implement get(), nor -does __list_core implement insert() ... - -http://bugs.gentoo.org/116999 - ---- ezbounce-1.04a/lib/linkedlist.h -+++ ezbounce-1.04a/lib/linkedlist.h -@@ -89,7 +89,6 @@ public: - list_iterator(__list_core * x) : __list_iter(x) { } - T * next() { return (T *) __list_iter::next(); } - T * remove() { return (T *) __list_iter::remove(); } -- T * get(void) { return (T *) __list_iter::get(); } - T * set(int x) { return (T *) __list_iter::set(x); } - }; - -@@ -97,7 +96,6 @@ template <class T> class list : public _ - { - public: - int add(T *x) { return __list_core::add((void *) x); } -- int add(int w, T * x) { return __list_core::insert(w, (void *) x); } - T * get(int idx) { return (T *) __list_core::get(idx); } - T * remove(int idx) { return (T *) __list_core::remove(idx); } - bool remove(T * d) { return __list_core::remove(d); } diff --git a/net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch b/net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch deleted file mode 100644 index 34141fa8611b..000000000000 --- a/net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -ur --new-file ezbounce-1.04a-orig/src/commands.cpp ezbounce-1.04a/src/commands.cpp ---- ezbounce-1.04a-orig/src/commands.cpp 2003-04-26 18:15:41.000000000 -0500 -+++ ezbounce-1.04a/src/commands.cpp 2003-07-01 00:59:51.000000000 -0500 -@@ -1193,7 +1193,7 @@ - c = i.next(); - if (c->checkf(DETACHED)) - { -- char buff[200], timebuff[15]; -+ char timebuff[15]; - if (!hShown) - { - cprintf("Current detached sessions for user %s:\n", u->name); -@@ -1201,8 +1201,7 @@ - hShown = 1; - } - duration(ircproxy_time() - c->detach_time, 0, timebuff, sizeof(timebuff)); -- sprintf(buff,"%-3d %-20s %-20s %s\n", ++idx, c->uinfo.irc->nick, c->uinfo.server, timebuff); -- cprintf(buff); -+ cprintf("%-3d %-20s %-20s %s\n", ++idx, c->uinfo.irc->nick, c->uinfo.server, timebuff); - } - } - if (!hShown) |