mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 10:31:02 +02:00
Interim release and forward porting from rel_3_2_stable.
Given the slashdot effect and some bad luck, the binary artefacts of the 3.2.0 release are not currently available, and anyway contain known bugs that have been fixed meanwhile thanks to early adopters who did open issues on github. So we hastily publish the current master's branch version as a github release with binary files.
This commit is contained in:
parent
02ecd8866b
commit
28f6a87165
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
||||
# pgloader build tool
|
||||
APP_NAME = pgloader
|
||||
VERSION = 3.1.1
|
||||
VERSION = 3.2.1.preview
|
||||
|
||||
# use either sbcl or ccl
|
||||
CL = sbcl
|
||||
|
||||
16
debian/changelog
vendored
16
debian/changelog
vendored
@ -1,3 +1,19 @@
|
||||
pgloader (3.2.1~preview+dfsg-2) unstable; urgency=medium
|
||||
|
||||
* Interim bugfix release
|
||||
|
||||
-- Dimitri Fontaine <dim@tapoueh.org> Thu, 22 Jan 2015 04:06:51 +0400
|
||||
|
||||
pgloader (3.2.0+dfsg-1) unstable; urgency=medium
|
||||
|
||||
* Implement COPY files support
|
||||
* Implement MS SQL source database support
|
||||
* Lots of bug fixes
|
||||
* Full command line operations support
|
||||
* Misc improvements, cleanup, refactoring
|
||||
|
||||
-- Dimitri Fontaine <dim@tapoueh.org> Thu, 15 Jan 2015 19:51:02 +0300
|
||||
|
||||
pgloader (3.1.1+dfsg-1) unstable; urgency=medium
|
||||
|
||||
* Fix --root-dir option when target directory doesn't exists (Closes:#767288)
|
||||
|
||||
8
debian/control
vendored
8
debian/control
vendored
@ -3,15 +3,15 @@ Section: database
|
||||
Priority: extra
|
||||
Maintainer: Dimitri Fontaine <dim@tapoueh.org>
|
||||
Uploaders: Christoph Berg <myon@debian.org>
|
||||
Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13), ruby-ronn, buildapp (>= 1.5), cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-ixf, gawk, cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind, cl-mssql
|
||||
Standards-Version: 3.9.5
|
||||
Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13), ruby-ronn, buildapp (>= 1.5), cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-ixf, gawk, cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind, cl-mssql, cl-uuid, cl-trivial-utf-8
|
||||
Standards-Version: 3.9.6
|
||||
Homepage: https://github.com/dimitri/pgloader
|
||||
Vcs-Git: https://github.com/dimitri/pgloader.git
|
||||
Vcs-Browser: https://github.com/dimitri/pgloader
|
||||
|
||||
Package: pgloader
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, freetds
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, freetds-dev
|
||||
Description: extract, transform and load data into PostgreSQL
|
||||
pgloader imports data from different kind of sources and COPY it into
|
||||
PostgreSQL.
|
||||
@ -28,7 +28,7 @@ Description: extract, transform and load data into PostgreSQL
|
||||
|
||||
Package: cl-pgloader
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind
|
||||
Depends: ${misc:Depends}, cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind, cl-uuid, cl-trivial-utf-8
|
||||
Description: extract, transform and load data into PostgreSQL
|
||||
pgloader imports data from different kind of sources and COPY it into
|
||||
PostgreSQL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
Summary: extract, transform and load data into PostgreSQL
|
||||
Name: pgloader
|
||||
Version: 3.1.1
|
||||
Version: 3.2.1.preview
|
||||
Release: 22%{?dist}
|
||||
License: The PostgreSQL Licence
|
||||
Group: System Environment/Base
|
||||
@ -40,6 +40,12 @@ echo '-b /usr/bin/pgloader' > $RPM_BUILD_ROOT/etc/prelink.conf.d/%{name}.conf
|
||||
/etc/prelink.conf.d/%{name}.conf
|
||||
|
||||
%changelog
|
||||
* Thu Jan 22 2015 Dimitri Fontaine <dimitri@2ndQuadrant.fr> - 3.2.1.preview-22
|
||||
- Release 3.2.1.preview
|
||||
|
||||
* Thu Jan 15 2015 Dimitri Fontaine <dimitri@2ndQuadrant.fr> - 3.2.0-22
|
||||
- Release 3.2.0
|
||||
|
||||
* Wed Nov 5 2014 Dimitri Fontaine <dimitri@2ndQuadrant.fr> - 3.1.1-22
|
||||
- Release 3.1.1
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user