[Pkg-javascript-commits] [SCM] asynchronous, non-blocking SQLite3 bindings for NodeJS branch, master, updated. debian/2.0.17+ds1-2-7-g7049a63

David Paleino dapal at debian.org
Sat Dec 31 11:39:04 UTC 2011


The following commit has been merged in the master branch:
commit adebcfa90d3d4103ec55fe7969b19a20f0b1ea1c
Author: David Paleino <dapal at debian.org>
Date:   Sat Dec 31 12:33:31 2011 +0100

    Fix buildsystem again to link against system-wide sqlite3

diff --git a/debian/changelog b/debian/changelog
index dd4f5e0..f937a79 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,9 @@ node-sqlite3 (2.0.18+ds1-1) UNRELEASED; urgency=low
   * New upstream version
   * Add debian/watch
   * Fix debian/rules to get correct upstream version number
+  * Fix buildsystem again to link against system-wide sqlite3
 
- -- David Paleino <dapal at debian.org>  Wed, 16 Nov 2011 22:47:58 +0100
+ -- David Paleino <dapal at debian.org>  Sat, 31 Dec 2011 12:33:16 +0100
 
 node-sqlite3 (2.0.17+ds1-2) unstable; urgency=low
 
diff --git a/debian/patches/00-use_systemwide_sqlite3.patch b/debian/patches/00-use_systemwide_sqlite3.patch
deleted file mode 100644
index 066f881..0000000
--- a/debian/patches/00-use_systemwide_sqlite3.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-From: David Paleino <dapal at debian.org>
-Subject: fix default value for using sqlite3 system lib
-Origin: vendor
-Forwarded: https://github.com/developmentseed/node-sqlite3/pull/42
-
----
- wscript |    2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- node-sqlite3.orig/wscript
-+++ node-sqlite3/wscript
-@@ -25,7 +25,7 @@ def set_options(opt):
- 
-   opt.add_option( '--internal-sqlite'
-                 , action='store_true'
--                , default=True
-+                , default=False
-                 , help='Build dynamically against external install of libsqlite3 (default False - build uses internal copy)'
-                 , dest='internal_sqlite'
-                 )
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 070bafa..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-00-use_systemwide_sqlite3.patch
diff --git a/debian/rules b/debian/rules
index 62ef4c9..8fee802 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,6 +12,7 @@ UPVER := $(shell dpkg-parsechangelog | grep ^Version | cut -d\  -f2 | cut -d- -f
 override_dh_auto_configure:
 	./configure \
 		--prefix=/usr \
+		--with-sqlite3=/usr \
 		--destdir=$(CURDIR)/debian/node-sqlite3
 
 override_dh_auto_test:

-- 
asynchronous, non-blocking SQLite3 bindings for NodeJS



More information about the Pkg-javascript-commits mailing list