[Python-modules-commits] r14109 - in packages/py-postgresql/trunk (11 files)

wgrz-guest at users.alioth.debian.org wgrz-guest at users.alioth.debian.org
Mon Aug 2 12:57:05 UTC 2010


    Date: Monday, August 2, 2010 @ 12:56:57
  Author: wgrz-guest
Revision: 14109

[svn-inject] Applying Debian modifications (1.0.1-1) to trunk

Added:
  packages/py-postgresql/trunk/debian/
  packages/py-postgresql/trunk/debian/changelog
  packages/py-postgresql/trunk/debian/compat
  packages/py-postgresql/trunk/debian/control
  packages/py-postgresql/trunk/debian/copyright
  packages/py-postgresql/trunk/debian/docs
  packages/py-postgresql/trunk/debian/rules
  packages/py-postgresql/trunk/debian/rules.old
  packages/py-postgresql/trunk/debian/source/
  packages/py-postgresql/trunk/debian/source/format
  packages/py-postgresql/trunk/debian/watch


Property changes on: packages/py-postgresql/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/py-postgresql/trunk/debian/changelog
===================================================================
--- packages/py-postgresql/trunk/debian/changelog	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/changelog	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1,5 @@
+py-postgresql (1.0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #591048)
+
+ -- William Grzybowski <william at agencialivre.com.br>  Thu, 31 Jul 2010 10:47:56 +0000

Added: packages/py-postgresql/trunk/debian/compat
===================================================================
--- packages/py-postgresql/trunk/debian/compat	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/compat	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1 @@
+7

Added: packages/py-postgresql/trunk/debian/control
===================================================================
--- packages/py-postgresql/trunk/debian/control	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/control	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1,20 @@
+Source: py-postgresql
+Section: python
+Priority: optional
+Maintainer: William Grzybowski <william at agencialivre.com.br>
+Build-Depends: debhelper (>= 7.0.50~), python3-all-dev
+Standards-Version: 3.9.1
+XS-Python-Version: >= 3.1
+Homepage: http://python.projects.postgresql.org/
+
+Package: python3-postgresql
+Architecture: any
+Depends: ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}
+Description: pgsql driver, cluster management tools, and client tools
+ py-postgresql is a python3 driver, cluster management tools and client
+ development tools written in pure python 3 with optional optimizations
+ made in C.
+ .
+ Has support for protocol-level prepared statements, COPY interface,
+ arrays and composite types and a python console with connection to
+ PostgreSQL for quick tests and simple scripts called pg_python.

Added: packages/py-postgresql/trunk/debian/copyright
===================================================================
--- packages/py-postgresql/trunk/debian/copyright	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/copyright	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1,42 @@
+This work was packaged for Debian by:
+
+    William Grzybowski <william at agencialivre.com.br> on Thu, 29 Jul 2010 17:47:56 +0000
+
+It was downloaded from:
+
+    http://python.projects.postgresql.org/
+
+Upstream Author(s):
+
+    James William Pye <x at jwp.name>
+
+Copyright:
+
+    Copyright (C) 2004-2010 James Williame Pye
+
+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:
+
+    Copyright (C) 2010 William Grzybowski <william at agencialivre.com.br>
+
+and is licensed under the BSD,
+see "/usr/share/common-licenses/BSD".

Added: packages/py-postgresql/trunk/debian/docs
===================================================================
--- packages/py-postgresql/trunk/debian/docs	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/docs	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1,2 @@
+README
+AUTHORS

Added: packages/py-postgresql/trunk/debian/rules
===================================================================
--- packages/py-postgresql/trunk/debian/rules	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/rules	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+export DH_VERBOSE=1
+export DH_OPTIONS=-v
+
+build3vers := $(shell py3versions -sv)
+
+override_dh_auto_build:
+	for i in $(build3vers); do \
+		python$$i ./setup.py build;\
+	done
+
+
+override_dh_install:
+	dh_install -ppython3-postgresql
+	for i in $(build3vers); do \
+		python$$i ./setup.py install --root $(CURDIR)/debian/python3-postgresql; \
+	done
+
+override_dh_clean:
+	dh_clean
+	rm -rf build
+
+%:
+	dh --with python3 $@


Property changes on: packages/py-postgresql/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/py-postgresql/trunk/debian/rules.old
===================================================================
--- packages/py-postgresql/trunk/debian/rules.old	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/rules.old	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1,26 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+#export DH_VERBOSE=1
+#export DH_OPTIONS=-v
+
+build3vers := $(shell py3versions -sv)
+default := $(shell py3versions -d)
+
+override_dh_auto_build:
+	for i in $(build3vers); do \
+		python$$i ./setup.py build;\
+	done
+
+
+override_dh_install:
+	dh_install -ppython3-postgresql
+	for i in $(build3vers); do \
+		python$$i ./setup.py install --root $(CURDIR)/debian/python3-postgresql; \
+	done
+
+override_dh_clean:
+	dh_clean
+	rm -rf build
+
+%:
+	dh --with python3 $@


Property changes on: packages/py-postgresql/trunk/debian/rules.old
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/py-postgresql/trunk/debian/source/format
===================================================================
--- packages/py-postgresql/trunk/debian/source/format	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/source/format	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/py-postgresql/trunk/debian/watch
===================================================================
--- packages/py-postgresql/trunk/debian/watch	                        (rev 0)
+++ packages/py-postgresql/trunk/debian/watch	2010-08-02 12:56:57 UTC (rev 14109)
@@ -0,0 +1,2 @@
+version=3
+http://python.projects.postgresql.org/files/ py-postgresql-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list