[Python-modules-commits] r5222 - in packages/python-buzhug (6 files)

luciano at users.alioth.debian.org luciano at users.alioth.debian.org
Thu May 1 23:33:32 UTC 2008


    Date: Thursday, May 1, 2008 @ 23:33:17
  Author: luciano
Revision: 5222

Initial release of new package (#467209)

Added:
  packages/python-buzhug/debian/
  packages/python-buzhug/debian/changelog
  packages/python-buzhug/debian/compat
  packages/python-buzhug/debian/control
  packages/python-buzhug/debian/copyright
  packages/python-buzhug/debian/rules

Added: packages/python-buzhug/debian/changelog
===================================================================
--- packages/python-buzhug/debian/changelog	                        (rev 0)
+++ packages/python-buzhug/debian/changelog	2008-05-01 23:33:17 UTC (rev 5222)
@@ -0,0 +1,5 @@
+python-buzhug (1.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #467209)
+
+ -- Luciano Bello <luciano at debian.org>  Wed, 30 Apr 2008 14:21:53 -0300

Added: packages/python-buzhug/debian/compat
===================================================================
--- packages/python-buzhug/debian/compat	                        (rev 0)
+++ packages/python-buzhug/debian/compat	2008-05-01 23:33:17 UTC (rev 5222)
@@ -0,0 +1 @@
+5

Added: packages/python-buzhug/debian/control
===================================================================
--- packages/python-buzhug/debian/control	                        (rev 0)
+++ packages/python-buzhug/debian/control	2008-05-01 23:33:17 UTC (rev 5222)
@@ -0,0 +1,27 @@
+Source: python-buzhug
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Luciano Bello <luciano at debian.org>
+Build-Depends: debhelper (>= 5.0.38), python-all
+Build-Depends-Indep: python-support (>= 0.6.4)
+Standards-Version: 3.7.3
+Homepage: http://buzhug.sourceforge.net/ 
+XS-Python-Version: all
+
+Package: python-buzhug
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+XB-Python-Version: ${python:Versions}
+Description: pure-Python database engine, using a Pythonic, no-SQL syntax
+ Buzhug is a fast, pure-Python database engine, using a syntax that Python 
+ programmers should find very intuitive.
+ .
+ The data is stored and accessed on disk (it is not an in-memory database); 
+ the implementation has been designed to make all operations, and especially 
+ selection, as fast as possible with an interpreted language.
+ .
+ The database is implemented as a Python iterator, yielding objects whose 
+ attributes are the fields defined when the base is created ; therefore, 
+ requests can be expressed as list comprehensions or generator expressions, 
+ instead of SQL queries.

Added: packages/python-buzhug/debian/copyright
===================================================================
--- packages/python-buzhug/debian/copyright	                        (rev 0)
+++ packages/python-buzhug/debian/copyright	2008-05-01 23:33:17 UTC (rev 5222)
@@ -0,0 +1,36 @@
+This package was debianized by Luciano Bello <luciano at debian.org> on
+Wed, 30 Apr 2008 23:53:32 -0300
+
+It was downloaded from http://buzhug.sourceforge.net/ 
+
+Upstream Author: 
+
+    Pierre Quentel <quentel.pierre at wanadoo.fr>
+
+Copyright: 
+
+    Copyright (c) 2006, Pierre Quentel 
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted under the terms of the BSD License.
+
+    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+    SUCH DAMAGE.
+
+On Debian systems, the complete text of the BSD License can be 
+found in `/usr/share/common-licenses/BSD'.
+
+
+The Debian packaging is (C) 2008, Luciano Bello <luciano at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/python-buzhug/debian/rules
===================================================================
--- packages/python-buzhug/debian/rules	                        (rev 0)
+++ packages/python-buzhug/debian/rules	2008-05-01 23:33:17 UTC (rev 5222)
@@ -0,0 +1,54 @@
+#!/usr/bin/make -f
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS=$(shell pyversions -r)
+
+build:
+
+clean:
+	dh_testdir
+	
+	for python in $(PYVERS); do \
+	   $$python setup.py clean; \
+	done
+	
+	rm -f build-stamp
+	rm -f buzhug/*.pyc buzhug/*.pyo
+	
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_installdirs
+	
+	for python in $(PYVERS); do \
+	   echo $$python ;\
+	   $$python setup.py install --root=debian/python-buzhug; \
+	   if test "python2.5" != $$python ; then \
+	        rm debian/python-buzhug/usr/lib/$$python/site-packages/buzhug/conversion_float.py ;\
+	        rm debian/python-buzhug/usr/lib/$$python/site-packages/buzhug/conversion_float.pyc ;\
+	   fi; \
+	done
+
+# Build architecture-dependent files here.
+binary-arch:
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs doc/
+	dh_pysupport
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install


Property changes on: packages/python-buzhug/debian/rules
___________________________________________________________________
Name: svn:executable
   + 




More information about the Python-modules-commits mailing list