[Python-modules-commits] r31612 - in packages/python-isoweek/trunk (11 files)

hugo6390-guest at users.alioth.debian.org hugo6390-guest at users.alioth.debian.org
Tue Dec 23 12:29:20 UTC 2014


    Date: Tuesday, December 23, 2014 @ 12:29:19
  Author: hugo6390-guest
Revision: 31612

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

Added:
  packages/python-isoweek/trunk/debian/
  packages/python-isoweek/trunk/debian/changelog
  packages/python-isoweek/trunk/debian/compat
  packages/python-isoweek/trunk/debian/control
  packages/python-isoweek/trunk/debian/copyright
  packages/python-isoweek/trunk/debian/python-isoweek.docs
  packages/python-isoweek/trunk/debian/python3-isoweek.docs
  packages/python-isoweek/trunk/debian/rules
  packages/python-isoweek/trunk/debian/source/
  packages/python-isoweek/trunk/debian/source/format
  packages/python-isoweek/trunk/debian/watch


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

Added: packages/python-isoweek/trunk/debian/changelog
===================================================================
--- packages/python-isoweek/trunk/debian/changelog	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/changelog	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1,5 @@
+python-isoweek (1.3.0-1) unstable; urgency=low
+
+  * Initial release (Closes: 771591).
+
+ -- Hugo Lefeuvre <hugo6390 at orange.fr>  Tue, 23 Dec 2014 12:09:20 +0100

Added: packages/python-isoweek/trunk/debian/compat
===================================================================
--- packages/python-isoweek/trunk/debian/compat	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/compat	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1 @@
+8

Added: packages/python-isoweek/trunk/debian/control
===================================================================
--- packages/python-isoweek/trunk/debian/control	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/control	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1,43 @@
+Source: python-isoweek
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Hugo Lefeuvre <hugo6390 at orange.fr>
+Build-Depends: debhelper (>= 8.0.0),
+               dh-python,
+               python-all (>= 2.6.6),
+               python-setuptools,
+               python3-all,
+               python3-setuptools 
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Homepage: https://github.com/gisle/isoweek
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-isoweek/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-isoweek/trunk/
+
+Package: python-isoweek
+Architecture: all
+Depends: ${shlibs:Depends}, 
+         ${misc:Depends}, 
+         ${python:Depends} 
+Description: Python module to provide the class Week
+ The isoweek Python module provide the class Week. Instances
+ represent specific weeks spanning Monday to Sunday. There are 52 or 53
+ numbered weeks in a year. Week 1 is defined to be the first week with 4
+ or more days in January.
+ .
+ This is the python2 version of the package.
+
+Package: python3-isoweek
+Architecture: all
+Depends: ${shlibs:Depends}, 
+         ${misc:Depends}, 
+         ${python3:Depends} 
+Description: Python module to provide the class Week (Python 3)
+ The isoweek Python module provide the class Week. Instances
+ represent specific weeks spanning Monday to Sunday. There are 52 or 53
+ numbered weeks in a year. Week 1 is defined to be the first week with 4
+ or more days in January.
+ .
+ This is the python3 version of the package.

Added: packages/python-isoweek/trunk/debian/copyright
===================================================================
--- packages/python-isoweek/trunk/debian/copyright	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/copyright	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1,33 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: isoweek
+Source: https://github.com/gisle/isoweek
+
+Files: *
+Copyright: 2011 Gisle Aas <gisle at aas.no>
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2014 Hugo Lefeuvre <hugo6390 at orange.fr>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+  * Redistributions of source code must retain the above copyright notice, this
+    list of conditions and the following disclaimer.
+ .
+  * 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.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER OR CONTRIBUTORS 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/python-isoweek/trunk/debian/python-isoweek.docs
===================================================================
--- packages/python-isoweek/trunk/debian/python-isoweek.docs	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/python-isoweek.docs	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1,2 @@
+CHANGES.txt
+README.rst

Added: packages/python-isoweek/trunk/debian/python3-isoweek.docs
===================================================================
--- packages/python-isoweek/trunk/debian/python3-isoweek.docs	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/python3-isoweek.docs	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1,2 @@
+CHANGES.txt
+README.rst

Added: packages/python-isoweek/trunk/debian/rules
===================================================================
--- packages/python-isoweek/trunk/debian/rules	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/rules	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+export DH_VERBOSE=1
+export PYBUILD_NAME=isoweek
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+


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

Added: packages/python-isoweek/trunk/debian/source/format
===================================================================
--- packages/python-isoweek/trunk/debian/source/format	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/source/format	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-isoweek/trunk/debian/watch
===================================================================
--- packages/python-isoweek/trunk/debian/watch	                        (rev 0)
+++ packages/python-isoweek/trunk/debian/watch	2014-12-23 12:29:19 UTC (rev 31612)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/i/isoweek/isoweek-(.+)\.tar\.gz




More information about the Python-modules-commits mailing list