[Python-modules-commits] r18499 - in packages/ordereddict/trunk (9 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Sun Sep 11 15:38:45 UTC 2011


    Date: Sunday, September 11, 2011 @ 15:38:44
  Author: fladi-guest
Revision: 18499

Initial packaging for ordereddict.

Added:
  packages/ordereddict/trunk/debian/
  packages/ordereddict/trunk/debian/changelog
  packages/ordereddict/trunk/debian/compat
  packages/ordereddict/trunk/debian/control
  packages/ordereddict/trunk/debian/copyright
  packages/ordereddict/trunk/debian/rules
  packages/ordereddict/trunk/debian/source/
  packages/ordereddict/trunk/debian/source/format
  packages/ordereddict/trunk/debian/watch


Property changes on: packages/ordereddict/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/ordereddict/trunk/debian/changelog
===================================================================
--- packages/ordereddict/trunk/debian/changelog	                        (rev 0)
+++ packages/ordereddict/trunk/debian/changelog	2011-09-11 15:38:44 UTC (rev 18499)
@@ -0,0 +1,5 @@
+ordereddict (1.1-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #641207)
+
+ -- Fladischer Michael <FladischerMichael at fladi.at>  Sun, 11 Sep 2011 17:38:16 +0200

Added: packages/ordereddict/trunk/debian/compat
===================================================================
--- packages/ordereddict/trunk/debian/compat	                        (rev 0)
+++ packages/ordereddict/trunk/debian/compat	2011-09-11 15:38:44 UTC (rev 18499)
@@ -0,0 +1 @@
+8

Added: packages/ordereddict/trunk/debian/control
===================================================================
--- packages/ordereddict/trunk/debian/control	                        (rev 0)
+++ packages/ordereddict/trunk/debian/control	2011-09-11 15:38:44 UTC (rev 18499)
@@ -0,0 +1,23 @@
+Source: ordereddict
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Fladischer Michael <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 8~), python-all (>= 2.6.6-3~)
+Standards-Version: 3.9.2
+X-Python-Version: << 2.7
+Homepage: http://pypi.python.org/pypi/ordereddict/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/ordereddict/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/ordereddict/trunk/
+
+Package: python-ordereddict
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: drop-in substitute for collections found in Python 2.7
+ Drop-in substitute for Py2.7's new collections.OrderedDict. It has big-oh
+ performance that matches regular dictionaries (amortized O(1)
+ insertion/deletion/lookup and O(n) iteration/repr/copy/equality_testing).
+ .
+ Ordered dictionaries are just like regular dictionaries but they remember the
+ order that items were inserted. When iterating over an ordered dictionary, the
+ items are returned in the order their keys were first added.

Added: packages/ordereddict/trunk/debian/copyright
===================================================================
--- packages/ordereddict/trunk/debian/copyright	                        (rev 0)
+++ packages/ordereddict/trunk/debian/copyright	2011-09-11 15:38:44 UTC (rev 18499)
@@ -0,0 +1,30 @@
+Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=174
+Upstream-Name: ordereddict
+Upstream-Contact: Raymond Hettinger <python at rcn.com>
+Source: http://pypi.python.org/pypi/ordereddict/
+
+Files: *
+Copyright: 2009, Raymond Hettinger <python at rcn.com>
+License: MIT
+
+Files: debian/*
+Copyright: 2011, Fladischer Michael <FladischerMichael at fladi.at>
+License: MIT
+
+License: MIT
+ 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/ordereddict/trunk/debian/rules
===================================================================
--- packages/ordereddict/trunk/debian/rules	                        (rev 0)
+++ packages/ordereddict/trunk/debian/rules	2011-09-11 15:38:44 UTC (rev 18499)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2
+
+.PHONY: override_dh_gencontrol
+override_dh_gencontrol:
+	sed -i '/python:Depends/s/python *(<<[^,]*, *//' debian/python-ordereddict.substvars
+	dh_gencontrol
+


Property changes on: packages/ordereddict/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/ordereddict/trunk/debian/source/format
===================================================================
--- packages/ordereddict/trunk/debian/source/format	                        (rev 0)
+++ packages/ordereddict/trunk/debian/source/format	2011-09-11 15:38:44 UTC (rev 18499)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/ordereddict/trunk/debian/watch
===================================================================
--- packages/ordereddict/trunk/debian/watch	                        (rev 0)
+++ packages/ordereddict/trunk/debian/watch	2011-09-11 15:38:44 UTC (rev 18499)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/o/ordereddict/ordereddict-([\d\.]+)\.tar\.gz




More information about the Python-modules-commits mailing list