[Python-modules-commits] r22045 - in packages/d2to1/trunk (9 files)
aurel32 at users.alioth.debian.org
aurel32 at users.alioth.debian.org
Sun Jun 3 22:31:23 UTC 2012
Date: Sunday, June 3, 2012 @ 22:31:22
Author: aurel32
Revision: 22045
Import d2to1 version 0.2.7-1
Added:
packages/d2to1/trunk/debian/
packages/d2to1/trunk/debian/changelog
packages/d2to1/trunk/debian/compat
packages/d2to1/trunk/debian/control
packages/d2to1/trunk/debian/copyright
packages/d2to1/trunk/debian/rules
packages/d2to1/trunk/debian/source/
packages/d2to1/trunk/debian/source/format
packages/d2to1/trunk/debian/watch
Added: packages/d2to1/trunk/debian/changelog
===================================================================
--- packages/d2to1/trunk/debian/changelog (rev 0)
+++ packages/d2to1/trunk/debian/changelog 2012-06-03 22:31:22 UTC (rev 22045)
@@ -0,0 +1,6 @@
+d2to1 (0.2.7-1) unstable; urgency=low
+
+ * Initial release of d2to1, needed by newer versions of PyFITS. Closes:
+ #675885.
+
+ -- Aurelien Jarno <aurel32 at debian.org> Mon, 04 Jun 2012 00:30:54 +0200
Added: packages/d2to1/trunk/debian/compat
===================================================================
--- packages/d2to1/trunk/debian/compat (rev 0)
+++ packages/d2to1/trunk/debian/compat 2012-06-03 22:31:22 UTC (rev 22045)
@@ -0,0 +1 @@
+7
Added: packages/d2to1/trunk/debian/control
===================================================================
--- packages/d2to1/trunk/debian/control (rev 0)
+++ packages/d2to1/trunk/debian/control 2012-06-03 22:31:22 UTC (rev 22045)
@@ -0,0 +1,39 @@
+Source: d2to1
+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, python3-all (>= 3.1.2-6~), python3-setuptools
+X-Python-Version: >= 2.5
+X-Python3-Version: >= 3.0
+Standards-Version: 3.9.3
+Homepage: http://pypi.python.org/pypi/d2to1
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/d2to1/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/d2to1/trunk/
+
+Package: python-d2to1
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python support for distutils2-like setup.cfg files as package metadata
+ d2to1 (the 'd' is for 'distutils') allows using distutils2-like setup.cfg
+ files for a package's metadata with a distribute/setuptools setup.py script.
+ It works by providing a distutils2-formatted setup.cfg file containing all
+ of a package's metadata, and a very minimal setup.py which will slurp its
+ arguments from the setup.cfg.
+ .
+ This package provides d2to1 on the Python 2 module path. It is complemented
+ by python3-d2to1.
+
+Package: python3-d2to1
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Python3 support for distutils2-like setup.cfg files as package metadata
+ d2to1 (the 'd' is for 'distutils') allows using distutils2-like setup.cfg
+ files for a package's metadata with a distribute/setuptools setup.py script.
+ It works by providing a distutils2-formatted setup.cfg file containing all
+ of a package's metadata, and a very minimal setup.py which will slurp its
+ arguments from the setup.cfg.
+ .
+ This package provides d2to1 on the Python 3 module path. It is complemented
+ by python-d2to1.
+
Added: packages/d2to1/trunk/debian/copyright
===================================================================
--- packages/d2to1/trunk/debian/copyright (rev 0)
+++ packages/d2to1/trunk/debian/copyright 2012-06-03 22:31:22 UTC (rev 22045)
@@ -0,0 +1,38 @@
+This package was debianized by Aurelien Jarno <aurel32 at debian.org>
+Mon, 04 Jun 2012 00:07:25 +0200
+
+It was downloaded from http://pypi.python.org/pypi/d2to1
+
+Author:
+ Erik M. Bray <embray at stsci.edu>
+
+Copyright:
+ Copyright (C) 2011 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/d2to1/trunk/debian/rules
===================================================================
--- packages/d2to1/trunk/debian/rules (rev 0)
+++ packages/d2to1/trunk/debian/rules 2012-06-03 22:31:22 UTC (rev 22045)
@@ -0,0 +1,32 @@
+#!/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-d2to1 \
+ --install-layout=deb; \
+ done
+ set -ex; \
+ for py in $(PY3VERS); do \
+ $$py setup.py install --skip-build --no-compile \
+ --root debian/python3-d2to1 \
+ --install-layout=deb; \
+ done
+
+override_dh_auto_clean:
+ rm -rf build
+ rm -rf d2to1.egg-info
+ find . \( -name '*.pyc' -o -name __pycache__ \) -delete
Property changes on: packages/d2to1/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/d2to1/trunk/debian/source/format
===================================================================
--- packages/d2to1/trunk/debian/source/format (rev 0)
+++ packages/d2to1/trunk/debian/source/format 2012-06-03 22:31:22 UTC (rev 22045)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/d2to1/trunk/debian/watch
===================================================================
--- packages/d2to1/trunk/debian/watch (rev 0)
+++ packages/d2to1/trunk/debian/watch 2012-06-03 22:31:22 UTC (rev 22045)
@@ -0,0 +1,3 @@
+version=3
+
+http://pypi.python.org/packages/source/d/d2to1/d2to1-(.+).tar.gz
More information about the Python-modules-commits
mailing list