[Python-modules-commits] [purl] 02/02: Initial release (Closes: #787107).

Michael Fladischer fladi at moszumanska.debian.org
Mon Jun 15 08:34:04 UTC 2015


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

fladi pushed a commit to branch master
in repository purl.

commit 5943a13a49b0753790797ee5cab1beea86fb4b03
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Mon Jun 15 10:28:29 2015 +0200

    Initial release (Closes: #787107).
---
 debian/changelog         |  5 +++++
 debian/compat            |  1 +
 debian/control           | 40 ++++++++++++++++++++++++++++++++++++++++
 debian/copyright         | 31 +++++++++++++++++++++++++++++++
 debian/python-purl.docs  |  1 +
 debian/python3-purl.docs |  1 +
 debian/rules             |  9 +++++++++
 debian/source/format     |  1 +
 debian/watch             |  3 +++
 9 files changed, 92 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a854208
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+purl (1.1-1) unstable; urgency=medium
+
+  * Initial release (Closes: #787107).
+
+ -- Michael Fladischer <fladi at debian.org>  Thu, 02 Apr 2015 15:46:31 +0200
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..fb92e7e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: purl
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: debhelper (>= 9),
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+Homepage: http://codeinthehole.com/writing/purl-immutable-url-objects-for-python/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/purl.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/purl.git
+
+Package: python-purl
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: URL interrogation and manipulation
+ A simple, immutable URL class with a clean API for interrogation and
+ manipulation that also supports template URLs as per RFC 6570.
+ It parses URLs into URL objects which are immutable but also provides mutator
+ methods for all segements which return a new URL instance. This allows for
+ easy modification of URLs during runtime.
+
+Package: python3-purl
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: URL interrogation and manipulation (Python3 version)
+ A simple, immutable URL class with a clean API for interrogation and
+ manipulation that also supports template URLs as per RFC 6570.
+ It parses URLs into URL objects which are immutable but also provides mutator
+ methods for all segements which return a new URL instance. This allows for
+ easy modification of URLs during runtime.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..425ddbc
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: purl
+Upstream-Contact: David Winterbottom <david.winterbottom at gmail.com>
+Source: https://pypi.python.org/pypi/purl
+
+Files: *
+Copyright: 2012, David Winterbottom <david.winterbottom at gmail.com>
+License: Expat
+
+Files: debian/*
+Copyright: 2015, Michael Fladischer <fladi at debian.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
+ this software and associated documentation files (the "Software"), to deal in
+ the Software without restriction, including without limitation the rights to
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+ of the Software, and to permit persons to whom the Software is furnished to do
+ so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/debian/python-purl.docs b/debian/python-purl.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-purl.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-purl.docs b/debian/python3-purl.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-purl.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..bd2b93e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=purl
+
+%:
+	dh $@ --with=python2,python3 --buildsystem=pybuild
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..a734e50
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/purl/purl-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file

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



More information about the Python-modules-commits mailing list