debian/0000775000000000000000000000000012272244450007172 5ustar debian/copyright0000664000000000000000000000200412272244361011122 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: imposm-parser Upstream-Author: Oliver Tonnhofer Source: http://dev.omniscale.net/imposm.parser/ Files: * Copyright: © 2011, Omniscale GmbH & Co. KG License: Apache-2.0 Files: debian/* Copyright: © 2011, David Paleino License: Apache-2.0 License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. X-Comment: on Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". debian/changelog0000664000000000000000000000143612272244444011053 0ustar imposm-parser (1.0.5-1build1) trusty; urgency=medium * No-change rebuild against libprotobuf8 -- Steve Langasek Wed, 29 Jan 2014 18:31:58 +0000 imposm-parser (1.0.5-1) unstable; urgency=low * New upstream version. * Use canonical Vcs-* urls. * Standards-Version bump to 3.9.5, no changes needed. * debhelper compatibility bumped to 9. * debian/docs: README renamed to README.rst. -- David Paleino Mon, 04 Nov 2013 17:29:58 +0100 imposm-parser (1.0.3-1) unstable; urgency=low * New upstream version -- David Paleino Wed, 07 Sep 2011 10:15:14 +0200 imposm-parser (1.0.2-1) unstable; urgency=low * Initial release (Closes: #623942) -- David Paleino Sun, 24 Apr 2011 21:24:57 +0200 debian/compat0000664000000000000000000000000212272244361010371 0ustar 9 debian/watch0000664000000000000000000000014012272244361010217 0ustar version=3 http://pypi.python.org/packages/source/i/imposm.parser/imposm.parser-(\d+.*)\.tar\.gz debian/clean0000664000000000000000000000006712272244361010203 0ustar imposm/parser/pbf/osm.pb.cc imposm/parser/pbf/osm.pb.h debian/docs0000664000000000000000000000001312272244361010040 0ustar README.rst debian/source/0000775000000000000000000000000012272244450010472 5ustar debian/source/format0000664000000000000000000000001412272244361011701 0ustar 3.0 (quilt) debian/dirs0000664000000000000000000000004612272244361010057 0ustar usr/share/python-imposm-parser/tests/ debian/rules0000775000000000000000000000036512272244361010257 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ \ --with python2 override_dh_auto_install: dh_auto_install find $(CURDIR)/debian/python-imposm-parser/ -name "test.*" -delete debian/control0000664000000000000000000000170312272244361010577 0ustar Source: imposm-parser Section: python Priority: extra Maintainer: Debian OpenStreetMap Team Uploaders: David Paleino Build-Depends: debhelper (>= 9~) , python-setuptools , python-all-dev (>= 2.6.6-3~) , libprotobuf-dev (>= 2.4) , protobuf-compiler X-Python-Version: >= 2.5 Standards-Version: 3.9.5 Homepage: http://dev.omniscale.net/imposm.parser/ Vcs-Git: git://anonscm.debian.org/pkg-osm/imposm-parser.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-osm/imposm-parser.git;a=summary Package: python-imposm-parser Architecture: any Depends: ${shlibs:Depends} , ${python:Depends} , ${misc:Depends} , python (>= 2.6) | python-multiprocessing Description: Python module to parse OpenStreetMap data imposm.parser is a Python library that parses OpenStreetMap data in XML and PBF format. . It has a simple API and it is fast and easy to use. It also works across multiple CPU/cores. debian/install0000664000000000000000000000032512272244361010564 0ustar imposm/parser/test/test.osm usr/share/python-imposm-parser/tests/ imposm/parser/test/test.osm.bz2 usr/share/python-imposm-parser/tests/ imposm/parser/test/test.pbf usr/share/python-imposm-parser/tests/ debian/patches/0000775000000000000000000000000012272244450010621 5ustar debian/patches/00-fix_testfiles_location.patch0000664000000000000000000000225112272244361016620 0ustar From: David Paleino Subject: move test files to /usr/share/python-imposm-parser/ Origin: vendor Forwarded: no --- imposm/parser/test/test_simple_parser.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- imposm-parser.orig/imposm/parser/test/test_simple_parser.py +++ imposm-parser/imposm/parser/test/test_simple_parser.py @@ -95,16 +95,16 @@ class ParserTestBaseWithFilter(ParserTes eq_(len(self.relations), 0) class TestXML(ParserTestBase): - osm_filename = 'test.osm' + osm_filename = '/usr/share/python-imposm-parser/tests/test.osm' class TestBZIP2(ParserTestBase): - osm_filename = 'test.osm.bz2' + osm_filename = '/usr/share/python-imposm-parser/tests/test.osm.bz2' class TestPBF(ParserTestBase): - osm_filename = 'test.pbf' + osm_filename = '/usr/share/python-imposm-parser/tests/test.pbf' class TestXMLWithFilter(ParserTestBaseWithFilter): - osm_filename = 'test.osm' + osm_filename = '/usr/share/python-imposm-parser/tests/test.osm' class TestPBFWithFilter(ParserTestBaseWithFilter): - osm_filename = 'test.pbf' + osm_filename = '/usr/share/python-imposm-parser/tests/test.pbf' debian/patches/series0000664000000000000000000000004012272244361012031 0ustar 00-fix_testfiles_location.patch