packaging of 2.2.4

This commit is contained in:
dim 2007-11-21 10:27:22 +00:00
parent 86b33defef
commit a80e62642e
6 changed files with 20 additions and 2 deletions

View File

@ -14,6 +14,7 @@ refm = $(wildcard reformat/*.py)
install:
install -m 755 $(pgloader) $(libdir)
install -m 755 -d $(libdir)/pgloader
install -m 755 -d $(libdir)/reformat
cp -a $(libs) $(libdir)/pgloader
cp -a $(refm) $(libdir)/reformat

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
pgloader (2.2.4) unstable; urgency=low
* Reformat modules to change input on-the-fly
* mysql module with timestamp function provided
* some fixes, all tests green again
-- Dimitri Fontaine <dim@tapoueh.org> Tue, 20 Nov 2007 16:48:19 +0100
pgloader (2.2.3) unstable; urgency=low
* User Defined Columns

2
debian/files vendored
View File

@ -1 +1 @@
pgloader_2.2.2_all.deb misc extra
pgloader_2.2.4_all.deb misc extra

View File

@ -0,0 +1,5 @@
1|20071119150718
2|20041002153048
3|20060111060850
4|20060111060958
5|00000000000000

View File

@ -0,0 +1,4 @@
CREATE TABLE reformat (
id integer primary key,
timestamp timestamp
);

View File

@ -2,7 +2,7 @@
#
# Some common options, for each module to get them
PGLOADER_VERSION = '2.2.4-dev'
PGLOADER_VERSION = '2.2.4'
INPUT_ENCODING = None
PG_CLIENT_ENCODING = 'latin9'