[Python-modules-commits] r26093 - in packages/python-nine/trunk (11 files)

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Mon Oct 7 11:09:55 UTC 2013


    Date: Monday, October 7, 2013 @ 11:09:53
  Author: takaki
Revision: 26093

[svn-inject] Applying Debian modifications (0.3.3-1) to trunk

Added:
  packages/python-nine/trunk/debian/
  packages/python-nine/trunk/debian/changelog
  packages/python-nine/trunk/debian/compat
  packages/python-nine/trunk/debian/control
  packages/python-nine/trunk/debian/copyright
  packages/python-nine/trunk/debian/docs
  packages/python-nine/trunk/debian/rules
  packages/python-nine/trunk/debian/source/
  packages/python-nine/trunk/debian/source/format
  packages/python-nine/trunk/debian/source/options
  packages/python-nine/trunk/debian/watch


Property changes on: packages/python-nine/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-nine/trunk/debian/changelog
===================================================================
--- packages/python-nine/trunk/debian/changelog	                        (rev 0)
+++ packages/python-nine/trunk/debian/changelog	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1,5 @@
+python-nine (0.3.3-1) unstable; urgency=low
+
+  * Initial release. (Closes: #720282)
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Tue, 20 Aug 2013 11:58:22 +0900

Added: packages/python-nine/trunk/debian/compat
===================================================================
--- packages/python-nine/trunk/debian/compat	                        (rev 0)
+++ packages/python-nine/trunk/debian/compat	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1 @@
+8

Added: packages/python-nine/trunk/debian/control
===================================================================
--- packages/python-nine/trunk/debian/control	                        (rev 0)
+++ packages/python-nine/trunk/debian/control	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1,52 @@
+Source: python-nine
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: TANIGUCHI Takaki <takaki at debian.org>
+Build-Depends:
+	debhelper (>= 8.0.0)
+	, python-all
+	, python3-all
+	, python-setuptools
+	, python3-setuptools
+Standards-Version: 3.9.4
+Homepage: https://pypi.python.org/pypi/nine
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-nine/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-nine/trunk/
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+
+Package: python-nine
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python 2 / 3 compatibility, like six, but favouring Python 3
+ When thou writeth Python, thou shalt write Python 3 and, just for a
+ while, ensure that the thing worketh on Python 2.7 and, possibly, even
+ 2.6.
+ .
+ Just before Python 2 is finally phased out, thine codebase shall look
+ more like 3 than like 2.
+ .
+ nine facilitates this new point of view. You can write code that is
+ as 3ish as possible while still supporting 2.6. Very comfortable for
+ writing new projects.
+ .
+ This package contains the Python 2 bindings only.
+
+
+Package: python3-nine
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Python 2 / 3 compatibility, like six, but favouring Python 3
+ When thou writeth Python, thou shalt write Python 3 and, just for a
+ while, ensure that the thing worketh on Python 2.7 and, possibly, even
+ 2.6.
+ .
+ Just before Python 2 is finally phased out, thine codebase shall look
+ more like 3 than like 2.
+ .
+ nine facilitates this new point of view. You can write code that is
+ as 3ish as possible while still supporting 2.6. Very comfortable for
+ writing new projects.
+ .
+ This package contains the Python 3 bindings only.

Added: packages/python-nine/trunk/debian/copyright
===================================================================
--- packages/python-nine/trunk/debian/copyright	                        (rev 0)
+++ packages/python-nine/trunk/debian/copyright	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1,27 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-nine
+Source: https://pypi.python.org/pypi/nine
+
+Files: *
+Copyright: Nando Florestan
+License: Public Domain
+ Public Domain
+
+Files: debian/*
+Copyright: 2013 TANIGUCHI Takaki <takaki at debian.org>
+License: GPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".

Added: packages/python-nine/trunk/debian/docs
===================================================================
--- packages/python-nine/trunk/debian/docs	                        (rev 0)
+++ packages/python-nine/trunk/debian/docs	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-nine/trunk/debian/rules
===================================================================
--- packages/python-nine/trunk/debian/rules	                        (rev 0)
+++ packages/python-nine/trunk/debian/rules	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+export PYBUILD_DESTDIR_python2=debian/python-nine/
+export PYBUILD_DESTDIR_python3=debian/python3-nine/
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild


Property changes on: packages/python-nine/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-nine/trunk/debian/source/format
===================================================================
--- packages/python-nine/trunk/debian/source/format	                        (rev 0)
+++ packages/python-nine/trunk/debian/source/format	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-nine/trunk/debian/source/options
===================================================================
--- packages/python-nine/trunk/debian/source/options	                        (rev 0)
+++ packages/python-nine/trunk/debian/source/options	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"

Added: packages/python-nine/trunk/debian/watch
===================================================================
--- packages/python-nine/trunk/debian/watch	                        (rev 0)
+++ packages/python-nine/trunk/debian/watch	2013-10-07 11:09:53 UTC (rev 26093)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/n/nine/nine-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list