debian/0000755000000000000000000000000012302375664007176 5ustar debian/docs0000644000000000000000000000001312225300333010024 0ustar README.txt debian/copyright0000644000000000000000000000253612225300333011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: http://www.assembla.com/wiki/show/python-cmd2 Files: * Copyright: © 2010-2011, Catherine Devlin License: MIT Files: debian/* Copyright: © 2011, Federico Ceratto 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/changelog0000644000000000000000000000434212302375664011053 0ustar cmd2 (0.6.7-2fakesync1build1) trusty; urgency=medium * Rebuild to drop files installed into /usr/share/pyshared. -- Matthias Klose Sun, 23 Feb 2014 13:46:28 +0000 cmd2 (0.6.7-2fakesync1) trusty-proposed; urgency=low * Fake sync due to mismatching orig tarball (LP: #1252528). -- Logan Rosen Tue, 19 Nov 2013 08:43:40 +0100 cmd2 (0.6.7-2) unstable; urgency=medium * Remove dependency on setuptools for Python2 (Closes: #725867) -- Federico Ceratto Wed, 09 Oct 2013 17:09:22 +0100 cmd2 (0.6.7-1.1) unstable; urgency=low * Non-maintainer upload. * Adds support for python3 (and corresponding build-depends). * Fixed missing python-setuptools build-depends. * Added extend-diff-ignore = "^[^/]*[.]egg-info/" in debian/source/options. * Added rm -rf build in dh_clean target. * VCS URLs now canonical. -- Thomas Goirand Sat, 05 Oct 2013 08:46:30 +0000 cmd2 (0.6.7-1) unstable; urgency=low * New upstream release. (Closes: #724206) -- Federico Ceratto Sat, 28 Sep 2013 15:14:53 +0100 cmd2 (0.6.6.1-1) unstable; urgency=low * New upstream release. * dpkg Pre-Depends added. -- Federico Ceratto Wed, 21 Aug 2013 22:26:20 +0100 cmd2 (0.6.5.1-1) unstable; urgency=low * d/changelog: New upstream release 0.6.5.1 * Standards-Version bumped to 3.9.4, minor updates -- Federico Ceratto Sun, 05 May 2013 13:24:20 +0100 cmd2 (0.6.4-2) experimental; urgency=low * Dependency to python-pyparsing added * Debhelper version bumped to 9 -- Federico Ceratto Sun, 16 Sep 2012 16:50:46 +0100 cmd2 (0.6.4-1) unstable; urgency=low * New upstream release. * Standards-Version bumped to 3.9.3, minor updates. -- Federico Ceratto Mon, 28 May 2012 21:28:35 +0100 cmd2 (0.6.3-2) unstable; urgency=low * Dependency to python-setuptools added -- Federico Ceratto Sat, 05 Nov 2011 15:32:19 +0000 cmd2 (0.6.3-1) unstable; urgency=low * Initial release (Closes: #647033) -- Federico Ceratto Tue, 25 Oct 2011 18:33:50 +0100 debian/compat0000644000000000000000000000000212225300333010355 0ustar 9 debian/control0000644000000000000000000000333312242613255010575 0ustar Source: cmd2 Section: python Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Federico Ceratto Build-Depends: debhelper (>= 9~), python-all (>= 2.6.6-3~), python3-all, python3-setuptools Standards-Version: 3.9.4 X-Python-Version: >= 2.5 X-Python3-Version: >= 3.2 Homepage: https://bitbucket.org/catherinedevlin/cmd2 Vcs-Git: git://anonscm.debian.org/collab-maint/cmd2.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/cmd2.git;a=summary Package: python-cmd2 Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: python-pyparsing (>= 2.0.1), python-setuptools (>= 0.6.14), ${misc:Depends}, ${python:Depends} Recommends: ${python:Recommends} Provides: ${python:Provides} Description: enhanced Python cmd module - Python 2.x Drop-in replacement adds several features for command-prompt tools, like searchable and persistent command history, multi-line commands, input and output redirections, integrated Python shell, testing helpers . This package provides the Python 2.x module. Package: python3-cmd2 Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: python3-pyparsing (>= 2.0.1), python3-setuptools (>= 0.6.14), ${misc:Depends}, ${python3:Depends} Recommends: ${python3:Recommends} Provides: ${python3:Provides} Description: enhanced Python cmd module - Python 3.x Drop-in replacement adds several features for command-prompt tools, like searchable and persistent command history, multi-line commands, input and output redirections, integrated Python shell, testing helpers . This package provides the Python 3.x module. debian/rules0000755000000000000000000000105112225300333010234 0ustar #!/usr/bin/make -f PYTHONS:=$(shell pyversions -vr) PYTHON3S:=$(shell py3versions -vr) %: dh $@ --buildsystem=python_distutils --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-cmd2; \ done set -e && for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python3-cmd2; \ done override_dh_clean: dh_clean -O--buildsystem=python_distutils rm -rf build debian/source/0000755000000000000000000000000012225300333010457 5ustar debian/source/format0000644000000000000000000000001412225300333011665 0ustar 3.0 (quilt) debian/source/options0000644000000000000000000000005212225300333012072 0ustar extend-diff-ignore = "^[^/]*[.]egg-info/" debian/watch0000644000000000000000000000012012225300333010201 0ustar version=3 http://pypi.python.org/packages/source/c/cmd2/cmd2-([\d\.]*)\.tar\.gz