--- postgresql-debversion-1.0.7.orig/debian/changelog +++ postgresql-debversion-1.0.7/debian/changelog @@ -1,3 +1,35 @@ +postgresql-debversion (1.0.7-3ubuntu1) trusty; urgency=medium + + * Use dh-autoreconf instead of autotools-dev to fix FTBFS on ppc64el + as well by getting new libtool macros. + + -- Logan Rosen Sun, 22 Dec 2013 03:37:26 -0500 + +postgresql-debversion (1.0.7-3) unstable; urgency=low + + * Drop support for postgresql 9.1 and 9.2, now 9.3 is in unstable. + * debian/control: + - Drop Build-Depends on postgresql-server-dev-9.1 and + postgresql-server-dev-9.2. + - Drop postgresql-9.1-debversion and postgresql-9.2-debversion + packages. + * debian/rules: + - Don't build 9.1 and 9.2 versions of the library. + + -- Roger Leigh Mon, 09 Sep 2013 19:21:00 +0100 + +postgresql-debversion (1.0.7-2) experimental; urgency=low + + * Add support for postgresql 9.3. + * debian/control: + - Build-Depend on postgresql-server-dev-9.3. + - Upgrade to Standards-Version 3.9.3 (no changes). + - Add postgresql-9.3-debversion. + * debian/rules: + - Build 9.1, 9.2 and 9.3 versions of the library. + + -- Roger Leigh Mon, 20 May 2013 00:07:42 +0100 + postgresql-debversion (1.0.7-1) experimental; urgency=low * New upstream release. --- postgresql-debversion-1.0.7.orig/debian/control +++ postgresql-debversion-1.0.7/debian/control @@ -1,42 +1,24 @@ Source: postgresql-debversion Section: database Priority: extra -Maintainer: Debian buildd-tools Developers -Uploaders: Michael Banck , Roger Leigh , Francesco Paolo Lovergine -Build-Depends: debhelper (>= 9), autotools-dev, libapt-pkg-dev, postgresql-server-dev-9.1, postgresql-server-dev-9.2 -Standards-Version: 3.9.3 +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian buildd-tools Developers +Uploaders: + Michael Banck , + Roger Leigh , + Francesco Paolo Lovergine +Build-Depends: + debhelper (>= 9), + dh-autoreconf, + libapt-pkg-dev, + postgresql-server-dev-9.3 +Standards-Version: 3.9.4 Vcs-Browser: http://git.debian.org/?p=buildd-tools/postgresql-debversion.git Vcs-Git: git://git.debian.org/git/buildd-tools/postgresql-debversion -Package: postgresql-9.2-debversion +Package: postgresql-9.3-debversion Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.2 -Description: Debian version number type for PostgreSQL - Debian version numbers, used to version Debian binary and source - packages, have a defined format, including specifications for how - versions should be compared in order to sort them. This package - implements a "debversion" type to represent Debian version numbers - within the PostgreSQL database. This also includes operators for - version comparison and index operator classes for creating indexes on - the debversion type. - . - Version comparison uses the algorithm used by the Debian package - manager, dpkg, using the implementation from libapt-pkg. This means - that columns in tables using the debversion type may be sorted and - compared correctly using the same logic as "dpkg --compare-versions". - It is also possible to create indexes on these columns. - . - postgresql-debversion implements the following features: - . - * The "debversion" type (internally derived from the "text" type) - * A full set of operators for version comparison (< <= = <> >= >) - including commutator and negator optimisation hints - * Operator classes for btree and hash indexes - * The aggregate functions min() and max() - -Package: postgresql-9.1-debversion -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.1 +Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.3 Description: Debian version number type for PostgreSQL Debian version numbers, used to version Debian binary and source packages, have a defined format, including specifications for how --- postgresql-debversion-1.0.7.orig/debian/postgresql-9.3-debversion.docs +++ postgresql-debversion-1.0.7/debian/postgresql-9.3-debversion.docs @@ -0,0 +1,2 @@ +NEWS +README.md --- postgresql-debversion-1.0.7.orig/debian/postgresql-9.3-debversion.install +++ postgresql-debversion-1.0.7/debian/postgresql-9.3-debversion.install @@ -0,0 +1,2 @@ +debian/install-9.3/usr/lib/postgresql/9.3/lib/debversion.so usr/lib/postgresql/9.3/lib +debian/install-9.3/usr/share/postgresql usr/share --- postgresql-debversion-1.0.7.orig/debian/rules +++ postgresql-debversion-1.0.7/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f -DH_OPTIONS = --with autotools_dev +DH_OPTIONS = --with autoreconf DH_INSTALL_FILES = $(basename $(wildcard debian/*.install.in)) @@ -8,33 +8,23 @@ %: dh $@ $(DH_OPTIONS) -override_dh_auto_configure: debian/build-9.1/config.status debian/build-9.2/config.status +override_dh_auto_configure: debian/build-9.3/config.status -debian/build-9.1/config.status: configure - dh_auto_configure --builddirectory=debian/build-9.1 -- \ +debian/build-9.3/config.status: configure + dh_auto_configure --builddirectory=debian/build-9.3 -- \ --enable-extension \ - PG_CONFIG=/usr/lib/postgresql/9.1/bin/pg_config - dh_testdir - -debian/build-9.2/config.status: configure - dh_auto_configure --builddirectory=debian/build-9.2 -- \ - --enable-extension \ - PG_CONFIG=/usr/lib/postgresql/9.2/bin/pg_config + PG_CONFIG=/usr/lib/postgresql/9.3/bin/pg_config dh_testdir override_dh_auto_build: - $(MAKE) -C debian/build-9.1 all - $(MAKE) -C debian/build-9.2 all + $(MAKE) -C debian/build-9.3 all override_dh_auto_clean: - dh_auto_clean --builddirectory=debian/build-9.1 - dh_auto_clean --builddirectory=debian/build-9.2 - rm -rf debian/install-9.1 - rm -rf debian/install-9.2 + dh_auto_clean --builddirectory=debian/build-9.3 + rm -rf debian/install-9.3 override_dh_auto_install: - $(MAKE) -C debian/build-9.1 DESTDIR=$(CURDIR)/debian/install-9.1 install - $(MAKE) -C debian/build-9.2 DESTDIR=$(CURDIR)/debian/install-9.2 install + $(MAKE) -C debian/build-9.3 DESTDIR=$(CURDIR)/debian/install-9.3 install override_dh_installchangelogs: dh_installchangelogs ChangeLog