mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-python/reportlab: Clean old versions up
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
#Patch submitted by Jesus Rivero <neurogeek@gentoo.org>
|
||||
#Submitted on 10/04/2008 to upstream
|
||||
diff -uNr ReportLab_2_2.orig/src/rl_addons/renderPM/gt1/gt1-namecontext.c ReportLab_2_2/src/rl_addons/renderPM/gt1/gt1-namecontext.c
|
||||
--- ReportLab_2_2.orig/src/rl_addons/renderPM/gt1/gt1-namecontext.c 2008-10-04 10:28:05.000000000 -0430
|
||||
+++ ReportLab_2_2/src/rl_addons/renderPM/gt1/gt1-namecontext.c 2008-10-04 10:28:38.000000000 -0430
|
||||
@@ -3,9 +3,7 @@
|
||||
#include "gt1-misc.h"
|
||||
|
||||
#include "gt1-namecontext.h"
|
||||
-#if defined(_WIN32) || defined(macintosh)
|
||||
-# include <string.h>
|
||||
-#endif
|
||||
+#include <string.h>
|
||||
|
||||
/* btw, I do not know who wrote the following comment. I modified this
|
||||
file somewhat from gimp's app/procedural_db.c hash function. */
|
||||
@@ -1,60 +0,0 @@
|
||||
--- setup.py
|
||||
+++ setup.py
|
||||
@@ -306,39 +306,12 @@
|
||||
infoline( '################################################')
|
||||
infoline( '#Attempting install of _renderPM')
|
||||
infoline( '#extensions from %r'%RENDERPM)
|
||||
- LIBART_DIR=pjoin(RENDERPM,'libart_lgpl')
|
||||
+ LIBART_DIR='@GENTOO_PORTAGE_EPREFIX@/usr/include/libart-2.0'
|
||||
+ LIBART_LIB=['art_lgpl_2']
|
||||
GT1_DIR=pjoin(RENDERPM,'gt1')
|
||||
MACROS=[('ROBIN_DEBUG',None)]
|
||||
MACROS=[]
|
||||
- def libart_version():
|
||||
- K = ('LIBART_MAJOR_VERSION','LIBART_MINOR_VERSION','LIBART_MICRO_VERSION')
|
||||
- D = {}
|
||||
- for l in open(pjoin(LIBART_DIR,'configure.in'),'r').readlines():
|
||||
- l = l.strip().split('=')
|
||||
- if len(l)>1 and l[0].strip() in K:
|
||||
- D[l[0].strip()] = l[1].strip()
|
||||
- if len(D)==3: break
|
||||
- return (sys.platform == 'win32' and '\\"%s\\"' or '"%s"') % '.'.join(map(lambda k,D=D: D.get(k,'?'),K))
|
||||
- LIBART_VERSION = libart_version()
|
||||
SOURCES=[pjoin(RENDERPM,'_renderPM.c'),
|
||||
- pjoin(LIBART_DIR,'art_vpath_bpath.c'),
|
||||
- pjoin(LIBART_DIR,'art_rgb_pixbuf_affine.c'),
|
||||
- pjoin(LIBART_DIR,'art_rgb_svp.c'),
|
||||
- pjoin(LIBART_DIR,'art_svp.c'),
|
||||
- pjoin(LIBART_DIR,'art_svp_vpath.c'),
|
||||
- pjoin(LIBART_DIR,'art_svp_vpath_stroke.c'),
|
||||
- pjoin(LIBART_DIR,'art_svp_ops.c'),
|
||||
- pjoin(LIBART_DIR,'art_vpath.c'),
|
||||
- pjoin(LIBART_DIR,'art_vpath_dash.c'),
|
||||
- pjoin(LIBART_DIR,'art_affine.c'),
|
||||
- pjoin(LIBART_DIR,'art_rect.c'),
|
||||
- pjoin(LIBART_DIR,'art_rgb_affine.c'),
|
||||
- pjoin(LIBART_DIR,'art_rgb_affine_private.c'),
|
||||
- pjoin(LIBART_DIR,'art_rgb.c'),
|
||||
- pjoin(LIBART_DIR,'art_rgb_rgba_affine.c'),
|
||||
- pjoin(LIBART_DIR,'art_svp_intersect.c'),
|
||||
- pjoin(LIBART_DIR,'art_svp_render_aa.c'),
|
||||
- pjoin(LIBART_DIR,'art_misc.c'),
|
||||
pjoin(GT1_DIR,'gt1-parset1.c'),
|
||||
pjoin(GT1_DIR,'gt1-dict.c'),
|
||||
pjoin(GT1_DIR,'gt1-namecontext.c'),
|
||||
@@ -398,12 +371,12 @@
|
||||
EXT_MODULES += [Extension( '_renderPM',
|
||||
SOURCES,
|
||||
include_dirs=[RENDERPM,LIBART_DIR,GT1_DIR]+FT_INC_DIR,
|
||||
- define_macros=FT_MACROS+[('LIBART_COMPILATION',None)]+MACROS+[('LIBART_VERSION',LIBART_VERSION)],
|
||||
+ define_macros=FT_MACROS+MACROS,
|
||||
library_dirs=[]+FT_LIB_DIR,
|
||||
|
||||
# libraries to link against
|
||||
- libraries=FT_LIB,
|
||||
- #extra_objects=['gt1.lib','libart.lib',],
|
||||
+ libraries=FT_LIB+LIBART_LIB,
|
||||
+ #extra_objects=['gt1.lib'],
|
||||
#extra_compile_args=['/Z7'],
|
||||
extra_link_args=[]
|
||||
),
|
||||
@@ -1,13 +0,0 @@
|
||||
PyPy does not provide the PyArg_NoArgs macro.
|
||||
--- a/src/rl_addons/rl_accel/sgmlop.c
|
||||
+++ b/src/rl_addons/rl_accel/sgmlop.c
|
||||
@@ -52,6 +52,9 @@
|
||||
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
||||
|
||||
#include "Python.h"
|
||||
+#ifndef PyArg_NoArgs
|
||||
+#define PyArg_NoArgs(v) PyArg_Parse(v, "")
|
||||
+#endif
|
||||
#if PY_VERSION_HEX < 0x02050000
|
||||
# define Py_ssize_t int
|
||||
# define lenfunc inquiry
|
||||
Reference in New Issue
Block a user