Skip to content

Commit

Permalink
New upstream version.
Browse files Browse the repository at this point in the history
  • Loading branch information
df7cb committed Sep 26, 2022
1 parent 59d2c5c commit 759777a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pgloader build tool
APP_NAME = pgloader
VERSION = 3.6.7
VERSION = 3.6.8

# use either sbcl or ccl
CL = sbcl
Expand Down
5 changes: 3 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
pgloader (3.6.7-2) UNRELEASED; urgency=medium
pgloader (3.6.8-1) unstable; urgency=medium

* New upstream version.
* Depend on libsqlite3-0.

-- Christoph Berg <myon@debian.org> Mon, 26 Sep 2022 11:09:44 +0200
-- Christoph Berg <myon@debian.org> Mon, 26 Sep 2022 14:24:02 +0200

pgloader (3.6.7-1) unstable; urgency=medium

Expand Down
9 changes: 9 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,22 @@ else
SIZE=16384
endif

MAKEFILE_VERSION = $(shell awk '/^VERSION/ { print $$3 }' Makefile)
DOC_VERSION = $(shell awk '/^release/ { print $$3 }' docs/conf.py | tr -d "'")
SPECFILE_VERSION = $(shell awk '/^Version/ { print $$2 }' pgloader.spec)
DEBIAN_VERSION = $(shell dpkg-parsechangelog -SVersion | cut -d- -f 1)

# buildd provides a build environment where $HOME is not writable, but the
# CL compilers here will need to fill-in a per-user cache
export HOME = $(CURDIR)/debian/home

override_dh_auto_clean:
dh_auto_clean
rm -rf debian/home
# sanity checks on version number
[ "$(MAKEFILE_VERSION)" = "$(DOC_VERSION)" ] # Makefile = docs/conf.py version
[ "$(MAKEFILE_VERSION)" = "$(SPECFILE_VERSION)" ] # Makefile = pgloader.spec version
[ "$(MAKEFILE_VERSION)" = "$(DEBIAN_VERSION)" ] # Makefile = debian/changelog version

override_dh_auto_build-indep:
# do nothing
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# The short X.Y version.
version = '3.6'
# The full version, including alpha/beta/rc tags.
release = '3.6.7'
release = '3.6.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pgloader.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: extract, transform and load data into PostgreSQL
Name: pgloader
Version: 3.6.7
Version: 3.6.8
Release: 22%{?dist}
License: The PostgreSQL Licence
Group: System Environment/Base
Expand Down

0 comments on commit 759777a

Please sign in to comment.