rpms/perl-DBD-SQLite/F-8 rt32100.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 perl-DBD-SQLite.spec, 1.12, 1.13 sources, 1.5, 1.6 DBD-SQLite-1.11-type-information-segv.patch, 1.1, NONE

Marcela Mašláňová (mmaslano) fedora-extras-commits at redhat.com
Tue Mar 25 08:55:15 UTC 2008


Author: mmaslano

Update of /cvs/pkgs/rpms/perl-DBD-SQLite/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv19377

Modified Files:
	.cvsignore perl-DBD-SQLite.spec sources 
Added Files:
	rt32100.patch 
Removed Files:
	DBD-SQLite-1.11-type-information-segv.patch 
Log Message:
Upgrade to 1.14 + patch on sql_reset: rt32100.patch


rt32100.patch:

--- NEW FILE rt32100.patch ---
diff -up DBD-SQLite-1.14/dbdimp.c.bleble DBD-SQLite-1.14/dbdimp.c
--- DBD-SQLite-1.14/dbdimp.c.bleble	2007-08-24 04:51:25.000000000 +0200
+++ DBD-SQLite-1.14/dbdimp.c	2008-03-25 09:52:01.000000000 +0100
@@ -398,8 +398,7 @@ sqlite_st_execute (SV *sth, imp_sth_t *i
             if (imp_sth->retval == SQLITE_ROW) {
                 continue;
             }
-            /* There are bug reports that say this should be sqlite3_reset() */
-            sqlite3_finalize(imp_sth->stmt);
+            sqlite3_reset(imp_sth->stmt);
             sqlite_error(sth, (imp_xxh_t*)imp_sth, imp_sth->retval, (char*)sqlite3_errmsg(imp_dbh->db));
             return -5;
         }
@@ -418,8 +417,7 @@ sqlite_st_execute (SV *sth, imp_sth_t *i
         case SQLITE_DONE: DBIc_ACTIVE_on(imp_sth);
                           sqlite_trace(5, "exec ok - %d rows, %d cols\n", imp_sth->nrow, DBIc_NUM_FIELDS(imp_sth));
                           return 0;
-                          /* There are bug reports that say this should be sqlite3_reset() */
-        default:          sqlite3_finalize(imp_sth->stmt);
+        default:          sqlite3_reset(imp_sth->stmt);
                           sqlite_error(sth, (imp_xxh_t*)imp_sth, imp_sth->retval, (char*)sqlite3_errmsg(imp_dbh->db));
                           return -6;
     }


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/perl-DBD-SQLite/F-8/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore	12 Apr 2006 14:43:56 -0000	1.5
+++ .cvsignore	25 Mar 2008 08:54:23 -0000	1.6
@@ -1 +1 @@
-DBD-SQLite-1.12.tar.gz
+DBD-SQLite-1.14.tar.gz


Index: perl-DBD-SQLite.spec
===================================================================
RCS file: /cvs/pkgs/rpms/perl-DBD-SQLite/F-8/perl-DBD-SQLite.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- perl-DBD-SQLite.spec	15 Oct 2007 19:33:25 -0000	1.12
+++ perl-DBD-SQLite.spec	25 Mar 2008 08:54:23 -0000	1.13
@@ -1,13 +1,13 @@
 Name:           perl-DBD-SQLite
-Version:        1.12
-Release:        2%{?dist}.1
+Version:        1.14
+Release:        1%{?dist}
 Summary:        Self Contained RDBMS in a DBI Driver
 
 Group:          Development/Libraries
 License:        GPL+ or Artistic
 URL:            http://search.cpan.org/dist/DBD-SQLite/
 Source0:        http://www.cpan.org/authors/id/M/MS/MSERGEANT/DBD-SQLite-%{version}.tar.gz
-Patch0:         DBD-SQLite-1.11-type-information-segv.patch
+Patch0:         rt32100.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:  perl-DBI >= 1.03
@@ -66,6 +66,9 @@
 
 
 %changelog
+* Tue Mar 25 2008 Marcela Maslanova <mmaslano at redhat.com> - 1.14-1
+- upgrade to 1.14
+
 * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa at redhat.com> - 1.12-2.1
 - correct license tag
 - add BR: perl(ExtUtils::MakeMaker)


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/perl-DBD-SQLite/F-8/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources	12 Apr 2006 14:43:56 -0000	1.5
+++ sources	25 Mar 2008 08:54:23 -0000	1.6
@@ -1 +1 @@
-40b1d208d70d5d8cab7723df96fc239c  DBD-SQLite-1.12.tar.gz
+78a89cc8fd46bb2a5d537433dcccc8e6  DBD-SQLite-1.14.tar.gz


--- DBD-SQLite-1.11-type-information-segv.patch DELETED ---




More information about the fedora-extras-commits mailing list