[Python-modules-commits] r31339 - in packages/python-cachetools/trunk (15 files)

chrisk-guest at users.alioth.debian.org chrisk-guest at users.alioth.debian.org
Fri Oct 31 19:02:49 UTC 2014


    Date: Friday, October 31, 2014 @ 19:02:48
  Author: chrisk-guest
Revision: 31339

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

Added:
  packages/python-cachetools/trunk/debian/
  packages/python-cachetools/trunk/debian/changelog
  packages/python-cachetools/trunk/debian/compat
  packages/python-cachetools/trunk/debian/control
  packages/python-cachetools/trunk/debian/copyright
  packages/python-cachetools/trunk/debian/python-cachetools.install
  packages/python-cachetools/trunk/debian/python3-cachetools.install
  packages/python-cachetools/trunk/debian/rules
  packages/python-cachetools/trunk/debian/source/
  packages/python-cachetools/trunk/debian/source/format
  packages/python-cachetools/trunk/debian/tests/
  packages/python-cachetools/trunk/debian/tests/control
  packages/python-cachetools/trunk/debian/tests/unittests-default-python
  packages/python-cachetools/trunk/debian/tests/unittests-default-python3
  packages/python-cachetools/trunk/debian/watch


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

Added: packages/python-cachetools/trunk/debian/changelog
===================================================================
--- packages/python-cachetools/trunk/debian/changelog	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/changelog	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,5 @@
+python-cachetools (0.6.0-1) unstable; urgency=medium
+
+  * Initial release. Closes: #767298
+
+ -- Christian Kastner <debian at kvr.at>  Thu, 30 Oct 2014 22:15:23 +0100

Added: packages/python-cachetools/trunk/debian/compat
===================================================================
--- packages/python-cachetools/trunk/debian/compat	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/compat	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1 @@
+9

Added: packages/python-cachetools/trunk/debian/control
===================================================================
--- packages/python-cachetools/trunk/debian/control	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/control	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,53 @@
+Source: python-cachetools
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Christian Kastner <debian at kvr.at>
+Build-Depends:
+    debhelper (>= 9),
+    dh-python,
+    python-all,
+    python3-all,
+    python-setuptools,
+    python3-setuptools
+Standards-Version: 3.9.6
+Homepage: https://github.com/tkem/cachetools/
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-cachetools/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-cachetools/trunk/
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+XS-Testsuite: autopkgtest
+
+Package: python-cachetools
+Architecture: all
+Depends:
+    ${python:Depends},
+    ${misc:Depends}
+Description: extensible memoizing collections and decorators for Python
+ This Python module provides various memoizing collections and decorators,
+ including a variant of the Python 3 Standard Library functools.lru_cache()
+ function decorator.
+ .
+ The supported cache algorithms are:
+ .
+  * Least recently used (LRU)
+  * Least frequently used (LFU)
+  * Random replacement (RR)
+  * Per-item time-to-live (TTL)
+
+Package: python3-cachetools
+Architecture: all
+Depends:
+    ${python3:Depends},
+    ${misc:Depends}
+Description: extensible memoizing collections and decorators for Python 3
+ This Python 3 module provides various memoizing collections and decorators,
+ including a variant of the Python 3 Standard Library functools.lru_cache()
+ function decorator.
+ .
+ The supported cache algorithms are:
+ .
+  * Least recently used (LRU)
+  * Least frequently used (LFU)
+  * Random replacement (RR)
+  * Per-item time-to-live (TTL)

Added: packages/python-cachetools/trunk/debian/copyright
===================================================================
--- packages/python-cachetools/trunk/debian/copyright	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/copyright	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,29 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
+Upstream-Name: cachetools
+Source: https://pypi.python.org/pypi/cachetools/
+
+Files: *
+Copyright: 2014, Thomas Kremmer
+License: Expat
+ 
+Files: debian/*
+Copyright: 2014, Christian Kastner <debian at kvr.at>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
+ this software and associated documentation files (the "Software"), to deal in
+ the Software without restriction, including without limitation the rights to
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ the Software, and to permit persons to whom the Software is furnished to do so,
+ subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Added: packages/python-cachetools/trunk/debian/python-cachetools.install
===================================================================
--- packages/python-cachetools/trunk/debian/python-cachetools.install	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/python-cachetools.install	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1 @@
+/usr/lib/python2.*

Added: packages/python-cachetools/trunk/debian/python3-cachetools.install
===================================================================
--- packages/python-cachetools/trunk/debian/python3-cachetools.install	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/python3-cachetools.install	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1 @@
+/usr/lib/python3.*

Added: packages/python-cachetools/trunk/debian/rules
===================================================================
--- packages/python-cachetools/trunk/debian/rules	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/rules	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_install:
+	dh_install --fail-missing


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

Added: packages/python-cachetools/trunk/debian/source/format
===================================================================
--- packages/python-cachetools/trunk/debian/source/format	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/source/format	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-cachetools/trunk/debian/tests/control
===================================================================
--- packages/python-cachetools/trunk/debian/tests/control	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/tests/control	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,7 @@
+Tests: unittests-default-python
+Restrictions: allow-stderr
+Depends: python-cachetools
+
+Tests: unittests-default-python3
+Restrictions: allow-stderr
+Depends: python3-cachetools

Added: packages/python-cachetools/trunk/debian/tests/unittests-default-python
===================================================================
--- packages/python-cachetools/trunk/debian/tests/unittests-default-python	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/tests/unittests-default-python	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,11 @@
+#!/bin/sh
+# Run python-cachetools unit tests using the default Python version. Assumes
+# $ADTTMP is set, see /usr/share/doc/autopkgtest/README.package-tests.rst.gz
+set -e
+
+# We just copy the entire test suite to the $ADTTMP directory and run the
+# tests from within there.
+mkdir "$ADTTMP"/python
+cp -r tests "$ADTTMP"/python/
+cd "$ADTTMP"/python
+python -m unittest discover -v

Added: packages/python-cachetools/trunk/debian/tests/unittests-default-python3
===================================================================
--- packages/python-cachetools/trunk/debian/tests/unittests-default-python3	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/tests/unittests-default-python3	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,11 @@
+#!/bin/sh
+# Run python3-cachetools unit tests using the default Python 3 version. Assumes
+# $ADTTMP is set, see /usr/share/doc/autopkgtest/README.package-tests.rst.gz
+set -e
+
+# We just copy the entire test suite to the $ADTTMP directory and run the
+# tests from within there.
+mkdir "$ADTTMP"/python3
+cp -r tests "$ADTTMP"/python3
+cd "$ADTTMP"/python3
+python3 -m unittest discover -v

Added: packages/python-cachetools/trunk/debian/watch
===================================================================
--- packages/python-cachetools/trunk/debian/watch	                        (rev 0)
+++ packages/python-cachetools/trunk/debian/watch	2014-10-31 19:02:48 UTC (rev 31339)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/c/cachetools/cachetools-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list