Commit 828fd62b authored by Łukasz Nowak's avatar Łukasz Nowak

- reuse the fact that each parts has unique location and fetch patch from that place


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@32778 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9ac6dfce
python2.4-dbm.patch took from http://bugs.gentoo.org/165268
--- setup.py.orig 2007-02-04 03:04:59.000000000 +0100
+++ setup.py 2007-02-04 03:09:46.000000000 +0100
@@ -684,7 +684,7 @@
and find_file("gdbm/ndbm.h", inc_dirs, []) is not None):
exts.append( Extension('dbm', ['dbmmodule.c'],
define_macros=[('HAVE_GDBM_NDBM_H',None)],
- libraries = ['gdbm'] ) )
+ libraries = ['gdbm_compat', 'gdbm'] ) )
elif db_incs is not None:
exts.append( Extension('dbm', ['dbmmodule.c'],
library_dirs=dblib_dir,
......@@ -6,6 +6,12 @@ parts =
python
pythonbin
[python2.4-dbm-patch]
recipe = hexagonit.recipe.download
url = http://bugs.gentoo.org/attachment.cgi?id=109117
download-only = true
filename = attachment.cgi
[python]
recipe = hexagonit.recipe.cmmi
python_version_minor = 6
......@@ -22,7 +28,7 @@ configure-options =
--with-ssl
--with-bz2
patches = ${buildout:directory}/patches/python2.4-dbm.patch
patches = ${python2.4-dbm-patch:location}/${python2.4-dbm-patch:filename}
[pythonbin]
depends = ${python:recipe}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment