debian/0000755000000000000000000000000012203154354007165 5ustar debian/source/0000755000000000000000000000000012203154205010460 5ustar debian/source/format0000644000000000000000000000001412202746447011704 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212202746447010374 0ustar 9 debian/control0000644000000000000000000000304212203030036010555 0ustar Source: python-schroot Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Paul Tagliamonte Build-Depends: debhelper (>= 9), python-all, python3-all, python-setuptools, python3-setuptools, Standards-Version: 3.9.4 Homepage: https://github.com/paultag/python-schroot Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-schroot/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-schroot/trunk/ X-Python-Version: >= 2.7 X-Python3-Version: >= 3.2 Package: python-schroot Architecture: all Depends: ${misc:Depends}, ${python:Depends}, schroot Description: set of Python bindings to schroot chroots Ever want to chroot into schroot chroots in Python? Today's your lucky day! You can schroot your chroots all day long with this miracle of science. . This package contains a set of Python wrappers to the schroot(1) binary, to enable programmatic access to schroot containers. . This package contains the Python 2 bindings only. Package: python3-schroot Architecture: all Depends: ${misc:Depends}, ${python3:Depends}, schroot Description: set of Python 3 bindings to schroot chroots Ever want to chroot into schroot chroots in Python? Today's your lucky day! You can schroot your chroots all day long with this miracle of science. . This package contains a set of Python wrappers to the schroot(1) binary, to enable programmatic access to schroot containers. . This package contains the Python 3 bindings only. debian/changelog0000644000000000000000000000021712202746447011050 0ustar python-schroot (0.3-1) unstable; urgency=low * Initial release. -- Paul Tagliamonte Wed, 14 Aug 2013 01:10:13 -0400 debian/copyright0000644000000000000000000000246512202746447011140 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: python-schroot Upstream-Contact: Paul Tagliamonte Source: https://github.com/paultag/python-schroot/ Files: * Copyright: 2013, Paul Tagliamonte 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/watch0000644000000000000000000000013012203027304010202 0ustar version=3 http://pypi.python.org/packages/source/s/schroot/ \ schroot-(\d.*).tar.gz debian/rules0000755000000000000000000000144112202746447010256 0ustar #!/usr/bin/make -f PY2_PACKAGE_NAME = python-schroot PY3_PACKAGE_NAME = python3-schroot PYVERS = $(shell pyversions -r) PY3VERS = $(shell py3versions -r) %: dh $@ --with python2,python3 override_dh_auto_clean: dh_auto_clean rm -rvf ./*.egg-info ./build override_dh_auto_build: set -xe; \ for py in $(PYVERS) $(PY3VERS); do \ $$py setup.py build; \ done override_dh_auto_install: set -xe; \ for py in $(PYVERS); do \ $$py setup.py install --skip-build --root debian/$(PY2_PACKAGE_NAME) \ --install-layout deb; \ done set -xe; \ for py in $(PY3VERS); do \ $$py setup.py install --skip-build --root debian/$(PY3_PACKAGE_NAME) \ --install-layout deb; \ done # Remove me when dh_python2 can handle this file rm -vf debian/*/usr/lib/python*/*-packages/*.egg-info/SOURCES.txt