diff --git a/Makefile b/Makefile index 18e25a7..9b5fcbc 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,8 @@ examples = examples libs = $(wildcard pgloader/*.py) refm = $(wildcard reformat/*.py) -DEBDIR = /tmp/pgloader +TMPDIR?= /tmp +DEBDIR = $(TMPDIR)/pgloader EXPORT = $(DEBDIR)/export/pgloader-$(VERSION) ORIG = $(DEBDIR)/export/pgloader_$(VERSION).orig.tar.gz ARCHIVE= $(DEBDIR)/export/pgloader-$(VERSION).tar.gz diff --git a/debian/changelog b/debian/changelog index 3acab7a..bd1dbf7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pgloader (2.3.3~dev2-1) unstable; urgency=low +pgloader (2.3.3~dev3-1) unstable; urgency=low * Implement -f --field-sep to overwrite the default from command line * Add support for filename arguments, which use defaults @@ -10,6 +10,10 @@ pgloader (2.3.3~dev2-1) unstable; urgency=low * Implement an option to set csv field size limit * Implement --load-from-stdin * Implement --boundaries + * use gettempdir() rather than hard-coded "/tmp" + * Handle C-c the default system's way + * Fix pgloader thread error management + * Fix exit status to be non-zero in case of known errors -- Dimitri Fontaine Sun, 4 Apr 2010 19:34:39 +0200 diff --git a/examples/pgloader.conf b/examples/pgloader.conf index 4f6351c..384ea8a 100644 Binary files a/examples/pgloader.conf and b/examples/pgloader.conf differ diff --git a/pgloader/options.py b/pgloader/options.py index 0660ef0..12e00ed 100644 --- a/pgloader/options.py +++ b/pgloader/options.py @@ -5,7 +5,7 @@ from tempfile import gettempdir import os -PGLOADER_VERSION = '2.3.3~dev2' +PGLOADER_VERSION = '2.3.3~dev3' PSYCOPG_VERSION = None