[Python-modules-commits] r1872 - in /packages/epsilon: ./ branches/ tags/ trunk/ trunk/debian/ trunk/debian/changelog trunk/debian/compat trunk/debian/control trunk/debian/copyright trunk/debian/rules trunk/debian/watch

zack at users.alioth.debian.org zack at users.alioth.debian.org
Wed Mar 14 18:11:06 CET 2007


Author: zack
Date: Wed Mar 14 17:11:05 2007
New Revision: 1872

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1872
Log:
first check-in of the epsilon package

Added:
    packages/epsilon/   (with props)
    packages/epsilon/branches/
    packages/epsilon/tags/
    packages/epsilon/trunk/
    packages/epsilon/trunk/debian/   (with props)
    packages/epsilon/trunk/debian/changelog
    packages/epsilon/trunk/debian/compat
    packages/epsilon/trunk/debian/control
    packages/epsilon/trunk/debian/copyright
    packages/epsilon/trunk/debian/rules   (with props)
    packages/epsilon/trunk/debian/watch

Propchange: packages/epsilon/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Mar 14 17:11:05 2007
@@ -1,0 +1,2 @@
+build-area
+tarballs

Propchange: packages/epsilon/trunk/debian/
------------------------------------------------------------------------------
    mergeWithUpstream = 1

Added: packages/epsilon/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/epsilon/trunk/debian/changelog?rev=1872&op=file
==============================================================================
--- packages/epsilon/trunk/debian/changelog (added)
+++ packages/epsilon/trunk/debian/changelog Wed Mar 14 17:11:05 2007
@@ -1,0 +1,6 @@
+epsilon (0.5.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #414889)
+
+ -- Stefano Zacchiroli <zack at debian.org>  Wed, 14 Mar 2007 17:01:00 +0100
+

Added: packages/epsilon/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/epsilon/trunk/debian/compat?rev=1872&op=file
==============================================================================
--- packages/epsilon/trunk/debian/compat (added)
+++ packages/epsilon/trunk/debian/compat Wed Mar 14 17:11:05 2007
@@ -1,0 +1,1 @@
+5

Added: packages/epsilon/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/epsilon/trunk/debian/control?rev=1872&op=file
==============================================================================
--- packages/epsilon/trunk/debian/control (added)
+++ packages/epsilon/trunk/debian/control Wed Mar 14 17:11:05 2007
@@ -1,0 +1,31 @@
+Source: epsilon
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Stefano Zacchiroli <zack at debian.org>
+Build-Depends: debhelper (>= 5), cdbs, python, python-support (>= 0.3)
+XS-Python-Version: all
+XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/epsilon/trunk/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/python-modules/trunk/packages/epsilon/trunk/
+Standards-Version: 3.7.2
+
+Package: python-epsilon
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+XB-Python-Version: ${python:Versions}
+Description: utility Python modules commonly used by Divmod.org project
+ Epsilon is a set of Python utility modules, commonly used by all Divmod.org
+ Python-based projects.
+ .
+ This is intended mainly as a support package for code used by Divmod
+ projects, however it contains many useful modules.
+ .
+ Currently included:
+  * a powerful date/time formatting and import/export class
+    (extime.Time), for exchanging date and time information between all
+    Python's various ways to interpret objects as times or time deltas
+  * tools for managing concurrent asynchronous processes within Twisted
+  * a metaclass which helps you define classes with explicit states
+  * a featureful Version class
+  * a formal system for application of monkey-patches.
+

Added: packages/epsilon/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/epsilon/trunk/debian/copyright?rev=1872&op=file
==============================================================================
--- packages/epsilon/trunk/debian/copyright (added)
+++ packages/epsilon/trunk/debian/copyright Wed Mar 14 17:11:05 2007
@@ -1,0 +1,33 @@
+This package was debianized by Stefano Zacchiroli <zack at debian.org> on
+Wed, 14 Mar 2007 17:01:00 +0100.
+
+It was downloaded from http://www.divmod.org/trac/wiki/DivmodEpsilon
+
+Upstream Author: Divmod Inc. <http://www.divmod.org/>
+
+Copyright: (C) 2005 Divmod Inc.
+
+License:
+
+ 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.
+
+ The Debian packaging is (C) 2007, Stefano Zacchiroli <zack at debian.org>
+ and is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: packages/epsilon/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/epsilon/trunk/debian/rules?rev=1872&op=file
==============================================================================
--- packages/epsilon/trunk/debian/rules (added)
+++ packages/epsilon/trunk/debian/rules Wed Mar 14 17:11:05 2007
@@ -1,0 +1,8 @@
+#!/usr/bin/make -f
+DEB_PYTHON_SYSTEM = pysupport
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+PKGDIR=debian/python-epsilon/
+binary-post-install/python-epsilon::
+	rm -rf $(PKGDIR)/usr/share/python-support/python-epsilon/build/
+	mv $(PKGDIR)/usr/bin/benchmark $(PKGDIR)/usr/bin/epsilon-benchmark

Propchange: packages/epsilon/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/epsilon/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/epsilon/trunk/debian/watch?rev=1872&op=file
==============================================================================
--- packages/epsilon/trunk/debian/watch (added)
+++ packages/epsilon/trunk/debian/watch Wed Mar 14 17:11:05 2007
@@ -1,0 +1,8 @@
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+# <Webpage URL> <string match>
+http://www.divmod.org/trac/wiki/DivmodEpsilon .*/Epsilon-(.*)\.tar\.gz\?format=raw
+




More information about the Python-modules-commits mailing list