Your message dated Sat, 14 Oct 2006 22:48:35 +0200
with message-id <[EMAIL PROTECTED]>
and subject line NMU uploaded
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: libclass-dbi-perl
Version: 3.0.14-1
Severity: serious
From my pbuilder build log:
...
/usr/bin/make test
make[1]: Entering directory `/tmp/buildd/libclass-dbi-perl-3.0.14'
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0,
'blib/lib', 'blib/arch')" t/*.t
t/01-columns.............ok
t/02-Film................DBD::SQLite::st fetchrow_array warning: not an
error(0) at dbdimp.c line 504 [for Statement "PRAGMA table_info(Movies)"] at
/usr/share/perl5/DBIx/ContextualFetch.pm line 88.
prepare_cached(INSERT INTO Movies (title, director, rating, numexplodingsheep)
VALUES (?, ?, ?, ?)
) statement handle DBIx::ContextualFetch::st=HASH(0x853bc14) still Active at
/usr/share/perl5/Ima/DBI.pm line 381
...
t/15-accessor............
# Failed test 'DBD::SQLite::st fetchrow_array warning: not an error(0) at
dbdimp.c line 504 [for Statement "PRAGMA table_info(Movies)"] at
/usr/share/perl5/DBIx/ContextualFetch.pm line 88.
# '
# in t/15-accessor.t at line 11.
# 'DBD::SQLite::st fetchrow_array warning: not an error(0) at
dbdimp.c line 504 [for Statement "PRAGMA table_info(Movies)"] at
/usr/share/perl5/DBIx/ContextualFetch.pm line 88.
# '
# doesn't match '(?-xism:clashes with built-in method)'
...
t/99-misc................ok
Failed Test Stat Wstat Total Fail Failed List of Failed
-------------------------------------------------------------------------------
t/15-accessor.t 2 512 55 4 7.27% 1 3 56-57
t/26-mutator.t 1 256 6 2 33.33% 1 7
5 tests skipped.
Failed 2/27 test scripts, 92.59% okay. 0/549 subtests failed, 100.00% okay.
make[1]: *** [test_dynamic] Error 255
make[1]: Leaving directory `/tmp/buildd/libclass-dbi-perl-3.0.14'
make: *** [build-stamp] Error 2
--
Daniel Schepler
--- End Message ---
--- Begin Message ---
Version: 1.13-1.1
Hi,
I uploaded an NMU of your package.
Please see this as help to get the package into a releaseable condition for
etch.
Please find the used diff below.
Cheers,
Andi
diff -ur ../libdbd-sqlite3-perl-1.13~/dbdimp.c
../libdbd-sqlite3-perl-1.13/dbdimp.c
--- ../libdbd-sqlite3-perl-1.13~/dbdimp.c 2006-09-08 06:50:50.000000000
+0200
+++ ../libdbd-sqlite3-perl-1.13/dbdimp.c 2006-10-14 22:46:43.643167887
+0200
@@ -394,12 +394,12 @@
sqlite_trace(3, "Execute returned %d cols\n", DBIc_NUM_FIELDS(imp_sth));
if (DBIc_NUM_FIELDS(imp_sth) == 0) {
- while ((retval = sqlite3_step(imp_sth->stmt)) != SQLITE_DONE) {
- if (retval == SQLITE_ROW) {
+ while ((imp_sth->retval = sqlite3_step(imp_sth->stmt)) != SQLITE_DONE)
{
+ if (imp_sth->retval == SQLITE_ROW) {
continue;
}
sqlite3_finalize(imp_sth->stmt);
- sqlite_error(sth, (imp_xxh_t*)imp_sth, retval,
(char*)sqlite3_errmsg(imp_dbh->db));
+ sqlite_error(sth, (imp_xxh_t*)imp_sth, imp_sth->retval,
(char*)sqlite3_errmsg(imp_dbh->db));
return -5;
}
/* warn("Finalize\n"); */
diff -ur ../libdbd-sqlite3-perl-1.13~/debian/changelog
../libdbd-sqlite3-perl-1.13/debian/changelog
--- ../libdbd-sqlite3-perl-1.13~/debian/changelog 2006-10-14
22:41:31.537742000 +0200
+++ ../libdbd-sqlite3-perl-1.13/debian/changelog 2006-10-14
22:46:06.456023605 +0200
@@ -1,3 +1,10 @@
+libdbd-sqlite3-perl (1.13-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fix mistake that caused libclass-dbi-perl to FTBFS. Closes: #388717
+
+ -- Andreas Barth <[EMAIL PROTECTED]> Sat, 14 Oct 2006 22:41:43 +0200
+
libdbd-sqlite3-perl (1.13-1) unstable; urgency=low
* New upstream release.
--
http://home.arcor.de/andreas-barth/
--- End Message ---