summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn N. Laliberte <allanonjl@gentoo.org>2006-11-02 21:07:59 +0000
committerJohn N. Laliberte <allanonjl@gentoo.org>2006-11-02 21:07:59 +0000
commit6929ed96fa59823fc9f3dd8f45611cf16b8d5b49 (patch)
treeb8b98b9222b59d6519700a3cc5f277afe9de9c95 /net-misc/logjam/files
parentcleanup old versions, add glib to dep list, fixes #153276 (diff)
downloadgentoo-2-6929ed96fa59823fc9f3dd8f45611cf16b8d5b49.tar.gz
gentoo-2-6929ed96fa59823fc9f3dd8f45611cf16b8d5b49.tar.bz2
gentoo-2-6929ed96fa59823fc9f3dd8f45611cf16b8d5b49.zip
cleanup old versions, add glib to dep list, fixes #153276
(Portage version: 2.1.2_pre3-r8) (Unsigned Manifest commit)
Diffstat (limited to 'net-misc/logjam/files')
-rw-r--r--net-misc/logjam/files/digest-logjam-4.2.21
-rw-r--r--net-misc/logjam/files/digest-logjam-4.3.21
-rw-r--r--net-misc/logjam/files/digest-logjam-4.4.01
-rw-r--r--net-misc/logjam/files/digest-logjam-4.4.0-r11
-rw-r--r--net-misc/logjam/files/digest-logjam-4.5.11
-rw-r--r--net-misc/logjam/files/logjam-4.4.0-gcc3.4.patch10
-rw-r--r--net-misc/logjam/files/logjam-4.4.0-offline-sync.patch15
7 files changed, 0 insertions, 30 deletions
diff --git a/net-misc/logjam/files/digest-logjam-4.2.2 b/net-misc/logjam/files/digest-logjam-4.2.2
deleted file mode 100644
index 0c1399df0c6b..000000000000
--- a/net-misc/logjam/files/digest-logjam-4.2.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b279c49c5538c509228ef6eca038a510 logjam-4.2.2.tar.gz 489337
diff --git a/net-misc/logjam/files/digest-logjam-4.3.2 b/net-misc/logjam/files/digest-logjam-4.3.2
deleted file mode 100644
index ca5ae4adca00..000000000000
--- a/net-misc/logjam/files/digest-logjam-4.3.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 59030225dc77be2d58d5cefe0935d61d logjam-4.3.2.tar.bz2 601433
diff --git a/net-misc/logjam/files/digest-logjam-4.4.0 b/net-misc/logjam/files/digest-logjam-4.4.0
deleted file mode 100644
index cb53d3285ca6..000000000000
--- a/net-misc/logjam/files/digest-logjam-4.4.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7ff366dee32d354338132bfd5c5adb46 logjam-4.4.0.tar.bz2 604310
diff --git a/net-misc/logjam/files/digest-logjam-4.4.0-r1 b/net-misc/logjam/files/digest-logjam-4.4.0-r1
deleted file mode 100644
index cb53d3285ca6..000000000000
--- a/net-misc/logjam/files/digest-logjam-4.4.0-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7ff366dee32d354338132bfd5c5adb46 logjam-4.4.0.tar.bz2 604310
diff --git a/net-misc/logjam/files/digest-logjam-4.5.1 b/net-misc/logjam/files/digest-logjam-4.5.1
deleted file mode 100644
index fe4582e9525d..000000000000
--- a/net-misc/logjam/files/digest-logjam-4.5.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ccae70dc36644cd1529c581443484ebe logjam-4.5.1.tar.bz2 748283
diff --git a/net-misc/logjam/files/logjam-4.4.0-gcc3.4.patch b/net-misc/logjam/files/logjam-4.4.0-gcc3.4.patch
deleted file mode 100644
index 439eb5403f1e..000000000000
--- a/net-misc/logjam/files/logjam-4.4.0-gcc3.4.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/network-libxml.c 2004-05-30 14:25:20.659296496 -0400
-+++ src/network-libxml.c 2004-05-30 14:25:47.695186416 -0400
-@@ -73,6 +73,7 @@
- _("File not found."));
- goto out;
- default:
-+ break;
- }
-
- response = g_string_new(NULL);
diff --git a/net-misc/logjam/files/logjam-4.4.0-offline-sync.patch b/net-misc/logjam/files/logjam-4.4.0-offline-sync.patch
deleted file mode 100644
index 5d010136d36a..000000000000
--- a/net-misc/logjam/files/logjam-4.4.0-offline-sync.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- protocol/liblivejournal/livejournal/sync.c.old Fri Jun 18 14:57:51 2004
-+++ protocol/liblivejournal/livejournal/sync.c Fri Jun 18 14:58:20 2004
-@@ -33,8 +33,10 @@
- static int
- entry_date_compare_func(const void *a, const void *b) {
- /* struct tm* cast needed to un-constify the times passed to mktime. */
-- const LJEntry *entrya = a; time_t timea = mktime((struct tm*)&entrya->time);
-- const LJEntry *entryb = b; time_t timeb = mktime((struct tm*)&entryb->time);
-+ const LJEntry *entrya = *(LJEntry **)a;
-+ const LJEntry *entryb = *(LJEntry **)b;
-+ time_t timea = mktime((struct tm*)&entrya->time);
-+ time_t timeb = mktime((struct tm*)&entryb->time);
- /* mktime actually converts the times to local time, which isn't
- * quite correct, but since we're comparing times directly like this
- * it should still sort the same way and timegm is potentially slower. */