diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 8f87a47..0000000 --- a/debian/changelog +++ /dev/null @@ -1,11 +0,0 @@ -pg-wait-sampling (1.1.2-1) unstable; urgency=medium - - * New upstream version compatible with PG13 - - -- Adrien Nayrat Wed, 28 Oct 2020 09:03:03 +0000 - -pg-wait-sampling (1.1.1-1) unstable; urgency=medium - - * Release 1.1.1 - - -- Adrien Nayrat Wed, 17 Jun 2020 12:26:59 +0000 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index ec63514..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debian/control b/debian/control deleted file mode 100644 index fd27614..0000000 --- a/debian/control +++ /dev/null @@ -1,39 +0,0 @@ -Source: pg-wait-sampling -Section: database -Priority: optional -Maintainer: Adrien Nayrat -Standards-Version: 4.5.0 -Build-Depends: debhelper (>=9~), postgresql-server-dev-all (>= 141~) -Homepage: https://github.com/postgrespro/pg_wait_sampling -Vcs-Browser: https://github.com/postgrespro/pg_wait_sampling -Vcs-Git: https://github.com/postgrespro/pg_wait_sampling.git - -Package: postgresql-9.6-pg-wait-sampling -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.6, -Description: pg_wait-sampling provides functions for detailed per backend - and per query statistics about PostgreSQL wait events - -Package: postgresql-10-pg-wait-sampling -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-10, -Description: pg_wait-sampling provides functions for detailed per backend - and per query statistics about PostgreSQL wait events - -Package: postgresql-11-pg-wait-sampling -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-11, -Description: pg_wait-sampling provides functions for detailed per backend - and per query statistics about PostgreSQL wait events - -Package: postgresql-12-pg-wait-sampling -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-12, -Description: pg_wait-sampling provides functions for detailed per backend - and per query statistics about PostgreSQL wait events - -Package: postgresql-13-pg-wait-sampling -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-13, -Description: pg_wait-sampling provides functions for detailed per backend - and per query statistics about PostgreSQL wait events diff --git a/debian/control.in b/debian/control.in deleted file mode 100644 index 3ed5fe0..0000000 --- a/debian/control.in +++ /dev/null @@ -1,15 +0,0 @@ -Source: pg-wait-sampling -Section: database -Priority: optional -Maintainer: Adrien Nayrat -Standards-Version: 4.5.0 -Build-Depends: debhelper (>=9~), postgresql-server-dev-all (>= 141~) -Homepage: https://github.com/postgrespro/pg_wait_sampling -Vcs-Browser: https://github.com/postgrespro/pg_wait_sampling -Vcs-Git: https://github.com/postgrespro/pg_wait_sampling.git - -Package: postgresql-PGVERSION-pg-wait-sampling -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-PGVERSION, -Description: pg_wait-sampling provides functions for detailed per backend - and per query statistics about PostgreSQL wait events diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index c68d0d1..0000000 --- a/debian/copyright +++ /dev/null @@ -1,11 +0,0 @@ -pg_wait_sampling is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses. - -Copyright (c) 2015-2017, Postgres Professional -Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group -Portions Copyright (c) 1994, The Regents of the University of California - -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 POSTGRES PROFESSIONAL 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 POSTGRES PROFESSIONAL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -POSTGRES PROFESSIONAL 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 POSTGRES PROFESSIONAL HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. diff --git a/debian/pgversions b/debian/pgversions deleted file mode 100644 index 7e9cdc1..0000000 --- a/debian/pgversions +++ /dev/null @@ -1 +0,0 @@ -9.6+ diff --git a/debian/rules b/debian/rules deleted file mode 100755 index da410f6..0000000 --- a/debian/rules +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/make -f - -PKGVER = $(shell dpkg-parsechangelog | awk -F '[:-]' '/^Version:/ { print substr($$2, 2) }') -EXCLUDE = --exclude-vcs --exclude=debian - -include /usr/share/postgresql-common/pgxs_debian_control.mk - -override_dh_auto_build: - # do nothing - -override_dh_auto_test: - # nothing to do here, upstream tests used, see debian/tests/* - -override_dh_auto_install: - # build all supported versions - +pg_buildext loop postgresql-%v-pg-wait-sampling - -override_dh_installdocs: - dh_installdocs --all README.md - -override_dh_auto_clean: - $(MAKE) clean USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config - -orig: debian/control clean - cd .. && tar czf pg-wait-sampling_$(PKGVER).orig.tar.gz $(EXCLUDE) pg_wait_sampling-$(PKGVER) -%: - dh $@ diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 163aaf8..0000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/debian/tests/control b/debian/tests/control deleted file mode 100644 index b0dc4e8..0000000 --- a/debian/tests/control +++ /dev/null @@ -1,3 +0,0 @@ -Depends: @, postgresql-server-dev-all -Tests: installcheck -Restrictions: allow-stderr diff --git a/debian/tests/installcheck b/debian/tests/installcheck deleted file mode 100755 index 432cb15..0000000 --- a/debian/tests/installcheck +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -set -eu - -pg_buildext -o "shared_preload_libraries=pg_wait_sampling" installcheck diff --git a/debian/watch b/debian/watch deleted file mode 100644 index 38c54ed..0000000 --- a/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=3 -opts="uversionmangle=s/_/./g" \ - https://github.com/postgrespro/pg_wait_sampling/releases .*/archive/v(.*).tar.gz