Codebase list heapdict / 2f75435
Remove fix-setup.patch Diane Trout 4 years ago
3 changed file(s) with 4 addition(s) and 22 deletion(s). Raw diff Collapse all Expand all
00 heapdict (1.0.0-2) UNRELEASED; urgency=medium
11
2 [ Ondřej Nový ]
23 * d/control: Set Vcs-* to salsa.debian.org
34 * d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
45 * d/control: Remove ancient X-Python3-Version field
56 * Convert git repository from git-dpm to gbp layout
67 * Use debhelper-compat instead of debian/compat.
8
9 [ Diane Trout]
10 * Remove fix-setup.patch resolved upstream
711
812 -- Ondřej Nový <onovy@debian.org> Tue, 13 Feb 2018 10:15:44 +0100
913
+0
-21
debian/patches/fix-setup.patch less more
0 Author: Diane Trout <diane@ghic.org>
1 Description: setuptools will always be available, so always use it.
2 Removes a warning message during the build (and may make tests
3 run properly)
4
5 --- a/setup.py
6 +++ b/setup.py
7 @@ -1,12 +1,7 @@
8 #!/usr/bin/env
9
10 import sys
11 -if sys.version_info[0] <= 2:
12 - import ez_setup
13 - ez_setup.use_setuptools()
14 - from setuptools import setup, Extension
15 -else:
16 - from distutils.core import setup, Extension
17 +from setuptools import setup, Extension
18
19 setup(name='HeapDict',
20 version='1.0.0',
+0
-1
debian/patches/series less more
0 fix-setup.patch