Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a1f5cd9e85b81da2a3a8e303fb8fe15f9b9a6d36)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a1f5cd9e85b81da2a3a8e303fb8fe15f9b9a6d36)
  • Date: Wed, 6 Aug 2008 07:14:07 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

database/sqlite/DEPENDS | 11 +++++++++--
database/sqlite/DETAILS | 25 ++++++++++++-------------
database/sqlite/HISTORY | 6 ++++++
database/sqlite/PRE_BUILD | 4 ++--
database/sqlite/mk.diff | 19 +++++++++----------
5 files changed, 38 insertions(+), 27 deletions(-)

New commits:
commit a1f5cd9e85b81da2a3a8e303fb8fe15f9b9a6d36
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

sqlite: => 3.6.1 + small fixups

diff --git a/database/sqlite/DEPENDS b/database/sqlite/DEPENDS
index 6689c9a..4050294 100755
--- a/database/sqlite/DEPENDS
+++ b/database/sqlite/DEPENDS
@@ -1,4 +1,11 @@
depends g++ &&

-optional_depends tcl "" "--disable-tcl" "for TCL extension" &&
-optional_depends readline "" "--disable-readline" "for Readline support"
+optional_depends tcl \
+ "--enable-tcl" \
+ "--disable-tcl" \
+ "for TCL extension" &&
+
+optional_depends readline \
+ "--enable-readline" \
+ "--disable-readline" \
+ "for Readline support"
diff --git a/database/sqlite/DETAILS b/database/sqlite/DETAILS
index 9be17f0..8523e6a 100755
--- a/database/sqlite/DETAILS
+++ b/database/sqlite/DETAILS
@@ -1,7 +1,7 @@
SPELL=sqlite
- VERSION=3.5.9
-
SOURCE_HASH=sha512:9f24cf77233bd80d4015ed009a2dfd76491d9ff2c0adf7f5ad19db21180cc8dacafb94c1c28f160f1aaf052ff8d343538f15ab6f0725f93cad0c4460fc15ddd1
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ VERSION=3.6.1
+
SOURCE_HASH=sha512:b5d29fe64c4546d24316a3e2577bd95f918666f91440a8315161eb6831f0fff670e4be4696a78c51c8f72d21a4eb64ec049fa2c0ec1ff1779ba5356146139fa6
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://sqlite.org/$SOURCE
LICENSE[0]=PD
@@ -10,14 +10,13 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
KEYWORDS="sql database"
SHORT="SQL engine in a C library"
cat << EOF
-SQLite is a C library that implements an SQL database engine. A large
-subset of SQL92 is supported. A complete database is stored in a single
-disk file. The API is designed for convenience and ease of use.
-Applications that link against SQLite can enjoy the power and flexiblity
-of an SQL database without the administrative hassles of supporting a
-separate database server. Because it omits the client-server interaction
-overhead and writes directly to disk, SQLite is also faster than the big
-database servers for most operations. In addition to the C library, the
-SQLite distribution includes a command-line tool for interacting with
-SQLite databases and SQLite bindings for Tcl/Tk.
+SQLite is a C library that implements an SQL database engine. A large subset
of
+SQL92 is supported. A complete database is stored in a single disk file. The
+API is designed for convenience and ease of use. Applications that link
against
+SQLite can enjoy the power and flexiblity of an SQL database without the
+administrative hassles of supporting a separate database server. Because it
+omits the client-server interaction overhead and writes directly to disk,
+SQLite is also faster than the big database servers for most operations. In
+addition to the C library, the SQLite distribution includes a command-line
tool
+for interacting with SQLite databases and SQLite bindings for Tcl/Tk.
EOF
diff --git a/database/sqlite/HISTORY b/database/sqlite/HISTORY
index 70a1111..272186c 100644
--- a/database/sqlite/HISTORY
+++ b/database/sqlite/HISTORY
@@ -1,3 +1,9 @@
+2008-08-06 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 3.6.1, fixed long desc, quoting the paths!
+ * DEPENDS: added `--enable' flags
+ * mk.diff: fixed for the new version
+ * PRE_BUILD: quoting the paths!
+
2008-05-15 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 3.5.9

diff --git a/database/sqlite/PRE_BUILD b/database/sqlite/PRE_BUILD
index 07e945b..7363b34 100755
--- a/database/sqlite/PRE_BUILD
+++ b/database/sqlite/PRE_BUILD
@@ -1,3 +1,3 @@
default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-patch -p1 < $SPELL_DIRECTORY/mk.diff
+cd "$SOURCE_DIRECTORY" &&
+patch -p0 < $SPELL_DIRECTORY/mk.diff
diff --git a/database/sqlite/mk.diff b/database/sqlite/mk.diff
index 659d146..8e06fd6 100644
--- a/database/sqlite/mk.diff
+++ b/database/sqlite/mk.diff
@@ -1,21 +1,20 @@
-diff -uNr sqlite-3.3.10/Makefile.in sqlite-3.3.10.cp/Makefile.in
---- sqlite-3.3.10/Makefile.in 2007-01-08 14:39:27.000000000 +0100
-+++ sqlite-3.3.10.cp/Makefile.in 2007-01-16 11:11:58.000000000 +0100
-@@ -391,7 +391,7 @@
+--- Makefile.in.orig 2008-08-05 23:58:48.000000000 +0400
++++ Makefile.in 2008-08-06 16:10:20.490375400 +0400
+@@ -603,7 +603,7 @@

parse.c: $(TOP)/src/parse.y lemon$(BEXE) $(TOP)/addopcodes.awk
cp $(TOP)/src/parse.y .
-- ./lemon$(BEXE) $(OPTS) parse.y
-+ ./lemon$(BEXE) parse.y
+- ./lemon$(BEXE) $(OPTS) $(OPT_FEATURE_FLAGS) parse.y
++ ./lemon$(BEXE) $(OPT_FEATURE_FLAGS) parse.y
mv parse.h parse.h.temp
- awk -f $(TOP)/addopcodes.awk parse.h.temp >parse.h
+ $(NAWK) -f $(TOP)/addopcodes.awk parse.h.temp >parse.h

-@@ -424,7 +424,7 @@
+@@ -639,7 +639,7 @@
$(LTCOMPILE) -c $(TOP)/src/tokenize.c

keywordhash.h: $(TOP)/tool/mkkeywordhash.c
-- $(BCC) -o mkkeywordhash$(BEXE) $(OPTS) $(TOP)/tool/mkkeywordhash.c
-+ $(BCC) -o mkkeywordhash$(BEXE) $(TOP)/tool/mkkeywordhash.c
+- $(BCC) -o mkkeywordhash$(BEXE) $(OPTS) $(OPT_FEATURE_FLAGS)
$(TOP)/tool/mkkeywordhash.c
++ $(BCC) -o mkkeywordhash$(BEXE) $(OPT_FEATURE_FLAGS)
$(TOP)/tool/mkkeywordhash.c
./mkkeywordhash$(BEXE) >keywordhash.h

trigger.lo: $(TOP)/src/trigger.c $(HDR)



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a1f5cd9e85b81da2a3a8e303fb8fe15f9b9a6d36), Vlad Glagolev, 08/06/2008

Archive powered by MHonArc 2.6.24.

Top of Page