File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change
1
+ pgloader (3.6.7-2) UNRELEASED; urgency=medium
2
+
3
+ * Depend on libsqlite3-0.
4
+
5
+ -- Christoph Berg <
[email protected] > Mon, 26 Sep 2022 11:09:44 +0200
6
+
1
7
pgloader (3.6.7-1) unstable; urgency=medium
2
8
3
9
* New upstream version:
Original file line number Diff line number Diff line change @@ -50,12 +50,13 @@ Build-Depends:
50
50
debhelper-compat (= 13),
51
51
gawk,
52
52
help2man,
53
+ libsqlite3-dev,
53
54
postgresql-14-ip4r <!nocheck> | postgresql-ip4r <!nocheck>,
54
55
python3-sphinx,
55
56
python3-sphinx-rtd-theme,
56
57
sbcl (>= 1.1.13),
57
58
tzdata,
58
- Standards-Version: 4.5 .0
59
+ Standards-Version: 4.6 .0
59
60
Homepage: https://github.com/dimitri/pgloader
60
61
Vcs-Git: https://github.com/dimitri/pgloader.git
61
62
Vcs-Browser: https://github.com/dimitri/pgloader
@@ -66,6 +67,7 @@ Depends:
66
67
freetds-dev,
67
68
${misc:Depends},
68
69
${shlibs:Depends},
70
+ ${sqlite:Depends},
69
71
${ssl:Depends},
70
72
Description: extract, transform and load data into PostgreSQL
71
73
pgloader imports data from different kind of sources and COPY it into
Original file line number Diff line number Diff line change 2
2
3
3
include /usr/share/dpkg/pkg-info.mk
4
4
5
+ # get libsqlite3 package name from libsqlite3-dev
6
+ LIBSQLITE := $(shell dpkg-query --showformat='$${Depends}' --show libsqlite3-dev | grep -o 'libsqlite[^ ]* ')
5
7
# make pgloader depend on the libssl package cl-plus-ssl depends on
6
8
LIBSSL := $(shell dpkg-query --showformat='$${Depends}' --show cl-plus-ssl | grep -o 'libssl[^ ]* ')
7
9
@@ -64,7 +66,9 @@ override_dh_installman-arch:
64
66
debian/pgloader/usr/share/man/man1/pgloader.1
65
67
66
68
override_dh_gencontrol :
67
- dh_gencontrol -- -V" ssl:Depends=$( LIBSSL) "
69
+ dh_gencontrol -- \
70
+ -V" sqlite:Depends=$( LIBSQLITE) " \
71
+ -V" ssl:Depends=$( LIBSSL) "
68
72
69
73
% :
70
74
dh $@
You can’t perform that action at this time.
0 commit comments