[Python-modules-commits] [pygeoif] 03/03: Initial release (Closes: #809003)

Sandro Tosi morph at moszumanska.debian.org
Sat Dec 26 03:00:05 UTC 2015


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

morph pushed a commit to branch master
in repository pygeoif.

commit 00efcd77277ea4a68cce3b842bf0a05e9ebab05d
Author: Sandro Tosi <morph at debian.org>
Date:   Sat Dec 26 02:58:59 2015 +0000

    Initial release (Closes: #809003)
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 29 +++++++++++++++++++++++++++++
 debian/rules     | 14 ++++++++++++++
 debian/watch     |  3 +++
 6 files changed, 98 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..50c723b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pygeoif (0.6-1) unstable; urgency=low
+
+  * Initial release (Closes: #809003)
+
+ -- Sandro Tosi <morph at debian.org>  Sat, 26 Dec 2015 02:25:58 +0000
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..422a5af
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,46 @@
+Source: pygeoif
+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.6
+Homepage: https://github.com/cleder/pygeoif
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/pygeoif.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/pygeoif.git
+
+Package: python-pygeoif
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: basic implementation of the __geo_interface__
+ PyGeoIf provides a GeoJSON-like protocol for geo-spatial (GIS) vector data.
+ .
+ So when you want to write your own geospatial library with support for this
+ protocol you may use pygeoif as a starting point and build your functionality
+ on top of it
+ .
+ You may think of pygeoif as a ‘shapely ultralight’ which lets you construct
+ geometries and perform very basic operations like reading and writing
+ geometries from/to WKT, constructing line strings out of points, polygons from
+ linear rings, multi polygons from polygons, etc. It was inspired by shapely and
+ implements the geometries in a way that when you are familiar with shapely you
+ feel right at home with pygeoif.
+
+Package: python3-pygeoif
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: basic implementation of the __geo_interface__ (Python 3)
+ PyGeoIf provides a GeoJSON-like protocol for geo-spatial (GIS) vector data.
+ .
+ So when you want to write your own geospatial library with support for this
+ protocol you may use pygeoif as a starting point and build your functionality
+ on top of it
+ .
+ You may think of pygeoif as a ‘shapely ultralight’ which lets you construct
+ geometries and perform very basic operations like reading and writing
+ geometries from/to WKT, constructing line strings out of points, polygons from
+ linear rings, multi polygons from polygons, etc. It was inspired by shapely and
+ implements the geometries in a way that when you are familiar with shapely you
+ feel right at home with pygeoif.
+ .
+ This package contains the Python 3 version of pygeoif .
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f1515cd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pygeoif
+Source: https://github.com/cleder/pygeoif
+
+Files: *
+Copyright: Copyright (C) 2012  Christian Ledermann
+License: LGPL-2.1+
+
+License: LGPL-2.1+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+ .
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ .
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1".
+
+Files: debian/*
+Copyright: 2015 Sandro Tosi <morph at debian.org>
+License: LGPL-2.1+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b48359e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2,python3
+
+override_dh_auto_install:
+	python  setup.py install --root=debian/python-pygeoif  --install-layout=deb
+	python3 setup.py install --root=debian/python3-pygeoif --install-layout=deb
+
+override_dh_installchangelogs:
+	dh_installchangelogs docs/HISTORY.txt
+
+override_dh_installdocs:
+	dh_installdocs -A README.rst
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..348caea
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/pygeoif/pygeoif-(.+)\.(?: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/pygeoif.git



More information about the Python-modules-commits mailing list