PG_BUILDEXT(1) | Debian PostgreSQL infrastructure | PG_BUILDEXT(1) |
pg_buildext - Build and install a PostgreSQL extension
pg_buildext [options] action [src-dir] [arguments]
pg_buildext is a script that will build a PostgreSQL extension in a VPATH way, for potentially several PostgreSQL server versions in parallel. It builds for the intersection of versions known in debian/pgversions (versions supported by the package) and in /usr/share/postgresql-common/supported-versions (versions supported in this release).
Packages using pg_buildext should be prepared to build binaries for PostgreSQL versions that are not present in Debian unstable, e.g. for older releases when building backports for Debian (old)stable (possibly including backports of newer PostgreSQL releases), or for all PostgreSQL releases when the package is built for apt.postgresql.org.
As the set of binary packages depends on the target PostgreSQL versions, debian/control is generated from a template in debian/control.in when pg_buildext updatecontrol is run. Occurrences of PGVERSION in package sections are replaced by the target PostgreSQL version. Include /usr/share/postgresql-common/pgxs_debian_control.mk in debian/rules to run a check at build time if updating debian/control is required.
As pg_buildext invokes make for the build, install, and clean actions, invocations from debian/rules (which is a makefile) should be prefixed with + so the sub-makes can talk with the make jobserver. Additional makefile variables can be passed to make via the -m option.
Many extensions support make installcheck testing using pg_regress. As this needs the package to be installed, it cannot be run at build time. Instead, the tests should be run using autopkgtest from debian/tests/*.
If debian/tests/control.in exists, occurrences of package names containing PGVERSION are replaced by lists of package names with the target PostgreSQL versions filled in. (If no replacing is needed in debian/tests/control, it is fine to provide the tests control file directly.)
Most actions expect a directory name where to build the sources. It will get created for you if it does not exist. If the build-dir contains a %v sign, it will get replaced by the specific version of PostgreSQL being built against. (Usually this parameter is build-%v.)
Sometimes it is desirable to run extra code per version before invoking the action, in that case the loop over supported versions needs to be in the calling script. To facilitate this mode, actions can also be called as action-version. See the installcheck example below.
pg_buildext reads debian/pgversions to decide which PostgreSQL to build modules/extensions for. This file contains one PostgreSQL version number per line, in the following formats:
For a version to be used, it must also be listed in the output of /usr/share/postgresql-common/supported-versions. See this file for how to configure the list of supported versions on your system.
Source: postgresql-foobar Build-Depends: debhelper, postgresql-server-dev-all (>= 153~) Package: postgresql-PGVERSION-foobar Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-PGVERSION
all # alternatives: #9.6 #11+
#!/usr/bin/make -f include /usr/share/postgresql-common/pgxs_debian_control.mk # omit this if the package does not use autoconf override_dh_auto_configure: +pg_buildext configure build-%v "--libdir=/usr/lib/postgresql/%v/lib --datadir=/usr/share/postgresql-%v-foobar" override_dh_auto_build: +pg_buildext build build-%v override_dh_auto_test: # nothing to do here, see debian/tests/* instead override_dh_auto_install: +pg_buildext install build-%v postgresql-%v-foobar override_dh_installdocs: dh_installdocs --all README.* override_dh_auto_clean: +pg_buildext clean build-%v %: dh $@
Depends: @, postgresql-server-dev-all Tests: installcheck Restrictions: allow-stderr
Depends: @, postgresql-contrib-PGVERSION, postgresql-PGVERSION-bar Tests: installcheck Restrictions: allow-stderr
#!/bin/sh pg_buildext installcheck # alternatively: pg_buildext installcheck build-%v # Running extra code before invoking the actual action: set -e for v in $(pg_buildext supported-versions); do test -L build-$v/sql || ln -s ../sql build-$v/ test -L build-$v/expected || ln -s ../expected build-$v/ pg_buildext installcheck-$v build-$v done
If the package source code is not in the top level directory (i.e. the directory which has debian/ as subdirectory), use the src-dir argument, where src-dir must be an absolute path. Example:
override_dh_auto_build: +pg_buildext build $(CURDIR)/postgresql-module build-%v
pg_buildext loop was introduced in postgresql-server-dev-all (>= 141~).
The usage of "all" or "NN+" in debian/pgversions was introduced in postgresql-server-dev-all (>= 148~).
pg_buildext installcheck was introduced in postgresql-server-dev-all (>= 153~).
PG_VIRTUALENV_UNSHARE=-n was introduced in postgresql-common (>= 170~).
Handling of debian/tests/control.in with PGVERSION replacement was introduced in postgresql-common (>= 171~).
/usr/share/postgresql-common/supported-versions, autopkgtest(1), pg_virtualenv(1).
Dimitri Fontaine <dim@tapoueh.org>, with extensions by Christoph Berg <myon@debian.org>.
2022-06-22 | Debian |