Codebase list python-pyproj / 96df262
debian/patches/02-dont_compile_datums.patch added: don't compile datum files, since we're using the ones provided by proj-data David Paleino 13 years ago
3 changed file(s) with 25 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
22 * New upstream version
33 * debian/watch: don't use the redirector anymore, since I'm going
44 to shut it down
5 * debian/patches/02-dont_compile_datums.patch added: don't compile
6 datum files, since we're using the ones provided by proj-data
57
6 -- David Paleino <dapal@debian.org> Thu, 16 Sep 2010 10:24:24 +0200
8 -- David Paleino <dapal@debian.org> Thu, 16 Sep 2010 11:24:34 +0200
79
810 python-pyproj (1.8.7-1) unstable; urgency=low
911
0 From: David Paleino <dapal@debian.org>
1 Subject: don't compile datum files, as we're using the ones provided by
2 proj-data
3 Origin: vendor
4 Forwarded: not-needed
5
6 ---
7 setup.py | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 --- python-pyproj.orig/setup.py
11 +++ python-pyproj/setup.py
12 @@ -7,7 +7,7 @@ extensions = [Extension("pyproj._proj",d
13 extensions.append(Extension("pyproj._geod",deps+['_geod.c'],include_dirs = ['src']))
14
15 # create binary datum shift grid files.
16 -if sys.argv[1] != 'sdist':
17 +if False:
18 cc = ccompiler.new_compiler()
19 sysconfig.customize_compiler(cc)
20 cc.set_include_dirs(['src'])
00 01-use_proj-data_instead_of_embedded.patch
1 02-dont_compile_datums.patch