[Python-modules-commits] r14077 - in packages/storm (13 files)
nomadium-guest at users.alioth.debian.org
nomadium-guest at users.alioth.debian.org
Wed Jul 28 23:30:40 UTC 2010
Date: Wednesday, July 28, 2010 @ 23:30:39
Author: nomadium-guest
Revision: 14077
Import storm package
Added:
packages/storm/branches/
packages/storm/tags/
packages/storm/trunk/
packages/storm/trunk/debian/
packages/storm/trunk/debian/changelog
packages/storm/trunk/debian/compat
packages/storm/trunk/debian/control
packages/storm/trunk/debian/copyright
packages/storm/trunk/debian/docs
packages/storm/trunk/debian/rules
packages/storm/trunk/debian/source/
packages/storm/trunk/debian/source/format
packages/storm/trunk/debian/watch
Added: packages/storm/trunk/debian/changelog
===================================================================
--- packages/storm/trunk/debian/changelog (rev 0)
+++ packages/storm/trunk/debian/changelog 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1,79 @@
+storm (0.16.0-1) unstable; urgency=low
+
+ * Initial release in Debian. (Closes: #511253),
+
+ -- Miguel Landaeta <miguel at miguel.cc> Wed, 28 Jul 2010 19:39:55 -0430
+
+storm (0.15-0ubuntu1) karmic; urgency=low
+
+ * New upstream release.
+ * debian/control:
+ - Make python-storm architecture-dependent, as Storm builds extensions
+ now. (LP: #338420)
+ - Add ${shlibs:Depends} to python-storm's Depends field.
+ * debian/rules:
+ - Update version number.
+ - Remove no longer useful DH_ALWAYS_EXCLUDE -- we need /usr/lib now.
+ * debian/copyright:
+ - Update upstream copyright dates.
+ - Replace '(C)' in Debian packaging copyright notice with 'copyright',
+ which is actually legally meaningful.
+
+ -- William Grant <wgrant at ubuntu.com> Tue, 18 Aug 2009 10:40:00 +1000
+
+storm (0.14-0ubuntu2) jaunty; urgency=low
+
+ * Really update to the new upstream version. The previous upload had a
+ reversion to 0.12 in the diff.gz. (LP: #364405)
+
+ -- William Grant <wgrant at ubuntu.com> Tue, 21 Apr 2009 12:08:58 +1000
+
+storm (0.14-0ubuntu1) jaunty; urgency=low
+
+ * New upstream version.
+ * Watch file added
+
+ -- Morten Kjeldgaard <mok0 at ubuntu.com> Fri, 16 Jan 2009 10:43:56 +0100
+
+storm (0.12-0ubuntu2) intrepid; urgency=low
+
+ * Added python-psycopg2, python-mysqldb and python-pysqlite2 to Suggests of
+ python-storm (LP: #259883).
+
+ -- Alessio Treglia <quadrispro at ubuntu.com> Thu, 21 Aug 2008 19:19:29 +0200
+
+storm (0.12-0ubuntu1) hardy; urgency=low
+
+ [ Morten Kjeldgaard ]
+ * New upstream release, fixes several bugs (LP: #156100)
+ - debian/rules: get-orig-source target added. Avoid packing
+ usr/lib
+ - debian/control: move to section python, move http stanza
+ to Homepage field.
+
+ [ Scott Kitterman ]
+ * Change get-orig-source to use production launchpad URL (remove edge)
+
+ -- Morten Kjeldgaard <mok at bioxray.au.dk> Mon, 25 Feb 2008 15:35:09 +0100
+
+storm (0.11-0ubuntu2) hardy; urgency=low
+
+ * Fix subst variable in debian/control to make python-storm install properly
+ again.
+ * Don't run prerm if upgrading from 0.11-0ubuntu1.
+
+ -- Soren Hansen <soren at ubuntu.com> Fri, 11 Jan 2008 17:39:39 +0100
+
+storm (0.11-0ubuntu1) hardy; urgency=low
+
+ * New upstream release
+ * Switch to python-central.
+
+ -- Soren Hansen <soren at ubuntu.com> Thu, 10 Jan 2008 17:23:53 +0100
+
+storm (0.9-0ubuntu1) gutsy; urgency=low
+
+ * Initial release.
+
+ -- Soren Hansen <soren at ubuntu.com> Fri, 13 Jul 2007 09:38:21 +0100
+
Added: packages/storm/trunk/debian/compat
===================================================================
--- packages/storm/trunk/debian/compat (rev 0)
+++ packages/storm/trunk/debian/compat 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1 @@
+7
Added: packages/storm/trunk/debian/control
===================================================================
--- packages/storm/trunk/debian/control (rev 0)
+++ packages/storm/trunk/debian/control 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1,77 @@
+Source: storm
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Miguel Landaeta <miguel at miguel.cc>
+Build-Depends: debhelper (>= 7.0.50~), python-all-dev (>= 2.4), python-support,
+ python-all-dbg (>= 2.4), python-setuptools
+Standards-Version: 3.9.1
+XS-Python-Version: all
+Homepage: http://storm.canonical.com/
+Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/storm/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/storm/trunk/
+
+Package: python-storm
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
+Provides: ${python:Provides}
+Suggests: python-psycopg2, python-mysqldb, python-pysqlite2
+XB-Python-Version: ${python:Versions}
+Description: object-relational mapper (ORM) for Python
+ Storm is an object-relation mapper (ORM) for the Python language. In
+ simple terms, that kind of system allows rows from a relational
+ database to be seen as objects in an object-oriented language like
+ Python.
+ .
+ Features:
+ * Clean and lightweight API offers a short learning curve and long-
+ erm maintainability.
+ * Storm is developed in a test-driven manner. An untested line of
+ code is considered a bug.
+ * Storm needs no special class constructors, nor imperative base
+ classes.
+ * Storm is well designed (different classes have very clear
+ boundaries, with small and clean public APIs).
+ * Designed from day one to work both with thin relational databases,
+ such as SQLite, and big iron systems like PostgreSQL and MySQL.
+ * Storm is easy to debug, since its code is written with a KISS
+ principle, and thus is easy to understand.
+ * Designed from day one to work both at the low end, with trivial
+ small databases, and the high end, with applications accessing
+ billion row tables and committing to multiple database backends.
+ * It's very easy to write and support backends for Storm (current
+ backends have around 100 lines of code).
+
+Package: python-storm-dbg
+Section: debug
+Priority: extra
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends},
+ python-storm (= ${binary:Version})
+Recommends: python-dbg
+Description: object-relational mapper (ORM) for Python - debugging files
+ Storm is an object-relation mapper (ORM) for the Python language. In
+ simple terms, that kind of system allows rows from a relational
+ database to be seen as objects in an object-oriented language like
+ Python.
+ .
+ Features:
+ * Clean and lightweight API offers a short learning curve and long-
+ erm maintainability.
+ * Storm is developed in a test-driven manner. An untested line of
+ code is considered a bug.
+ * Storm needs no special class constructors, nor imperative base
+ classes.
+ * Storm is well designed (different classes have very clear
+ boundaries, with small and clean public APIs).
+ * Designed from day one to work both with thin relational databases,
+ such as SQLite, and big iron systems like PostgreSQL and MySQL.
+ * Storm is easy to debug, since its code is written with a KISS
+ principle, and thus is easy to understand.
+ * Designed from day one to work both at the low end, with trivial
+ small databases, and the high end, with applications accessing
+ billion row tables and committing to multiple database backends.
+ * It's very easy to write and support backends for Storm (current
+ backends have around 100 lines of code).
+ .
+ This package contains the extension built for the Python debug interpreter.
Added: packages/storm/trunk/debian/copyright
===================================================================
--- packages/storm/trunk/debian/copyright (rev 0)
+++ packages/storm/trunk/debian/copyright 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1,33 @@
+This package was debianized by Soren Hansen <soren at ubuntu.com> on
+Fri, 13 Jul 2007 09:38:21 +0100.
+
+It was downloaded from https://launchpad.net/storm/+download
+
+Upstream Author:
+
+ Gustavo Niemeyer <gustavo at niemeyer.net>
+
+Copyright:
+
+ Copyright (c) 2006-2009 Canonical
+
+License:
+
+ Storm is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation; either version 2.1 of
+ the License, or (at your option) any later version.
+
+ Storm 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 Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+On Debian systems, the complete text of the GNU Lesser General Public
+License version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1 file.
+
+The Debian packaging is copyright 2007, Soren Hansen <soren at ubuntu.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: packages/storm/trunk/debian/docs
===================================================================
--- packages/storm/trunk/debian/docs (rev 0)
+++ packages/storm/trunk/debian/docs 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1,2 @@
+README
+TODO
Added: packages/storm/trunk/debian/rules
===================================================================
--- packages/storm/trunk/debian/rules (rev 0)
+++ packages/storm/trunk/debian/rules 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1,33 @@
+#!/usr/bin/make -f
+%:
+ dh $@
+
+override_dh_auto_build::
+ for python in $(shell pyversions -r); do \
+ $$python setup.py build; \
+ done
+
+override_dh_install:
+ for python in $(shell pyversions -r); do \
+ $$python setup.py install --root debian/python-storm --prefix /usr; \
+ done
+ dh_install
+
+override_dh_installchangelogs:
+ dh_installchangelogs NEWS
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ for python in $(shell pyversions -r); do \
+ $$python setup.py test; \
+ $$python-dbg setup.py test; \
+ done
+endif
+
+override_dh_strip:
+ dh_strip --dbg-package=python-storm-dbg
+ cd debian/python-storm-dbg/usr/lib/debug/usr/lib && mv pyshared pymodules
+
+get-orig-source:
+ cd $(dir $(firstword $(MAKEFILE_LIST)))../ && \
+ uscan --rename --force-download --watchfile debian/watch --destdir $(CURDIR)
Property changes on: packages/storm/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/storm/trunk/debian/source/format
===================================================================
--- packages/storm/trunk/debian/source/format (rev 0)
+++ packages/storm/trunk/debian/source/format 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/storm/trunk/debian/watch
===================================================================
--- packages/storm/trunk/debian/watch (rev 0)
+++ packages/storm/trunk/debian/watch 2010-07-28 23:30:39 UTC (rev 14077)
@@ -0,0 +1,2 @@
+version=3
+https://launchpad.net/storm/+download http://launchpad.net/storm/trunk/.*/storm-(.*)\.tar\.bz2
More information about the Python-modules-commits
mailing list