[Python-modules-commits] [python-uritools] 04/12: Initial release

Stein Magnus Jodal jodal at moszumanska.debian.org
Thu Nov 5 23:15:20 UTC 2015


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

jodal pushed a commit to branch master
in repository python-uritools.

commit 8532382760d3d5b1f9966c8a7bdff8dfd51e8bd4
Author: Stein Magnus Jodal <stein.magnus at jodal.no>
Date:   Thu Jul 30 23:11:23 2015 +0200

    Initial release
---
 debian/changelog                |  5 ++++
 debian/compat                   |  1 +
 debian/control                  | 56 +++++++++++++++++++++++++++++++++++++++++
 debian/copyright                | 31 +++++++++++++++++++++++
 debian/gbp.conf                 |  4 +++
 debian/python-uritools.docs     |  2 ++
 debian/python-uritools.install  |  1 +
 debian/python3-uritools.docs    |  2 ++
 debian/python3-uritools.install |  1 +
 debian/rules                    | 20 +++++++++++++++
 debian/watch                    |  3 +++
 11 files changed, 126 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0f660ed
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-uritools (1.0.1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #794151)
+
+ -- Stein Magnus Jodal <stein.magnus at jodal.no>  Thu, 30 Jul 2015 23:00:05 +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..3bbbe65
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,56 @@
+Source: python-uritools
+Section: python
+Priority: optional
+Maintainer: Stein Magnus Jodal <stein.magnus at jodal.no>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.7),
+               python-ipaddress,
+               python-setuptools,
+               python-sphinx | python3-sphinx,
+               python3-all (>= 3.2),
+               python3-setuptools,
+Standards-Version: 3.9.6
+Homepage: https://github.com/tkem/uritools
+Vcs-Git: git://github.com/jodal/uritools.git
+Vcs-Browser: https://github.com/jodal/uritools
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+
+Package: python-uritools
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends},
+         ${sphinxdoc:Depends},
+Description: RFC 3986 compliant replacement for urlparse (Python 2)
+ This module defines RFC 3986 compliant replacements for the most commonly used
+ functions of the Python 2.7 Standard Library urlparse and Python 3
+ urllib.parse modules.
+ .
+ For various reasons, the Python 2 urlparse module is not compliant with
+ current Internet standards, does not include Unicode support, and is generally
+ unusable with proprietary URI schemes. Python 3's urllib.parse improves on
+ Unicode support, but the other issues still remain.
+ .
+ This module aims to provide fully RFC 3986 compliant replacements for some
+ commonly used functions found in urlparse and urllib.parse, plus additional
+ functions for conveniently composing URIs from their individual components.
+
+Package: python3-uritools
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends},
+         ${sphinxdoc:Depends},
+Description: RFC 3986 compliant replacement for urlparse (Python 3)
+ This module defines RFC 3986 compliant replacements for the most commonly used
+ functions of the Python 2.7 Standard Library urlparse and Python 3
+ urllib.parse modules.
+ .
+ For various reasons, the Python 2 urlparse module is not compliant with
+ current Internet standards, does not include Unicode support, and is generally
+ unusable with proprietary URI schemes. Python 3's urllib.parse improves on
+ Unicode support, but the other issues still remain.
+ .
+ This module aims to provide fully RFC 3986 compliant replacements for some
+ commonly used functions found in urlparse and urllib.parse, plus additional
+ functions for conveniently composing URIs from their individual components.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8bf57d6
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: uritools
+Upstream-Contact: Thomas Kemmer <tkemmer at computer.org>
+Source: https://github.com/tkem/uritools
+
+Files: *
+Copyright: 2014-2015 Thomas Kemmer
+License: Expat
+
+Files: debian/*
+Copyright: 2015 Stein Magnus Jodal <stein.magnus at jodal.no>
+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/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..0a80fe8
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,4 @@
+[DEFAULT]
+debian-branch = debian
+upstream-branch = master
+upstream-tag = v%(version)s
diff --git a/debian/python-uritools.docs b/debian/python-uritools.docs
new file mode 100644
index 0000000..a4b4644
--- /dev/null
+++ b/debian/python-uritools.docs
@@ -0,0 +1,2 @@
+README.rst
+docs/_build/html/
diff --git a/debian/python-uritools.install b/debian/python-uritools.install
new file mode 100644
index 0000000..b2cc136
--- /dev/null
+++ b/debian/python-uritools.install
@@ -0,0 +1 @@
+usr/lib/python2*
diff --git a/debian/python3-uritools.docs b/debian/python3-uritools.docs
new file mode 100644
index 0000000..a4b4644
--- /dev/null
+++ b/debian/python3-uritools.docs
@@ -0,0 +1,2 @@
+README.rst
+docs/_build/html/
diff --git a/debian/python3-uritools.install b/debian/python3-uritools.install
new file mode 100644
index 0000000..4606faa
--- /dev/null
+++ b/debian/python3-uritools.install
@@ -0,0 +1 @@
+usr/lib/python3*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d41e602
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_DISABLE=test
+
+%:
+	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_installchangelogs:
+	dh_installchangelogs CHANGES.rst
+
+override_dh_installdocs:
+	make -C docs/ clean html
+	dh_installdocs
+
+override_dh_auto_clean:
+	dh_auto_clean
+	make -C docs/ clean
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..23dd5d3
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/uritools/uritools-(.+)\.(?: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/python-uritools.git



More information about the Python-modules-commits mailing list