[Python-modules-commits] [python-buzhug] 01/07: Import python-buzhug_1.8-2.dsc
Mattia Rizzolo
mattia at mapreri.org
Mon Dec 14 16:49:04 UTC 2015
This is an automated email from the git hooks/post-receive script.
mattia pushed a commit to tag debian/1.8-3
in repository python-buzhug.
commit 98503d26329eeefdd3823525f1f6d268c509342b
Author: Mattia Rizzolo <mattia at debian.org>
Date: Mon Dec 14 16:31:49 2015 +0000
Import python-buzhug_1.8-2.dsc
---
debian/changelog | 33 +++++++++++++++++++++++++++++++++
debian/compat | 1 +
debian/control | 27 +++++++++++++++++++++++++++
debian/copyright | 41 +++++++++++++++++++++++++++++++++++++++++
debian/rules | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
debian/watch | 2 ++
6 files changed, 154 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..344c263
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,33 @@
+python-buzhug (1.8-2) unstable; urgency=low
+
+ * Have been a while in experimental without any problems.
+ * Standards-Version updated.
+ * debian-rules-missing-recommended-target fixed.
+ * Text of the BSD license included.
+
+ -- Luciano Bello <luciano at debian.org> Sun, 19 Jan 2014 16:25:20 +0100
+
+python-buzhug (1.8-1) experimental; urgency=low
+
+ * New upstream release
+
+ -- Luciano Bello <luciano at debian.org> Thu, 11 Mar 2010 22:39:59 -0300
+
+python-buzhug (1.6-1) unstable; urgency=low
+
+ * New upstream release
+ * Standards-Version updated
+
+ -- Luciano Bello <luciano at debian.org> Sat, 06 Mar 2010 11:29:38 -0300
+
+python-buzhug (1.4-1) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Luciano Bello <luciano at debian.org> Sat, 14 Feb 2009 21:27:28 -0200
+
+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
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c9a23ec
--- /dev/null
+++ b/debian/control
@@ -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.9.5
+Homepage: http://buzhug.sourceforge.net/
+XS-Python-Version: >= 2.5
+
+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.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..967ae44
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,41 @@
+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:
+
+ Copyright (c) The Regents of the University of California.
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the University nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+ 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.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d892b64
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,50 @@
+#!/usr/bin/make -f
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS=$(shell pyversions -r)
+
+build: build-arch build-indep
+build-arch: build-stamp
+build-indep: build-stamp
+build-stamp: build
+
+build:
+
+clean:
+ dh_testdir
+
+ python setup.py clean
+
+ rm -f build-stamp
+ rm -f buzhug/*.pyc buzhug/*.pyo
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+
+ python setup.py install --root=debian/python-buzhug
+
+# 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
+ dh_python2
+ 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
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..ffdc689
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/buzhug/buzhug-(.*)\.zip
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-buzhug.git
More information about the Python-modules-commits
mailing list