debian/0000755000000000000000000000000012302376015007165 5ustar debian/docs0000644000000000000000000000004411705572146010047 0ustar HACKING.txt src/lazr/uri/README.txt debian/copyright0000644000000000000000000000175311706011265011126 0ustar Format: http://anonscm.debian.org/loggerhead/dep/dep5/trunk/annotate/179/dep5/copyright-format.xml Upstream-Name: lazr.uri Source: https://launchpad.net/lazr.uri Files: * Copyright: 2006-2009, Canonical Ltd License: LGPL-3.0 Files: debian/* Copyright: 2009, James Westby 2009-2011, Luca Falavigna 2012, Stefano Rivera License: LGPL-3.0 License: LGPL-3.0 lazr.uri 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, version 3 of the License. . lazr.uri 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. . On Debian-based systems the full text of the LGPL, version 3, can be found at /usr/share/common-licenses/LGPL-3. debian/changelog0000644000000000000000000000505212302376015011041 0ustar lazr.uri (1.0.3-1build1) trusty; urgency=medium * Rebuild to drop files installed into /usr/share/pyshared. -- Matthias Klose Sun, 23 Feb 2014 13:47:57 +0000 lazr.uri (1.0.3-1) unstable; urgency=low * New maintainer. * New upstream release (Closes: #656336) - Includes python3 support. * Refreshed patches. * debian/control: - Drop Breaks: ${python:Breaks}, no longer used by dh_python2. - Wrap and sort long lists. * Clean egg-info. * Removed changelog duplicate, NEWS.txt. * debian/copyright: Converted to DEP5 machine-readable format. * Install version.txt via package_data. -- Stefano Rivera Mon, 23 Jan 2012 16:43:58 +0200 lazr.uri (1.0.2-5) unstable; urgency=low * Python transition: - Add support for python2.7 - Drop support for python2.5 * debian/control: - Bump Standards-Version to 3.9.2, no changes required. -- Luca Falavigna Mon, 18 Apr 2011 22:25:13 +0200 lazr.uri (1.0.2-4) unstable; urgency=low * Upload to unstable. -- Luca Falavigna Mon, 14 Feb 2011 21:15:01 +0100 lazr.uri (1.0.2-3) experimental; urgency=low * Switch to dh_python2. * debian/patches/no_package_data.patch: - Do not install documentation files in Python module directory. * debian/control: - Bump Standards-Version to 3.9.1, no changes required. * debian/docs: - Install documentation files under /usr/share/doc. -- Luca Falavigna Sat, 04 Dec 2010 11:58:12 +0100 lazr.uri (1.0.2-2) unstable; urgency=low * Switch to format 3.0 (quilt). * debian/control: - Move myself as Maintainer, DPMT as Uploaders. - Remove Conflicts/Replaces with python-lazr-uri, they were useful for Ubuntu Lucid only. - Bump Standards-Version to 3.8.4, no changes required. * debian/rules: - Install upstream changelog. -- Luca Falavigna Thu, 29 Apr 2010 21:48:51 +0200 lazr.uri (1.0.2-1) unstable; urgency=low * Initial Debian release (Closes: #532703). * Package taken from Ubuntu, major changes introduced are: - Switch to debhelper 7. - Switch to python-support. - Binary package renamed to python-lazr.uri to match module name. -- Luca Falavigna Sat, 17 Oct 2009 11:37:52 +0200 lazr.uri (1.0-0ubuntu1) karmic; urgency=low * Initial release. * Comment out "setup_requires" so that setuptools doesn't try to download the packages there at build time. -- James Westby Wed, 10 Jun 2009 19:17:46 +0100 debian/clean0000644000000000000000000000002111706011265010163 0ustar src/*.egg-info/* debian/compat0000644000000000000000000000000211266324554010374 0ustar 7 debian/patches/0000755000000000000000000000000011707271105010616 5ustar debian/patches/install-version0000644000000000000000000000072311707271024013674 0ustar Description: Install version.txt with package_data Author: Stefano Rivera Bug-Upstream: https://bugs.launchpad.net/lazr.uri/+bug/918660 Last-Update: 2012-01-19 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ namespace_packages=['lazr'], packages=find_packages('src'), package_dir={'':'src'}, + package_data={'lazr.uri': ['version.txt']}, include_package_data=True, zip_safe=False, maintainer='LAZR Developers', debian/patches/series0000644000000000000000000000002011706011265012021 0ustar install-version debian/control0000644000000000000000000000273211706011265010574 0ustar Source: lazr.uri Section: python Priority: optional Maintainer: Stefano Rivera Uploaders: Debian Python Modules Team Build-Depends: debhelper (>= 7.3.0), python-all (>= 2.6.6-3~), python-setuptools, python3-all (>= 3.1.2-6~), python3-setuptools Standards-Version: 3.9.2 Homepage: https://launchpad.net/lazr.uri Vcs-Svn: svn://svn.debian.org/python-modules/packages/lazr.uri/trunk/ Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/lazr.uri/trunk/ X-Python-Version: >= 2.4 Package: python-lazr.uri Architecture: all Depends: python-pkg-resources, ${misc:Depends}, ${python:Depends} Description: library for parsing, manipulating, and generating URIs A self-contained, easily reusable, Python library for parsing, manipulating and generating URIs. With it you can extract parts of a URL, compare URIs to see if one contains another, search for URIs in text, and many other things. . This package contains the library for Python 2.x. Package: python3-lazr.uri Architecture: all Depends: python3-pkg-resources, ${misc:Depends}, ${python3:Depends} Description: library for parsing, manipulating, and generating URIs A self-contained, easily reusable, Python library for parsing, manipulating and generating URIs. With it you can extract parts of a URL, compare URIs to see if one contains another, search for URIs in text, and many other things. . This package contains the library for Python 3.x. debian/rules0000755000000000000000000000140711706011265010247 0ustar #!/usr/bin/make -f PYVERS := $(shell pyversions -r) PY3VERS := $(shell py3versions -r) %: dh $@ --with python2,python3 override_dh_auto_build: set -ex; \ for py in $(PYVERS) $(PY3VERS); do \ $$py setup.py build; \ done override_dh_auto_install: set -ex; \ for py in $(PYVERS); do \ $$py setup.py install --skip-build --no-compile \ --root debian/python-lazr.uri \ --install-layout=deb; \ done set -ex; \ for py in $(PY3VERS); do \ $$py setup.py install --skip-build --no-compile \ --root debian/python3-lazr.uri \ --install-layout=deb; \ done override_dh_auto_clean: rm -rf build override_dh_installchangelogs: dh_installchangelogs src/lazr/uri/NEWS.txt debian/source/0000755000000000000000000000000011707271105010467 5ustar debian/source/format0000644000000000000000000000001411366361116011700 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000015111266324554010224 0ustar version=3 https://launchpad.net/lazr.uri/+download http://launchpad.net/lazr.uri/.*/lazr.uri-(.+).tar.gz