--- preprepare-0.5.orig/debian/copyright +++ preprepare-0.5/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Dimitri Fontaine on +Wed, 13 May 2009 16:51:05 +0200 + +It was downloaded from http://pgfoundry.org/projects/preprepare + +Copyright Holders: + + Copyright (c) 2008-2011 - Dimitri Fontaine + +License: BSD + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose, without fee, and without a written agreement + is hereby granted, provided that the above copyright notice and this + paragraph and the following two paragraphs appear in all copies. + . + IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING + LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS + DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + . + THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS + ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO + PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --- preprepare-0.5.orig/debian/postgresql-8.4-preprepare.docs +++ preprepare-0.5/debian/postgresql-8.4-preprepare.docs @@ -0,0 +1 @@ +README.asciidoc --- preprepare-0.5.orig/debian/rules +++ preprepare-0.5/debian/rules @@ -0,0 +1,45 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. +# +# Modified to make a template file for a multi-binary package with separated +# build-arch and build-indep targets by Bill Allombert 2001 + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +SRCDIR = $(CURDIR) +TARGET = $(CURDIR)/debian/preprepare-%v +PKGVERS = $(shell dpkg-parsechangelog | awk -F '[:-]' '/^Version:/ { print substr($$2, 2) }') +EXCLUDE = --exclude-vcs --exclude=debian + +include /usr/share/postgresql-common/pgxs_debian_control.mk +.PHONY: debian/control + +clean: debian/control + +override_dh_auto_clean: + +pg_buildext clean $(SRCDIR) $(TARGET) "$(CFLAGS)" + dh_clean + +override_dh_auto_build: + # build all supported version + +pg_buildext build $(SRCDIR) $(TARGET) "$(CFLAGS)" + +override_dh_auto_install: + : + +orig: debian/control clean + cd .. && tar czf pre_prepare_$(PKGVERS).orig.tar.gz $(EXCLUDE) preprepare + +%: + dh $@ + --- preprepare-0.5.orig/debian/postgresql-8.4-preprepare.install +++ preprepare-0.5/debian/postgresql-8.4-preprepare.install @@ -0,0 +1,2 @@ +debian/preprepare-8.4/pre_prepare.so usr/lib/postgresql/8.4/lib +pre_prepare.sql usr/share/postgresql/8.4/contrib --- preprepare-0.5.orig/debian/postgresql-9.0-preprepare.docs +++ preprepare-0.5/debian/postgresql-9.0-preprepare.docs @@ -0,0 +1 @@ +README.asciidoc --- preprepare-0.5.orig/debian/postgresql-9.0-preprepare.install +++ preprepare-0.5/debian/postgresql-9.0-preprepare.install @@ -0,0 +1,2 @@ +debian/preprepare-9.0/pre_prepare.so usr/lib/postgresql/9.0/lib +pre_prepare.sql usr/share/postgresql/9.0/contrib --- preprepare-0.5.orig/debian/postgresql-9.1-preprepare.docs +++ preprepare-0.5/debian/postgresql-9.1-preprepare.docs @@ -0,0 +1 @@ +README.asciidoc --- preprepare-0.5.orig/debian/compat +++ preprepare-0.5/debian/compat @@ -0,0 +1 @@ +5 --- preprepare-0.5.orig/debian/postgresql-8.3-preprepare.install +++ preprepare-0.5/debian/postgresql-8.3-preprepare.install @@ -0,0 +1,2 @@ +debian/preprepare-8.3/pre_prepare.so usr/lib/postgresql/8.3/lib +pre_prepare.sql usr/share/postgresql/8.3/contrib --- preprepare-0.5.orig/debian/postgresql-9.1-preprepare.install +++ preprepare-0.5/debian/postgresql-9.1-preprepare.install @@ -0,0 +1,4 @@ +debian/preprepare-9.1/pre_prepare.so usr/lib/postgresql/9.1/lib +pre_prepare.sql usr/share/postgresql/9.1/extension +pre_prepare--unpackaged--0.4.sql usr/share/postgresql/9.1/extension +pre_prepare.control usr/share/postgresql/9.1/extension --- preprepare-0.5.orig/debian/postgresql-9.1-preprepare.links +++ preprepare-0.5/debian/postgresql-9.1-preprepare.links @@ -0,0 +1 @@ +usr/share/postgresql/9.1/extension/pre_prepare.sql usr/share/postgresql/9.1/extension/pre_prepare--0.4.sql --- preprepare-0.5.orig/debian/pgversions +++ preprepare-0.5/debian/pgversions @@ -0,0 +1,4 @@ +8.3 +8.4 +9.0 +9.1 --- preprepare-0.5.orig/debian/postgresql-8.3-preprepare.docs +++ preprepare-0.5/debian/postgresql-8.3-preprepare.docs @@ -0,0 +1 @@ +README.asciidoc --- preprepare-0.5.orig/debian/control +++ preprepare-0.5/debian/control @@ -0,0 +1,39 @@ +Source: preprepare +Section: database +Priority: extra +Maintainer: Dimitri Fontaine +Build-Depends: debhelper (>= 7.0.50~), postgresql-server-dev-all +Standards-Version: 3.9.2 + +Package: postgresql-8.3-preprepare +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-8.3 +Description: Pre Prepare your Statement server side + The +pre_prepare+ module aims to prepare all your statements as soon as + possible and in a way that allows client queries not to bother at all and + just call EXECUTE. + +Package: postgresql-8.4-preprepare +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-8.4 +Description: Pre Prepare your Statement server side + The +pre_prepare+ module aims to prepare all your statements as soon as + possible and in a way that allows client queries not to bother at all and + just call EXECUTE. + +Package: postgresql-9.0-preprepare +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.0 +Description: Pre Prepare your Statement server side + The +pre_prepare+ module aims to prepare all your statements as soon as + possible and in a way that allows client queries not to bother at all and + just call EXECUTE. + +Package: postgresql-9.1-preprepare +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.1 +Description: Pre Prepare your Statement server side + The +pre_prepare+ module aims to prepare all your statements as soon as + possible and in a way that allows client queries not to bother at all and + just call EXECUTE. + --- preprepare-0.5.orig/debian/changelog +++ preprepare-0.5/debian/changelog @@ -0,0 +1,61 @@ +preprepare (0.5-1.pgdg+1) sid-pgdg; urgency=low + + * Rebuild for sid-pgdg (jenkins-preprepare-source-distribution=sid-3, + git revision f9395701535c7b508d324e38ada8b0920afa2c7c) + + -- apt.postgresql.org autobuilder Wed, 19 Dec 2012 13:34:18 +0100 + +preprepare (0.5-1) unstable; urgency=low + + * Fix an error with -Werror=format-security, from ubuntu builds (Closes: #647222) + + -- Dimitri Fontaine Mon, 31 Oct 2011 21:28:56 +0100 + +preprepare (0.4-2) unstable; urgency=low + + [ Dimitri Fontaine ] + * Repackage for 9.1 support (Closes: #639482) + + [ Christoph Berg ] + * Remove debian/*.dirs, they are not needed. + * Override dh_auto_install to do nothing, dh_install will take care. + + -- Dimitri Fontaine Mon, 05 Sep 2011 13:04:51 +0200 + +preprepare (0.4-1.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/{control, postgresql-8.3*, rules} + - support only PostgreSQL 8.4, dropping support for 8.3; thanks to Martin + Pitt for the report; Closes: #559611 + + -- Sandro Tosi Thu, 18 Feb 2010 15:08:52 +0100 + +preprepare (0.4-1) unstable; urgency=low + + * Better support for GUC options + + -- Dimitri Fontaine Tue, 18 Aug 2009 10:02:07 +0200 + +preprepare (0.3-1) unstable; urgency=low + + * Add support for discard() function + * Add support for prepare_all('schema.relation'), overriding GUC setting + * Document those additions + + -- Dimitri Fontaine Sat, 18 Jul 2009 23:11:53 +0200 + +preprepare (0.2-1) unstable; urgency=low + + * Add support for local_preload_libraries and preprepare.at_init = on + for PostgreSQL 8.4 and following + * ITP (Closes: #536782) + + -- Dimitri Fontaine Tue, 07 Jul 2009 09:58:08 +0200 + +preprepare (0.1-1) unstable; urgency=low + + * Initial release + + -- Dimitri Fontaine Wed, 13 May 2009 16:42:29 +0200 + --- preprepare-0.5.orig/debian/control.in +++ preprepare-0.5/debian/control.in @@ -0,0 +1,14 @@ +Source: preprepare +Section: database +Priority: extra +Maintainer: Dimitri Fontaine +Build-Depends: debhelper (>= 7.0.50~), postgresql-server-dev-all +Standards-Version: 3.9.2 + +Package: postgresql-PGVERSION-preprepare +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-PGVERSION +Description: Pre Prepare your Statement server side + The +pre_prepare+ module aims to prepare all your statements as soon as + possible and in a way that allows client queries not to bother at all and + just call EXECUTE.