OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 04-Sep-2007 09:31:51
Branch: HEAD Handle: 2007090408314901
Modified files:
openpkg-src/sqlite sqlite.patch sqlite.spec
Log:
upgrading package: sqlite 3.4.2 -> 3.5.0
Summary:
Revision Changes Path
1.41 +0 -79 openpkg-src/sqlite/sqlite.patch
1.153 +2 -2 openpkg-src/sqlite/sqlite.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/sqlite/sqlite.patch
============================================================================
$ cvs diff -u -r1.40 -r1.41 sqlite.patch
--- openpkg-src/sqlite/sqlite.patch 24 Aug 2007 18:01:56 -0000 1.40
+++ openpkg-src/sqlite/sqlite.patch 4 Sep 2007 07:31:49 -0000 1.41
@@ -56,82 +56,3 @@
-Libs: -L${libdir} -lsqlite3
+Libs: -L${libdir} -lsqlite3 @LIBS@
Cflags: -I${includedir}
-Index: tool/lemon.c
---- tool/lemon.c 30 Jul 2007 18:31:53 -0000 1.48
-+++ tool/lemon.c 23 Aug 2007 02:50:56 -0000 1.49
-@@ -108,7 +108,7 @@
- ** Principal data structures for the LEMON parser generator.
- */
-
--typedef enum {B_FALSE=0, B_TRUE} Boolean;
-+typedef enum {LEMON_FALSE=0, LEMON_TRUE} Boolean;
-
- /* Symbols (terminals and nonterminals) of the grammar are stored
- ** in the following: */
-@@ -610,7 +610,7 @@
- int progress;
-
- for(i=0; i<lemp->nsymbol; i++){
-- lemp->symbols[i]->lambda = B_FALSE;
-+ lemp->symbols[i]->lambda = LEMON_FALSE;
- }
- for(i=lemp->nterminal; i<lemp->nsymbol; i++){
- lemp->symbols[i]->firstset = SetNew();
-@@ -623,10 +623,10 @@
- if( rp->lhs->lambda ) continue;
- for(i=0; i<rp->nrhs; i++){
- struct symbol *sp = rp->rhs[i];
-- if( sp->type!=TERMINAL || sp->lambda==B_FALSE ) break;
-+ if( sp->type!=TERMINAL || sp->lambda==LEMON_FALSE ) break;
- }
- if( i==rp->nrhs ){
-- rp->lhs->lambda = B_TRUE;
-+ rp->lhs->lambda = LEMON_TRUE;
- progress = 1;
- }
- }
-@@ -649,10 +649,10 @@
- }
- break;
- }else if( s1==s2 ){
-- if( s1->lambda==B_FALSE ) break;
-+ if( s1->lambda==LEMON_FALSE ) break;
- }else{
- progress += SetUnion(s1->firstset,s2->firstset);
-- if( s2->lambda==B_FALSE ) break;
-+ if( s2->lambda==LEMON_FALSE ) break;
- }
- }
- }
-@@ -972,11 +972,11 @@
- }
-
- /* Report an error for each rule that can never be reduced. */
-- for(rp=lemp->rule; rp; rp=rp->next) rp->canReduce = B_FALSE;
-+ for(rp=lemp->rule; rp; rp=rp->next) rp->canReduce = LEMON_FALSE;
- for(i=0; i<lemp->nstate; i++){
- struct action *ap;
- for(ap=lemp->sorted[i]->ap; ap; ap=ap->next){
-- if( ap->type==REDUCE ) ap->x.rp->canReduce = B_TRUE;
-+ if( ap->type==REDUCE ) ap->x.rp->canReduce = LEMON_TRUE;
- }
- }
- for(rp=lemp->rule; rp; rp=rp->next){
-@@ -1210,7 +1210,7 @@
- break;
- }else{
- SetUnion(newcfp->fws,xsp->firstset);
-- if( xsp->lambda==B_FALSE ) break;
-+ if( xsp->lambda==LEMON_FALSE ) break;
- }
- }
- if( i==rp->nrhs ) Plink_add(&cfp->fplp,newcfp);
-@@ -4271,7 +4271,7 @@
- sp->prec = -1;
- sp->assoc = UNK;
- sp->firstset = 0;
-- sp->lambda = B_FALSE;
-+ sp->lambda = LEMON_FALSE;
- sp->destructor = 0;
- sp->datatype = 0;
- Symbol_insert(sp,sp->name);
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/sqlite/sqlite.spec
============================================================================
$ cvs diff -u -r1.152 -r1.153 sqlite.spec
--- openpkg-src/sqlite/sqlite.spec 24 Aug 2007 18:01:58 -0000 1.152
+++ openpkg-src/sqlite/sqlite.spec 4 Sep 2007 07:31:50 -0000 1.153
@@ -23,7 +23,7 @@
##
# package version
-%define V_sqlite 3.4.2
+%define V_sqlite 3.5.0
%define V_odbc 0.75
# package information
@@ -37,7 +37,7 @@
Group: Database
License: PD
Version: %{V_sqlite}
-Release: 20070824
+Release: 20070904
# package options
%option with_utf8 no
@@ .
______________________________________________________________________
OpenPKG http://openpkg.org
CVS Repository Commit List [email protected]