Source: python-shapely
Version: 1.2.14-1
Severity: serious
Tags: jessie sid
User: [email protected]
Usertags: qa-ftbfs-20140114 qa-ftbfs
Justification: FTBFS on amd64
Hi,
During a rebuild of all packages in sid, your package failed to build on
amd64.
Relevant part (hopefully):
> make[1]: Entering directory `/«PKGBUILDDIR»'
> set -e; for ver in `pyversions -vr`; do \
> python$ver setup.py test; \
> done
> setup.py:10: Warning: Failed to import distribute_setup, continuing without
> distribute.
> Warning)
> /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution
> option: 'requires_external'
> warnings.warn(msg)
> /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution
> option: 'metadata_version'
> warnings.warn(msg)
> /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution
> option: 'requires_python'
> warnings.warn(msg)
> running test
> running egg_info
> writing Shapely.egg-info/PKG-INFO
> writing top-level names to Shapely.egg-info/top_level.txt
> writing dependency_links to Shapely.egg-info/dependency_links.txt
> reading manifest file 'Shapely.egg-info/SOURCES.txt'
> writing manifest file 'Shapely.egg-info/SOURCES.txt'
> running build_ext
> skipping 'shapely/speedups/_speedups.c' Cython extension (up-to-date)
> building 'shapely.speedups._speedups' extension
> x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2
> -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c
> shapely/speedups/_speedups.c -o
> build/temp.linux-x86_64-2.7/shapely/speedups/_speedups.o
> shapely/speedups/_speedups.c: In function
> '__pyx_pf_7shapely_8speedups_9_speedups_2geos_linestring_from_py':
> shapely/speedups/_speedups.c:1389:20: warning: assignment discards 'const'
> qualifier from pointer target type [enabled by default]
> __pyx_v_cs = GEOSGeom_getCoordSeq_r(__pyx_v_handle,
> __pyx_f_7shapely_8speedups_9_speedups_cast_geom(__pyx_t_3));
> ^
> shapely/speedups/_speedups.c:1747:20: warning: assignment discards 'const'
> qualifier from pointer target type [enabled by default]
> __pyx_v_cs = GEOSGeom_getCoordSeq_r(__pyx_v_handle,
> __pyx_f_7shapely_8speedups_9_speedups_cast_geom(__pyx_t_3));
> ^
> shapely/speedups/_speedups.c: In function
> '__pyx_pf_7shapely_8speedups_9_speedups_4geos_linearring_from_py':
> shapely/speedups/_speedups.c:2431:20: warning: assignment discards 'const'
> qualifier from pointer target type [enabled by default]
> __pyx_v_cs = GEOSGeom_getCoordSeq_r(__pyx_v_handle,
> __pyx_f_7shapely_8speedups_9_speedups_cast_geom(__pyx_t_3));
> ^
> shapely/speedups/_speedups.c:2877:20: warning: assignment discards 'const'
> qualifier from pointer target type [enabled by default]
> __pyx_v_cs = GEOSGeom_getCoordSeq_r(__pyx_v_handle,
> __pyx_f_7shapely_8speedups_9_speedups_cast_geom(__pyx_t_3));
> ^
> x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions
> -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall
> -Wstrict-prototypes -D_FORTIFY_SOURCE=2 -g -fstack-protector
> --param=ssp-buffer-size=4 -Wformat -Werror=format-security
> build/temp.linux-x86_64-2.7/shapely/speedups/_speedups.o -lgeos_c -o
> /«PKGBUILDDIR»/shapely/speedups/_speedups.so
> Traceback (most recent call last):
> File "setup.py", line 120, in <module>
> **setup_args
> File "/usr/lib/python2.7/distutils/core.py", line 152, in setup
> dist.run_commands()
> File "/usr/lib/python2.7/distutils/dist.py", line 953, in run_commands
> self.run_command(cmd)
> File "/usr/lib/python2.7/distutils/dist.py", line 972, in run_command
> cmd_obj.run()
> File "/usr/lib/python2.7/dist-packages/setuptools/command/test.py", line
> 138, in run
> self.with_project_on_sys_path(self.run_tests)
> File "/usr/lib/python2.7/dist-packages/setuptools/command/test.py", line
> 118, in with_project_on_sys_path
> func()
> File "/usr/lib/python2.7/dist-packages/setuptools/command/test.py", line
> 164, in run_tests
> testLoader = cks
> File "/usr/lib/python2.7/unittest/main.py", line 94, in __init__
> self.parseArgs(argv)
> File "/usr/lib/python2.7/unittest/main.py", line 149, in parseArgs
> self.createTests()
> File "/usr/lib/python2.7/unittest/main.py", line 158, in createTests
> self.module)
> File "/usr/lib/python2.7/unittest/loader.py", line 130, in
> loadTestsFromNames
> suites = [self.loadTestsFromName(name, module) for name in names]
> File "/usr/lib/python2.7/unittest/loader.py", line 91, in loadTestsFromName
> module = __import__('.'.join(parts_copy))
> File "/«PKGBUILDDIR»/shapely/tests/__init__.py", line 3, in <module>
> import test_doctests, test_prepared, test_equality, test_geomseq, test_xy
> File "/«PKGBUILDDIR»/shapely/tests/test_prepared.py", line 2, in <module>
> from shapely import prepared
> File "/«PKGBUILDDIR»/shapely/prepared.py", line 5, in <module>
> from shapely.geos import lgeos
> File "/«PKGBUILDDIR»/shapely/geos.py", line 100, in <module>
> geos_capi_version = geos_c_version = _geos_c_version()
> File "/«PKGBUILDDIR»/shapely/geos.py", line 98, in _geos_c_version
> return tuple(int(n) for n in v.split('.'))
> File "/«PKGBUILDDIR»/shapely/geos.py", line 98, in <genexpr>
> return tuple(int(n) for n in v.split('.'))
> ValueError: invalid literal for int() with base 10: '2 r3921'
> make[1]: *** [override_dh_auto_test] Error 1
The full build log is available from:
http://aws-logs.debian.net/ftbfs-logs/2014/01/14/python-shapely_1.2.14-1_unstable.log
A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]