debian/0000755000000000000000000000000012265245505007174 5ustar debian/control0000644000000000000000000000275312264251050010575 0ustar Source: python-urlobject Maintainer: Andrew Shadura Section: python Priority: optional Homepage: http://github.com/zacharyvoase/urlobject Build-Depends: dh-python, python-setuptools (>= 0.6.24), python3-setuptools (>= 0.6.24), python-all (>= 2.6.6-3), python3-all, python-sphinx (>= 1.0.7+dfsg) | python3-sphinx, debhelper (>= 9), python-six, python3-six Standards-Version: 3.9.5 Package: python-urlobject Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-six, ${sphinxdoc:Depends} Provides: ${python:Provides} Description: utility class for manipulating URLs. URLObject is a utility class for manipulating URLs. The latest incarnation of this library builds upon the ideas of its predecessor, but aims for a clearer API, focusing on proper method names over operator overrides. It's also being developed from the ground up in a test-driven manner, and has full Sphinx documentation. Package: python3-urlobject Architecture: all Depends: ${misc:Depends}, ${python3:Depends}, python3-six, ${sphinxdoc:Depends} Description: utility class for manipulating URLs. URLObject is a utility class for manipulating URLs. The latest incarnation of this library builds upon the ideas of its predecessor, but aims for a clearer API, focusing on proper method names over operator overrides. It's also being developed from the ground up in a test-driven manner, and has full Sphinx documentation. . This is the Python 3 version of the package. debian/clean0000644000000000000000000000003612264246247010203 0ustar *.egg-info/* urlobject/six.py debian/changelog0000644000000000000000000000022212264251454011041 0ustar python-urlobject (2.3.4-1) unstable; urgency=low * Initial release. -- Andrew Shadura Sat, 11 Jan 2014 15:20:18 +0100 debian/source/0000755000000000000000000000000012264245165010475 5ustar debian/source/format0000644000000000000000000000001412264245165011703 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000520312265245440011125 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Zachary Voase Upstream-Contact: z@zacharyvoase.com Source: http://github.com/zacharyvoase/urlobject Copyright: 2012 Zachary Voase License: Unlicense License: Unlicense This is free and unencumbered software released into the public domain. . Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. . In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. . 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 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. . For more information, please refer to Files: urlobject/six.py Copyright: 2010-2012 Benjamin Peterson Comment: This file isn't used in binary packages. 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. debian/patches/0000755000000000000000000000000012264251562010622 5ustar debian/patches/01-use-system-six.diff0000644000000000000000000000316412264251562014615 0ustar From: Andrew Shadura Subject: Use system-provided six. --- a/urlobject/netloc.py +++ b/urlobject/netloc.py @@ -1,5 +1,5 @@ from .compat import urlparse -from .six import text_type, u +from six import text_type, u class Netloc(text_type): --- a/urlobject/path.py +++ b/urlobject/path.py @@ -4,7 +4,7 @@ import urllib from .compat import urlparse -from .six import text_type, u +from six import text_type, u class Root(object): --- a/urlobject/query_string.py +++ b/urlobject/query_string.py @@ -3,7 +3,7 @@ import urllib from .compat import urlparse -from .six import text_type, string_types, u +from six import text_type, string_types, u class QueryString(text_type): --- a/urlobject/urlobject.py +++ b/urlobject/urlobject.py @@ -3,7 +3,7 @@ from .path import URLPath, path_encode, path_decode from .ports import DEFAULT_PORTS from .query_string import QueryString -from .six import text_type, u +from six import text_type, u class URLObject(text_type): --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # URLObject 2 -[![Build Status](https://secure.travis-ci.org/zacharyvoase/urlobject.png?branch=master)](http://travis-ci.org/zacharyvoase/urlobject) - `URLObject` is a utility class for manipulating URLs. The latest incarnation of this library builds upon the ideas of its predecessor, but aims for a clearer API, focusing on proper method names over operator overrides. It's also being @@ -227,7 +225,7 @@ ### Credits -This library bundles [six][], which is licensed as follows: +This library uses [six][], which is licensed as follows: [six]: http://packages.python.org/six/ debian/patches/series0000644000000000000000000000002712264246501012033 0ustar 01-use-system-six.diff debian/rules0000755000000000000000000000062012264250650010246 0ustar #!/usr/bin/make -f export PYBUILD_DESTDIR_python2=debian/python-urlobject/ export PYBUILD_DESTDIR_python3=debian/python3-urlobject/ %: dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild override_dh_auto_build: dh_auto_build -v $(MAKE) -C doc clean html SPHINXOPTS=-N override_dh_auto_clean: dh_auto_clean $(MAKE) -C doc clean .PHONY: override_dh_auto_build override_dh_auto_clean debian/python3-urlobject.docs0000644000000000000000000000003212264250322013424 0ustar doc/.build/html README.md debian/compat0000644000000000000000000000000212264245242010367 0ustar 9 debian/python-urlobject.docs0000644000000000000000000000003212264250312013340 0ustar doc/.build/html README.md