debian/0000755000000000000000000000000012203152773007170 5ustar debian/compat0000644000000000000000000000000212203152707010363 0ustar 8 debian/control0000644000000000000000000000253112203152712010565 0ustar Source: swiftsc Section: python Priority: optional Maintainer: Kouhei Maeda Build-Depends: debhelper (>= 8.0.0), python-all (>= 2.6), python-setuptools, python-pytest, pep8, python-mock, python-requests, python-magic, python3-all, python3-setuptools, python3-requests, python3-magic, python3-pytest, python3-mock Standards-Version: 3.9.4 X-Python-Version: >= 2.6, >= 3.2 Homepage: https://github.com/mkouhei/swiftsc Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/swiftsc.git Vcs-Git: git://anonscm.debian.org/openstack/swiftsc.git Package: python-swiftsc Architecture: all Provides: ${python:Provides} Depends: ${python:Depends}, ${misc:Depends}, python-requests, python-magic Description: simple client library of OpenStack Swift This tool is simple client library of OpenStack Swift. This tool is intended to be used in the module and Python script other. The main purpose of this tool is used as a core module for backup tool. Package: python3-swiftsc Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, python3-requests, python3-magic Description: simple client library of OpenStack Swift for python3 This tool is simple client library of OpenStack Swift for python3. This tool is intended to be used in the module and Python script other. The main purpose of this tool is used as a core module for backup tool. debian/py3dist-overrides0000644000000000000000000000004012203152712012475 0ustar setuptools python3-setuptools debian/docs0000644000000000000000000000005712203152707010042 0ustar docs/README.rst docs/TODO.rst docs/HISTORY.rst debian/source/0000755000000000000000000000000012203152707010465 5ustar debian/source/format0000644000000000000000000000001412203152707011673 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000012112203152707010210 0ustar version=3 http://pypi.python.org/packages/source/s/swiftsc/swiftsc-(.*)\.tar\.gz debian/changelog0000644000000000000000000000022512203152712011032 0ustar swiftsc (0.5-1) unstable; urgency=low * Initial release (Closes: #717926) -- Kouhei Maeda Tue, 13 Aug 2013 11:36:47 +0900 debian/copyright0000644000000000000000000000207612203152712011121 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: swiftsc Source: https://github.com/mkouhei/swiftsc Files: * Copyright: 2013 Kouhei Maeda License: GPL-3.0+ Files: debian/* Copyright: 2013 Kouhei Maeda License: GPL-3.0+ License: GPL-3.0+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This package 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 General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". debian/clean0000644000000000000000000000003212203152707010165 0ustar src/*/*.pyc src/*/*/*.pyc debian/rules0000755000000000000000000000250012203152707010242 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ --with python2,python3 override_dh_auto_build: for py in $(shell pyversions -vr); do \ python$$py setup.py build --build-base=_build$$py; \ done override_dh_auto_test: set -e; \ for py in $(shell pyversions -vr); do \ if [ "$$py" < "3.0" ]; then \ py.test-$$py -v $(CURDIR)/_build/lib.$(shell python -c 'import distutils.util as d; print d.get_platform()')-$$py; \ else \ py.test-3 -v $(CURDIR)/_build/lib ;\ fi ;\ done override_dh_auto_install: python setup.py install --no-compile -O0 --install-layout=deb \ --root $(CURDIR)/debian/python-swiftsc && \ python3 setup.py install --no-compile -O0 --install-layout=deb \ --root $(CURDIR)/debian/python3-swiftsc rm -rf $(CURDIR)/debian/python-swiftsc/usr/share/pyshared/swiftsc_tests rm -rf $(CURDIR)/debian/python-swiftsc/usr/lib/python2.6/dist-packages/swiftsc_tests rm -rf $(CURDIR)/debian/python-swiftsc/usr/lib/python2.7/dist-packages/swiftsc_tests rm -rf $(CURDIR)/debian/python3-swiftsc/usr/lib/python3/dist-packages/swiftsc_tests override_dh_auto_clean: dh_clean for py in $(shell pyversions -vr); do \ python$$py setup.py clean --build-temp=_build && \ python$$py setup.py clean --build-temp=_build$$py; \ done rm -rf $(CURDIR)/_build