[Python-modules-commits] r1875 - in /packages/python-axiom: ./ branches/ tags/ trunk/ trunk/debian/ trunk/debian/TODO.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 19:10:33 CET 2007


Author: zack
Date: Wed Mar 14 18:10:33 2007
New Revision: 1875

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

Added:
    packages/python-axiom/   (with props)
    packages/python-axiom/branches/
    packages/python-axiom/tags/
    packages/python-axiom/trunk/
    packages/python-axiom/trunk/debian/   (with props)
    packages/python-axiom/trunk/debian/TODO.Debian
      - copied unchanged from r1874, packages/epsilon/trunk/debian/TODO.Debian
    packages/python-axiom/trunk/debian/changelog
    packages/python-axiom/trunk/debian/compat
    packages/python-axiom/trunk/debian/control
    packages/python-axiom/trunk/debian/copyright
    packages/python-axiom/trunk/debian/rules   (with props)
    packages/python-axiom/trunk/debian/watch

Propchange: packages/python-axiom/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Mar 14 18:10:33 2007
@@ -1,0 +1,2 @@
+build-area
+tarballs

Propchange: packages/python-axiom/trunk/debian/
------------------------------------------------------------------------------
    mergeWithUpstream = 1

Added: packages/python-axiom/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/python-axiom/trunk/debian/changelog?rev=1875&op=file
==============================================================================
--- packages/python-axiom/trunk/debian/changelog (added)
+++ packages/python-axiom/trunk/debian/changelog Wed Mar 14 18:10:33 2007
@@ -1,0 +1,6 @@
+python-axiom (0.5.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #414892)
+
+ -- Stefano Zacchiroli <zack at debian.org>  Wed, 14 Mar 2007 18:13:48 +0100
+

Added: packages/python-axiom/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/python-axiom/trunk/debian/compat?rev=1875&op=file
==============================================================================
--- packages/python-axiom/trunk/debian/compat (added)
+++ packages/python-axiom/trunk/debian/compat Wed Mar 14 18:10:33 2007
@@ -1,0 +1,1 @@
+5

Added: packages/python-axiom/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/python-axiom/trunk/debian/control?rev=1875&op=file
==============================================================================
--- packages/python-axiom/trunk/debian/control (added)
+++ packages/python-axiom/trunk/debian/control Wed Mar 14 18:10:33 2007
@@ -1,0 +1,36 @@
+Source: python-axiom
+Section: python
+Priority: optional
+Maintainer: Stefano Zacchiroli <zack at debian.org>
+Build-Depends: debhelper (>= 5), cdbs, python, python-support (>= 0.3)
+Build-Depends-Indep: python-twisted-core, python-epsilon, python-sqlite
+XS-Python-Version: all
+XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-axiom/trunk/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/python-modules/trunk/packages/python-axiom/trunk/
+Standards-Version: 3.7.2
+
+Package: python-axiom
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-twisted-core, python-epsilon, python-sqlite
+Description: a Python object database
+ Divmod Axiom is an object database, or alternatively, an
+ object-relational mapper, implemented on top of Python.
+ .
+ Its primary goal is to provide an object-oriented layer with the key
+ aspects of OOP (Object Oriented Programming), i.e. polymorphism and
+ message dispatch, without hindering the power of an RDBMS (Relational
+ DataBase Management System).
+ .
+ Axiom is a live database, not only an SQL generation tool: it includes
+ an implementation of a scheduler service, external file references,
+ automatic upgraders, robust failure handling, and Twisted integration.
+ .
+ Axiom is tightly integrated with Twisted, and can store, start, and
+ stop Twisted services directly from the database using the included
+ 'axiomatic' command-line tool.
+ .
+ Note: Axiom currently supports only SQLite and does NOT have any
+ features for dealing with concurrency.
+ .
+  Homepage: http://www.divmod.org/trac/wiki/DivmodAxiom
+

Added: packages/python-axiom/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/python-axiom/trunk/debian/copyright?rev=1875&op=file
==============================================================================
--- packages/python-axiom/trunk/debian/copyright (added)
+++ packages/python-axiom/trunk/debian/copyright Wed Mar 14 18:10:33 2007
@@ -1,0 +1,33 @@
+This package was debianized by Stefano Zacchiroli <zack at debian.org> on
+Wed, 14 Mar 2007 18:13:48 +0100.
+
+It was downloaded from http://www.divmod.org/trac/wiki/DivmodAxiom
+
+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/python-axiom/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/python-axiom/trunk/debian/rules?rev=1875&op=file
==============================================================================
--- packages/python-axiom/trunk/debian/rules (added)
+++ packages/python-axiom/trunk/debian/rules Wed Mar 14 18:10:33 2007
@@ -1,0 +1,7 @@
+#!/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-axiom/
+binary-post-install/python-axiom::
+	rm -rf $(PKGDIR)/usr/share/python-support/python-axiom/build/

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

Added: packages/python-axiom/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/python-axiom/trunk/debian/watch?rev=1875&op=file
==============================================================================
--- packages/python-axiom/trunk/debian/watch (added)
+++ packages/python-axiom/trunk/debian/watch Wed Mar 14 18:10:33 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/DivmodAxiom .*/Axiom-(.*)\.tar\.gz\?format=raw
+




More information about the Python-modules-commits mailing list