[Python-modules-commits] [overpass] 03/03: Initial release; Closes: #821127

Sandro Tosi morph at moszumanska.debian.org
Sat Apr 23 12:04:28 UTC 2016


This is an automated email from the git hooks/post-receive script.

morph pushed a commit to branch master
in repository overpass.

commit 62597dfb8357038c2c5d2a632df7881b56aa7782
Author: Sandro Tosi <morph at debian.org>
Date:   Sat Apr 23 13:03:23 2016 +0100

    Initial release; Closes: #821127
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 33 +++++++++++++++++++++++++++++++++
 debian/copyright | 15 +++++++++++++++
 debian/rules     | 13 +++++++++++++
 debian/watch     |  3 +++
 6 files changed, 70 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..512adb4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+overpass (0.4.0-1) unstable; urgency=low
+
+  * Initial release; Closes: #821127
+
+ -- Sandro Tosi <morph at debian.org>  Sat, 23 Apr 2016 10:48:44 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..69f8679
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,33 @@
+Source: overpass
+Section: python
+Priority: optional
+Maintainer: Sandro Tosi <morph at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python, python3, dh-python, python-setuptools, python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://github.com/mvexel/overpass-api-python-wrapper
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/overpass.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/overpass.git
+
+Package: python-overpass
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: wrapper for the OpenStreetMap Overpass API (Python 2)
+ overpass is a Python module providing a thin wrapper around the OpenStreetMap
+ Overpass API, which is a read-only API that serves up custom selected parts of
+ the OSM map data. It acts as a database over the web: the client sends a query
+ to the API and gets back the data set that corresponds to the query.
+ .
+ This package contains the Python 2 version of overpass .
+
+Package: python3-overpass
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: wrapper for the OpenStreetMap Overpass API (Python 3)
+ overpass is a Python module providing a thin wrapper around the OpenStreetMap
+ Overpass API, which is a read-only API that serves up custom selected parts of
+ the OSM map data. It acts as a database over the web: the client sends a query
+ query to the API and gets back the data set that corresponds to the query.
+ .
+ This package contains the Python 3 version of overpass and its command-line
+ tool.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7b9bac8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,15 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: overpass
+Source: https://github.com/mvexel/overpass-api-python-wrapper
+
+Files: *
+Copyright: Martijn van Exel <m at rtijn.org>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2016 Sandro Tosi <morph at debian.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ On Debian systems, the complete text of the Apache license
+ version 2.0 can be found in "/usr/share/common-licenses/Apache-2.0".
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..33954b0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2,python3
+
+override_dh_auto_install:
+	python  setup.py install --root=debian/python-overpass  --install-layout=deb
+	# cli tools are provided only by the py3k package
+	rm -rf $(CURDIR)/debian/python-overpass/usr/bin
+	python3 setup.py install --root=debian/python3-overpass --install-layout=deb
+
+override_dh_installdocs:
+	dh_installdocs -A README.rst
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..9229109
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/overpass/overpass-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/overpass.git



More information about the Python-modules-commits mailing list