debian/0000755000000000000000000000000012250635473007175 5ustar debian/watch0000644000000000000000000000014011762766025010226 0ustar version=3 http://pypi.python.org/packages/source/s/stsci.distutils/stsci.distutils-(.+).tar.gz debian/control0000644000000000000000000000326312250634662010603 0ustar Source: stsci.distutils Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Aurelien Jarno Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~), python-setuptools, python-d2to1 (>= 0.2.9~), python3-all (>= 3.1.2-6~), python3-setuptools, python3-d2to1 (>= 0.2.9~) X-Python-Version: >= 2.5 X-Python3-Version: >= 3.0 Standards-Version: 3.9.5 Homepage: http://pypi.python.org/pypi/stsci.distutils Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/stsci.distutils/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/stsci.distutils/trunk/ Package: python-stsci.distutils Architecture: all Depends: ${misc:Depends}, ${python:Depends} Description: Python packaging utilities for STScI's packages This package contains utilities used to package some of STScI's Python projects; specifically those projects that comprise stsci_python_ and Astrolib_. It currently consists mostly of some setup_hook scripts meant for use with distutils2 and/or d2to1, and a customized easy_install command meant for use with distribute. . This is the Python 2 version. Package: python3-stsci.distutils Architecture: all Depends: ${misc:Depends}, ${python3:Depends} Description: Python3 packaging utilities for STScI's packages This package contains utilities used to package some of STScI's Python projects; specifically those projects that comprise stsci_python_ and Astrolib_. It currently consists mostly of some setup_hook scripts meant for use with distutils2 and/or d2to1, and a customized easy_install command meant for use with distribute. . This is the Python 3 version. debian/source/0000755000000000000000000000000012250635174010473 5ustar debian/source/format0000644000000000000000000000001411762766025011710 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211762766025010400 0ustar 7 debian/changelog0000644000000000000000000000136412250635101011037 0ustar stsci.distutils (0.3.6-1) unstable; urgency=low * New upstream version. * Bump Standards-Version to 3.9.5 (no changes). -- Aurelien Jarno Sat, 07 Dec 2013 16:06:55 +0100 stsci.distutils (0.3.2-1) unstable; urgency=low [ Aurelien Jarno ] * New upstream version. * Tighten Build-Depends on python-d2to1 to (>= 0.2.9~) * Bump Standards-Version to 3.9.4 (no changes). [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. -- Aurelien Jarno Thu, 09 May 2013 13:41:26 +0200 stsci.distutils (0.3-1) unstable; urgency=low * Initial release of stsci.distutils, needed by newer versions of PyFITS. Closes: #675889. -- Aurelien Jarno Mon, 04 Jun 2012 00:57:50 +0200 debian/copyright0000644000000000000000000000332211762766025011135 0ustar This package was debianized by Aurelien Jarno Mon, 04 Jun 2012 00:35:28 +0200 It was downloaded from http://pypi.python.org/pypi/stsci.distutils Author: Erik M. Bray Copyright: Copyright (C) 2005 Association of Universities for Research in Astronomy (AURA) License: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of AURA and its representatives may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY AURA ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AURA BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/rules0000755000000000000000000000150611762766025010264 0ustar #!/usr/bin/make -f PYVERS := $(shell pyversions -r) PY3VERS := $(shell py3versions -r) %: dh $@ --with python2,python3 override_dh_auto_build: set -ex; \ for py in $(PYVERS) $(PY3VERS); do \ $$py setup.py build; \ done override_dh_auto_install: set -ex; \ for py in $(PYVERS); do \ $$py setup.py install --skip-build --no-compile \ --root debian/python-stsci.distutils \ --install-layout=deb; \ done set -ex; \ for py in $(PY3VERS); do \ $$py setup.py install --skip-build --no-compile \ --root debian/python3-stsci.distutils \ --install-layout=deb; \ done override_dh_auto_clean: rm -rf build rm -rf stsci.distutils.egg-info rm -f stsci/distutils/version.py find . \( -name '*.pyc' -o -name __pycache__ \) -delete