mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-05 02:46:10 +02:00
New upstream version.
This commit is contained in:
parent
59d2c5c7fd
commit
759777ae08
2
Makefile
2
Makefile
@ -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
|
||||
|
||||
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -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
|
||||
|
||||
|
||||
9
debian/rules
vendored
9
debian/rules
vendored
@ -14,6 +14,11 @@ 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
|
||||
@ -21,6 +26,10 @@ 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
|
||||
|
||||
@ -57,7 +57,7 @@ author = 'Dimitri Fontaine'
|
||||
# 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.
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user