[Python-modules-commits] r20572 - in packages/python-socketpool/trunk (11 files)
takaki at users.alioth.debian.org
takaki at users.alioth.debian.org
Sun Feb 26 14:21:52 UTC 2012
Date: Sunday, February 26, 2012 @ 14:21:51
Author: takaki
Revision: 20572
[svn-inject] Applying Debian modifications (0.3.0-1) to trunk
Added:
packages/python-socketpool/trunk/debian/
packages/python-socketpool/trunk/debian/changelog
packages/python-socketpool/trunk/debian/compat
packages/python-socketpool/trunk/debian/control
packages/python-socketpool/trunk/debian/copyright
packages/python-socketpool/trunk/debian/docs
packages/python-socketpool/trunk/debian/rules
packages/python-socketpool/trunk/debian/source/
packages/python-socketpool/trunk/debian/source/format
packages/python-socketpool/trunk/debian/source/options
packages/python-socketpool/trunk/debian/watch
Property changes on: packages/python-socketpool/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/python-socketpool/trunk/debian/changelog
===================================================================
--- packages/python-socketpool/trunk/debian/changelog (rev 0)
+++ packages/python-socketpool/trunk/debian/changelog 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1,5 @@
+python-socketpool (0.3.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #661333)
+
+ -- TANIGUCHI Takaki <takaki at debian.org> Sun, 26 Feb 2012 23:17:15 +0900
Added: packages/python-socketpool/trunk/debian/compat
===================================================================
--- packages/python-socketpool/trunk/debian/compat (rev 0)
+++ packages/python-socketpool/trunk/debian/compat 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1 @@
+8
Added: packages/python-socketpool/trunk/debian/control
===================================================================
--- packages/python-socketpool/trunk/debian/control (rev 0)
+++ packages/python-socketpool/trunk/debian/control 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1,19 @@
+Source: python-socketpool
+Section: python
+Priority: extra
+Maintainer: TANIGUCHI Takaki <takaki at debian.org>
+Build-Depends: debhelper (>= 8.0.0),
+ python-all,
+ python-setuptools
+Standards-Version: 3.9.3
+Homepage: http://pypi.python.org/pypi/socketpool
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-socketpool/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-socketpool/trunk/
+
+Package: python-socketpool
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Provides: ${python:Provides}
+Description: simple Python socket pool
+ Socket pool is a simple socket pool that suports multiple factories and
+ backends. It can easily be used by gevent, eventlet or any other library.
Added: packages/python-socketpool/trunk/debian/copyright
===================================================================
--- packages/python-socketpool/trunk/debian/copyright (rev 0)
+++ packages/python-socketpool/trunk/debian/copyright 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1,76 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-socketpool
+Source: http://pypi.python.org/pypi/socketpool/0.3.0
+
+Files: *
+Copyright:
+ 2012 Benoît Chesneau <benoitc at e-engura.org>
+ 2012 Tarek Ziade <tarek at ziade.org>
+License: UNLICENSE or MIT
+
+Files: debian/*
+Copyright: 2012 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".
+
+License: UNLICENSE
+ This is free and unencumbered software released into the public domain.
+ .
+ Anyone is free to copy, modify, publish, use, compile, sell, or
+ distribute this software, either in source code form or as a compiled
+ binary, for any purpose, commercial or non-commercial, and by any
+ means.
+ .
+ In jurisdictions that recognize copyright laws, the author or authors
+ of this software dedicate any and all copyright interest in the
+ software to the public domain. We make this dedication for the benefit
+ of the public at large and to the detriment of our heirs and
+ successors. We intend this dedication to be an overt act of
+ relinquishment in perpetuity of all present and future rights to this
+ software under copyright law.
+ .
+ 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 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.
+ .
+ For more information, please refer to <http://unlicense.org/>
+
+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/python-socketpool/trunk/debian/docs
===================================================================
--- packages/python-socketpool/trunk/debian/docs (rev 0)
+++ packages/python-socketpool/trunk/debian/docs 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1 @@
+README.rst
Added: packages/python-socketpool/trunk/debian/rules
===================================================================
--- packages/python-socketpool/trunk/debian/rules (rev 0)
+++ packages/python-socketpool/trunk/debian/rules 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+
+%:
+ dh $@ --with python2
+
+override_dh_auto_install:
+ dh_auto_install
+ rm -r $(CURDIR)/debian/python-socketpool/usr/socketpool
+
Property changes on: packages/python-socketpool/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python-socketpool/trunk/debian/source/format
===================================================================
--- packages/python-socketpool/trunk/debian/source/format (rev 0)
+++ packages/python-socketpool/trunk/debian/source/format 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/python-socketpool/trunk/debian/source/options
===================================================================
--- packages/python-socketpool/trunk/debian/source/options (rev 0)
+++ packages/python-socketpool/trunk/debian/source/options 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"
Added: packages/python-socketpool/trunk/debian/watch
===================================================================
--- packages/python-socketpool/trunk/debian/watch (rev 0)
+++ packages/python-socketpool/trunk/debian/watch 2012-02-26 14:21:51 UTC (rev 20572)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/s/socketpool/socketpool-(.*).tar.gz
More information about the Python-modules-commits
mailing list