[Python-modules-commits] r28417 - in packages/python-queuelib/trunk (10 files)
vcheng at users.alioth.debian.org
vcheng at users.alioth.debian.org
Mon Mar 31 22:29:43 UTC 2014
Date: Monday, March 31, 2014 @ 22:29:42
Author: vcheng
Revision: 28417
[svn-inject] Applying Debian modifications (1.1.1-1) to trunk
Added:
packages/python-queuelib/trunk/debian/
packages/python-queuelib/trunk/debian/changelog
packages/python-queuelib/trunk/debian/compat
packages/python-queuelib/trunk/debian/control
packages/python-queuelib/trunk/debian/copyright
packages/python-queuelib/trunk/debian/docs
packages/python-queuelib/trunk/debian/rules
packages/python-queuelib/trunk/debian/source/
packages/python-queuelib/trunk/debian/source/format
packages/python-queuelib/trunk/debian/watch
Property changes on: packages/python-queuelib/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/python-queuelib/trunk/debian/changelog
===================================================================
--- packages/python-queuelib/trunk/debian/changelog (rev 0)
+++ packages/python-queuelib/trunk/debian/changelog 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1,5 @@
+python-queuelib (1.1.1-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Vincent Cheng <vcheng at debian.org> Mon, 31 Mar 2014 13:32:03 -0700
Added: packages/python-queuelib/trunk/debian/compat
===================================================================
--- packages/python-queuelib/trunk/debian/compat (rev 0)
+++ packages/python-queuelib/trunk/debian/compat 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1 @@
+9
Added: packages/python-queuelib/trunk/debian/control
===================================================================
--- packages/python-queuelib/trunk/debian/control (rev 0)
+++ packages/python-queuelib/trunk/debian/control 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1,36 @@
+Source: python-queuelib
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders:
+ Ignace Mouzannar <mouzannar at gmail.com>,
+ Vincent Cheng <vcheng at debian.org>
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ python-all (>= 2.6.6-3~),
+ python3-all
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.3
+Standards-Version: 3.9.5
+Homepage: https://github.com/scrapy/queuelib
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-queuelib/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-queuelib/trunk/
+
+Package: python-queuelib
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
+Description: collection of persistent (disk-based) queues (Python 2)
+ Queuelib is a collection of persistent (disk-based) queues for Python.
+ Queuelib goals are speed and simplicity.
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-queuelib
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Description: collection of persistent (disk-based) queues (Python 3)
+ Queuelib is a collection of persistent (disk-based) queues for Python.
+ Queuelib goals are speed and simplicity.
+ .
+ This is the Python 3 version of the package.
Added: packages/python-queuelib/trunk/debian/copyright
===================================================================
--- packages/python-queuelib/trunk/debian/copyright (rev 0)
+++ packages/python-queuelib/trunk/debian/copyright 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1,40 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-queuelib
+Source: https://github.com/scrapy/queuelib
+
+Files: *
+Copyright: 2013-2014 w3lib and Scrapy developers
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2014 Vincent Cheng <vcheng at debian.org>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Copyright (c) w3lib and Scrapy developers.
+ All rights reserved.
+ .
+ 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. Neither the name of Scrapy nor the names of its contributors may be used
+ to endorse or promote products derived from this software without
+ specific prior written permission.
+ .
+ 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 OWNER 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-queuelib/trunk/debian/docs
===================================================================
--- packages/python-queuelib/trunk/debian/docs (rev 0)
+++ packages/python-queuelib/trunk/debian/docs 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1 @@
+README.rst
Added: packages/python-queuelib/trunk/debian/rules
===================================================================
--- packages/python-queuelib/trunk/debian/rules (rev 0)
+++ packages/python-queuelib/trunk/debian/rules 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=queuelib
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_installchangelogs:
+ dh_installchangelogs NEWS
Property changes on: packages/python-queuelib/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python-queuelib/trunk/debian/source/format
===================================================================
--- packages/python-queuelib/trunk/debian/source/format (rev 0)
+++ packages/python-queuelib/trunk/debian/source/format 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/python-queuelib/trunk/debian/watch
===================================================================
--- packages/python-queuelib/trunk/debian/watch (rev 0)
+++ packages/python-queuelib/trunk/debian/watch 2014-03-31 22:29:42 UTC (rev 28417)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/q/queuelib/queuelib-(.*).tar.gz
More information about the Python-modules-commits
mailing list