[Python-modules-commits] r22048 - in packages/stsci.distutils (12 files)
aurel32 at users.alioth.debian.org
aurel32 at users.alioth.debian.org
Sun Jun 3 22:58:30 UTC 2012
Date: Sunday, June 3, 2012 @ 22:58:29
Author: aurel32
Revision: 22048
Import stsci.distutils version 0.3
Added:
packages/stsci.distutils/branches/
packages/stsci.distutils/tags/
packages/stsci.distutils/trunk/
packages/stsci.distutils/trunk/debian/
packages/stsci.distutils/trunk/debian/changelog
packages/stsci.distutils/trunk/debian/compat
packages/stsci.distutils/trunk/debian/control
packages/stsci.distutils/trunk/debian/copyright
packages/stsci.distutils/trunk/debian/rules
packages/stsci.distutils/trunk/debian/source/
packages/stsci.distutils/trunk/debian/source/format
packages/stsci.distutils/trunk/debian/watch
Added: packages/stsci.distutils/trunk/debian/changelog
===================================================================
--- packages/stsci.distutils/trunk/debian/changelog (rev 0)
+++ packages/stsci.distutils/trunk/debian/changelog 2012-06-03 22:58:29 UTC (rev 22048)
@@ -0,0 +1,6 @@
+stsci.distutils (0.3-1) unstable; urgency=low
+
+ * Initial release of stsci.distutils, needed by newer versions
+ of PyFITS. Closes: #675889.
+
+ -- Aurelien Jarno <aurel32 at debian.org> Mon, 04 Jun 2012 00:57:50 +0200
Added: packages/stsci.distutils/trunk/debian/compat
===================================================================
--- packages/stsci.distutils/trunk/debian/compat (rev 0)
+++ packages/stsci.distutils/trunk/debian/compat 2012-06-03 22:58:29 UTC (rev 22048)
@@ -0,0 +1 @@
+7
Added: packages/stsci.distutils/trunk/debian/control
===================================================================
--- packages/stsci.distutils/trunk/debian/control (rev 0)
+++ packages/stsci.distutils/trunk/debian/control 2012-06-03 22:58:29 UTC (rev 22048)
@@ -0,0 +1,36 @@
+Source: stsci.distutils
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Aurelien Jarno <aurel32 at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~), python-setuptools, python-d2to1, python3-all (>= 3.1.2-6~), python3-setuptools, python3-d2to1
+X-Python-Version: >= 2.5
+X-Python3-Version: >= 3.0
+Standards-Version: 3.9.3
+Homepage: http://pypi.python.org/pypi/stsci.distutils
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/stsci.distutils/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/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.
Added: packages/stsci.distutils/trunk/debian/copyright
===================================================================
--- packages/stsci.distutils/trunk/debian/copyright (rev 0)
+++ packages/stsci.distutils/trunk/debian/copyright 2012-06-03 22:58:29 UTC (rev 22048)
@@ -0,0 +1,38 @@
+This package was debianized by Aurelien Jarno <aurel32 at debian.org>
+Mon, 04 Jun 2012 00:35:28 +0200
+
+It was downloaded from http://pypi.python.org/pypi/stsci.distutils
+
+Author:
+ Erik M. Bray <embray at stsci.edu>
+
+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.
Added: packages/stsci.distutils/trunk/debian/rules
===================================================================
--- packages/stsci.distutils/trunk/debian/rules (rev 0)
+++ packages/stsci.distutils/trunk/debian/rules 2012-06-03 22:58:29 UTC (rev 22048)
@@ -0,0 +1,33 @@
+#!/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
Property changes on: packages/stsci.distutils/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/stsci.distutils/trunk/debian/source/format
===================================================================
--- packages/stsci.distutils/trunk/debian/source/format (rev 0)
+++ packages/stsci.distutils/trunk/debian/source/format 2012-06-03 22:58:29 UTC (rev 22048)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/stsci.distutils/trunk/debian/watch
===================================================================
--- packages/stsci.distutils/trunk/debian/watch (rev 0)
+++ packages/stsci.distutils/trunk/debian/watch 2012-06-03 22:58:29 UTC (rev 22048)
@@ -0,0 +1,3 @@
+version=3
+
+http://pypi.python.org/packages/source/s/stsci.distutils/stsci.distutils-(.+).tar.gz
More information about the Python-modules-commits
mailing list