Skip to content

Commit 09239bc

Browse files
committedOct 19, 2020
Debian: Upload for PostgreSQL 13.
* Use dh --with pgxs. * R³: no. * DH 13. * debian/tests: Use 'make' instead of postgresql-server-dev-all.
1 parent 7ac26fa commit 09239bc

File tree

6 files changed

+23
-24
lines changed

6 files changed

+23
-24
lines changed
 

‎debian/changelog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
postgresql-unit (7.3-1) unstable; urgency=medium
2+
3+
* Upload for PostgreSQL 13.
4+
* Use dh --with pgxs.
5+
* R³: no.
6+
* DH 13.
7+
* debian/tests: Use 'make' instead of postgresql-server-dev-all.
8+
9+
-- Christoph Berg <myon@debian.org> Mon, 19 Oct 2020 21:48:27 +0200
10+
111
postgresql-unit (7.2-2) unstable; urgency=medium
212

313
* Upload for PostgreSQL 12.

‎debian/compat

-1
This file was deleted.

‎debian/control

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@ Priority: optional
44
Maintainer: Christoph Berg <myon@debian.org>
55
Build-Depends:
66
bison (>> 2:3),
7-
debhelper (>> 9),
7+
debhelper-compat (= 13),
88
flex,
9-
postgresql-server-dev-all (>= 153~),
10-
Standards-Version: 4.2.0
9+
postgresql-all (>= 217~),
10+
Standards-Version: 4.5.0
11+
Rules-Requires-Root: no
1112
Vcs-Git: https://github.com/df7cb/postgresql-unit.git
1213
Vcs-Browser: https://github.com/df7cb/postgresql-unit
1314
Homepage: https://github.com/df7cb/postgresql-unit
1415

15-
Package: postgresql-12-unit
16+
Package: postgresql-13-unit
1617
Architecture: any
17-
Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-12
18+
Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-13
1819
Description: SI Units for PostgreSQL
1920
postgresql-unit implements a PostgreSQL datatype for SI units, plus byte. The
2021
base units can be combined to named and unnamed derived units using operators

‎debian/control.in

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ Priority: optional
44
Maintainer: Christoph Berg <myon@debian.org>
55
Build-Depends:
66
bison (>> 2:3),
7-
debhelper (>> 9),
7+
debhelper-compat (= 13),
88
flex,
9-
postgresql-server-dev-all (>= 153~),
10-
Standards-Version: 4.2.0
9+
postgresql-all (>= 217~),
10+
Standards-Version: 4.5.0
11+
Rules-Requires-Root: no
1112
Vcs-Git: https://github.com/df7cb/postgresql-unit.git
1213
Vcs-Browser: https://github.com/df7cb/postgresql-unit
1314
Homepage: https://github.com/df7cb/postgresql-unit

‎debian/rules

+2-14
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,9 @@
11
#!/usr/bin/make -f
22

3-
include /usr/share/postgresql-common/pgxs_debian_control.mk
4-
5-
override_dh_auto_build:
6-
+pg_buildext build build-%v
7-
8-
override_dh_auto_test:
9-
# nothing to do here, see debian/tests/* instead
10-
11-
override_dh_auto_install:
12-
+pg_buildext install build-%v postgresql-%v-unit
3+
export LANG=C.UTF-8
134

145
override_dh_installdocs:
156
dh_installdocs --all README.*
167

17-
override_dh_auto_clean:
18-
+pg_buildext clean build-%v
19-
208
%:
21-
dh $@
9+
dh $@ --with pgxs

‎debian/tests/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Depends: @, postgresql-server-dev-all
1+
Depends: @, make
22
Tests: installcheck
33
Restrictions: allow-stderr

0 commit comments

Comments
 (0)
Please sign in to comment.