debian/0000755000000000000000000000000012174137306007172 5ustar debian/compat0000644000000000000000000000000212174137306010370 0ustar 9 debian/control0000644000000000000000000000300112174137306010567 0ustar Source: python-termcolor Section: python Priority: optional Maintainer: PKG OpenStack Uploaders: Julien Danjou , Thomas Goirand , Mehdi Abaakouk Build-Depends: debhelper (>= 9), python-setuptools, python-all (>= 2.6.6-3~), python3-all, python3-setuptools Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-termcolor.git Vcs-Git: git://anonscm.debian.org/openstack/python-termcolor.git Homepage: http://pypi.python.org/pypi/termcolor Package: python-termcolor Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: ${python:Depends}, ${misc:Depends} Recommends: ${python:Recommends} Description: ANSII Color formatting for output in terminal - Python 2.x The termcolor Python module provides ANSII Color formatting for output in terminal. It may be useful for the output of unit testing results in color, for example using openstack.nose_plugin. . This package provides the module for Python 2.x. Package: python3-termcolor Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: ${python3:Depends}, ${misc:Depends} Recommends: ${python:Recommends} Description: ANSII Color formatting for output in terminal - Python 3.x The termcolor Python module provides ANSII Color formatting for output in terminal. It may be useful for the output of unit testing results in color, for example using openstack.nose_plugin. . This package provides the module for Python 3.x. debian/source/0000755000000000000000000000000012174137306010472 5ustar debian/source/format0000644000000000000000000000001412174137306011700 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000031412174137306010607 0ustar [DEFAULT] upstream-branch = upstream-unstable debian-branch = debian-unstable pristine-tar = True [git-buildpackage] export-dir = ../build-area/ tarball-dir = ../tarballs/ [git-import-orig] dch = False debian/python3-termcolor.docs0000644000000000000000000000002712174137306013453 0ustar README.rst CHANGES.rst debian/python-termcolor.docs0000644000000000000000000000002712174137306013370 0ustar README.rst CHANGES.rst debian/watch0000644000000000000000000000012412174137306010220 0ustar version=3 http://pypi.python.org/packages/source/t/termcolor termcolor-(.*).tar.gz debian/changelog0000644000000000000000000000024012174137306011040 0ustar python-termcolor (1.1.0-1) unstable; urgency=low * Initial release. (Closes: #717785) -- Thomas Goirand Thu, 25 Jul 2013 13:26:29 +0800 debian/copyright0000644000000000000000000000261712174137306011133 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: termcolor Source: http://pypi.python.org/pypi/termcolor Files: debian/* Copyright: (c) 2013, Thomas Goirand License: MIT Files: * Copyright: (c) 2013, Konstantin Lepa (c) 2008-2011, Volvox Development Team License: MIT License: MIT 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/rules0000755000000000000000000000071012174137306010250 0ustar #!/usr/bin/make -f PYTHONS:=$(shell pyversions -vr) PYTHON3S:=$(shell py3versions -vr) %: dh $@ --with python2,python3 override_dh_auto_install: set -e && for pyvers in $(PYTHONS); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python-termcolor; \ done set -e && for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python3-termcolor; \ done