diff options
author | tsarna <tsarna> | 2000-10-22 20:04:29 +0000 |
---|---|---|
committer | tsarna <tsarna> | 2000-10-22 20:04:29 +0000 |
commit | 56108769ad6950eb8fcd39c192b95b01bd4ec917 (patch) | |
tree | 54ca27aca6acfa3d1aa9b8f80fdebada0168e7e8 | |
parent | fcb0de9be8d5f4972e60c7d49876b547d8fe2bec (diff) | |
download | pkgsrc-56108769ad6950eb8fcd39c192b95b01bd4ec917.tar.gz |
nuke no longer needed patches
-rw-r--r-- | print/py-reportlab/files/patch-sum | 4 | ||||
-rw-r--r-- | print/py-reportlab/patches/patch-aa | 9 | ||||
-rw-r--r-- | print/py-reportlab/patches/patch-ab | 20 |
3 files changed, 0 insertions, 33 deletions
diff --git a/print/py-reportlab/files/patch-sum b/print/py-reportlab/files/patch-sum deleted file mode 100644 index f4066715b65..00000000000 --- a/print/py-reportlab/files/patch-sum +++ /dev/null @@ -1,4 +0,0 @@ -$NetBSD: patch-sum,v 1.1 2000/09/03 15:11:37 wiz Exp $ - -MD5 (patch-aa) = 6b7685a47e034f90c99bfef734bd445a -MD5 (patch-ab) = 9ab5bcac1de3dd5aea9f9c7f0e12f8c9 diff --git a/print/py-reportlab/patches/patch-aa b/print/py-reportlab/patches/patch-aa deleted file mode 100644 index 0ee29a3af50..00000000000 --- a/print/py-reportlab/patches/patch-aa +++ /dev/null @@ -1,9 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2000/08/31 22:39:45 tsarna Exp $ - -Build shared modules, not a new python interpreter! - ---- Setup.in.orig Mon Aug 21 17:14:57 2000 -+++ Setup.in Mon Aug 21 17:15:12 2000 -@@ -1 +1,2 @@ -+*shared* - _pdfmetrics _pdfmetrics.c diff --git a/print/py-reportlab/patches/patch-ab b/print/py-reportlab/patches/patch-ab deleted file mode 100644 index 3dc77578f17..00000000000 --- a/print/py-reportlab/patches/patch-ab +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-ab,v 1.1.1.1 2000/08/31 22:39:45 tsarna Exp $ - ---- _pdfmetrics.c.orig Mon Aug 21 17:15:05 2000 -+++ _pdfmetrics.c Mon Aug 21 17:15:52 2000 -@@ -19,13 +19,13 @@ - static eI_t* find_encoding(char* name) - { - eI_t* e = Encodings; -- for(;e;e=e->next) if(!stricmp(name,e->name)) return e; -+ for(;e;e=e->next) if(!strcasecmp(name,e->name)) return e; - return (eI_t*)0; - } - - static fI_t* find_font(char* name, fI_t* f) - { -- for(;f;f=f->next) if(!stricmp(name,f->name)) return f; -+ for(;f;f=f->next) if(!strcasecmp(name,f->name)) return f; - return (fI_t*)0; - } - |