diff --git a/.gitignore b/.gitignore index 40db39e..3588618 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,5 @@ /pgloader.1.html /BUGS.html /TODO.html +/#Makefile# +/.#Makefile diff --git a/Makefile b/Makefile index 82288a7..65e3da6 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ deb: rm -rf $(DEBDIR) mkdir -p $(DEBDIR)/pgloader-$(VERSION) mkdir -p $(EXPORT) - cp -a . $(EXPORT) + rsync -Ca . $(EXPORT) # get rid of temp and build files for n in ".#*" "*~" "*.pyc" "build-stamp" "configure-stamp" "parallel.o*"; do \ @@ -71,12 +71,6 @@ deb: find $(EXPORT) -name "$$n" -print0|xargs -0 rm -f; \ done - # get rid of CVS dirs - for n in "CVS" "CVSROOT"; do \ - find $(EXPORT) -type d -name "$$n" -print0|xargs -0 rm -rf; \ - find $(EXPORT) -type d -name "$$n" -print0|xargs -0 rm -rf; \ - done - # prepare the .orig without the debian/ packaging stuff cp -a $(EXPORT) $(DEBDIR) rm -rf $(DEBDIR)/pgloader-$(VERSION)/debian diff --git a/debian/control b/debian/control index 2536338..73e2083 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: database Priority: extra Maintainer: Dimitri Fontaine Build-Depends: debhelper (>= 5), docbook-to-man (>= 2.0.0), python-support (>= 0.3), xmlto, asciidoc (>= 0.8.2) -Standards-Version: 3.8.2 +Standards-Version: 3.8.3 Homepage: http://pgloader.projects.postgresql.org Package: pgloader diff --git a/pgloader/options.py b/pgloader/options.py index 229dac9..5db0956 100644 --- a/pgloader/options.py +++ b/pgloader/options.py @@ -2,7 +2,7 @@ # # Some common options, for each module to get them -PGLOADER_VERSION = '2.3.2' +PGLOADER_VERSION = '2.3.3~dev1' PSYCOPG_VERSION = None