mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-07 06:47:00 +02:00
Release pgloader 3.4.1
This commit is contained in:
parent
058f9d5451
commit
d71da6ba66
8
Makefile
8
Makefile
@ -1,6 +1,6 @@
|
|||||||
# pgloader build tool
|
# pgloader build tool
|
||||||
APP_NAME = pgloader
|
APP_NAME = pgloader
|
||||||
VERSION = 3.3.2
|
VERSION = 3.4.1
|
||||||
|
|
||||||
# use either sbcl or ccl
|
# use either sbcl or ccl
|
||||||
CL = sbcl
|
CL = sbcl
|
||||||
@ -167,9 +167,9 @@ clean-bundle:
|
|||||||
|
|
||||||
$(BUNDLEDIR):
|
$(BUNDLEDIR):
|
||||||
mkdir -p $@
|
mkdir -p $@
|
||||||
$(CL) $(CL_OPTS) --load $(QLDIR)/setup.lisp \
|
$(CL) $(CL_OPTS) --load $(QLDIR)/setup.lisp \
|
||||||
--eval '(ql:bundle-systems (list "pgloader" "buildapp") :to "$@")' \
|
--eval '(defvar *bundle-dir* "$@")' \
|
||||||
--eval '(quit)'
|
--load bundle/ql.lisp
|
||||||
|
|
||||||
$(BUNDLE): $(BUNDLEDIR)
|
$(BUNDLE): $(BUNDLEDIR)
|
||||||
cp bundle/README.md $(BUNDLEDIR)
|
cp bundle/README.md $(BUNDLEDIR)
|
||||||
|
15
bundle/ql.lisp
Normal file
15
bundle/ql.lisp
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
;;;
|
||||||
|
;;; Script used to prepare a pgloader bundle
|
||||||
|
;;;
|
||||||
|
|
||||||
|
;; fetch a list of recent candidates with
|
||||||
|
;; (subseq (ql-dist:available-versions (ql-dist:dist "quicklisp")) 0 5)
|
||||||
|
;;
|
||||||
|
;; the 2017-06-30 QL release is broken, avoid it.
|
||||||
|
;;
|
||||||
|
(defvar *ql-dist*
|
||||||
|
"http://beta.quicklisp.org/dist/quicklisp/2017-04-03/distinfo.txt")
|
||||||
|
|
||||||
|
(ql-dist:install-dist *ql-dist* :prompt nil :replace t)
|
||||||
|
(ql:bundle-systems '("pgloader" "buildapp") :to *bundle-dir*)
|
||||||
|
(quit)
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
pgloader (3.4.1+dfsg-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New release, bugfixes and new features
|
||||||
|
|
||||||
|
-- Dimitri Fontaine <dim@tapoueh.org> Thu, 06 Jul 2017 16:51:53 +0300
|
||||||
|
|
||||||
pgloader (3.3.2+dfsg-1) unstable; urgency=medium
|
pgloader (3.3.2+dfsg-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Fixes github issue 453 (Closes: #843555)
|
* Fixes github issue 453 (Closes: #843555)
|
||||||
|
@ -38,11 +38,11 @@
|
|||||||
|
|
||||||
(in-package :pgloader.params)
|
(in-package :pgloader.params)
|
||||||
|
|
||||||
(defparameter *release* nil
|
(defparameter *release* t
|
||||||
"non-nil when this build is a release build.")
|
"non-nil when this build is a release build.")
|
||||||
|
|
||||||
(defparameter *major-version* "3.3")
|
(defparameter *major-version* "3.4")
|
||||||
(defparameter *minor-version* "2")
|
(defparameter *minor-version* "1")
|
||||||
|
|
||||||
(defun git-hash ()
|
(defun git-hash ()
|
||||||
"Return the current abbreviated git hash of the development tree."
|
"Return the current abbreviated git hash of the development tree."
|
||||||
|
Loading…
Reference in New Issue
Block a user