File tree 5 files changed +15
-5
lines changed
5 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1
1
# pgloader build tool
2
2
APP_NAME = pgloader
3
- VERSION = 3.6.7
3
+ VERSION = 3.6.8
4
4
5
5
# use either sbcl or ccl
6
6
CL = sbcl
Original file line number Diff line number Diff line change 1
- pgloader (3.6.7-2) UNRELEASED ; urgency=medium
1
+ pgloader (3.6.8-1) unstable ; urgency=medium
2
2
3
+ * New upstream version.
3
4
* Depend on libsqlite3-0.
4
5
5
- -- Christoph Berg <
[email protected] > Mon, 26 Sep 2022
11:09:44 +0200
6
+ -- Christoph Berg <
[email protected] > Mon, 26 Sep 2022
14:24:02 +0200
6
7
7
8
pgloader (3.6.7-1) unstable; urgency=medium
8
9
Original file line number Diff line number Diff line change 14
14
SIZE =16384
15
15
endif
16
16
17
+ MAKEFILE_VERSION = $(shell awk '/^VERSION/ { print $$3 }' Makefile)
18
+ DOC_VERSION = $(shell awk '/^release/ { print $$3 }' docs/conf.py | tr -d "'")
19
+ SPECFILE_VERSION = $(shell awk '/^Version/ { print $$2 }' pgloader.spec)
20
+ DEBIAN_VERSION = $(shell dpkg-parsechangelog -SVersion | cut -d- -f 1)
21
+
17
22
# buildd provides a build environment where $HOME is not writable, but the
18
23
# CL compilers here will need to fill-in a per-user cache
19
24
export HOME = $(CURDIR ) /debian/home
20
25
21
26
override_dh_auto_clean :
22
27
dh_auto_clean
23
28
rm -rf debian/home
29
+ # sanity checks on version number
30
+ [ " $( MAKEFILE_VERSION) " = " $( DOC_VERSION) " ] # Makefile = docs/conf.py version
31
+ [ " $( MAKEFILE_VERSION) " = " $( SPECFILE_VERSION) " ] # Makefile = pgloader.spec version
32
+ [ " $( MAKEFILE_VERSION) " = " $( DEBIAN_VERSION) " ] # Makefile = debian/changelog version
24
33
25
34
override_dh_auto_build-indep :
26
35
# do nothing
Original file line number Diff line number Diff line change 57
57
# The short X.Y version.
58
58
version = '3.6'
59
59
# The full version, including alpha/beta/rc tags.
60
- release = '3.6.7 '
60
+ release = '3.6.8 '
61
61
62
62
# The language for content autogenerated by Sphinx. Refer to documentation
63
63
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
Summary: extract, transform and load data into PostgreSQL
2
2
Name: pgloader
3
- Version: 3.6.7
3
+ Version: 3.6.8
4
4
Release: 22%{?dist }
5
5
License: The PostgreSQL Licence
6
6
Group: System Environment/Base
You can’t perform that action at this time.
0 commit comments