Your message dated Mon, 05 Jun 2017 06:10:08 +0000
with message-id <[email protected]>
and subject line Bug#864185: fixed in sqlite3 3.19.2-2
has caused the Debian Bug report #864185,
regarding sqlite3 built without fts5 support (upstream bug)
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
864185: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864185
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: sqlite3
Version: 3.19.2-1
Severity: normal
Tags: upstream fixed-upstream patch

Dear Maintainer,

I noticed that libsqlite3_3.19.2-1 is accidentally built without fts4 and fts5 support due to broken handling of --enable-* flags in configure.ac (already fixed upstream,
https://www.sqlite3.org/info/43ce3bd3
) [and that's why symbol sqlite3_fts5_may_be_corrupt@Base disappeared; it should be reinstated in .symbols].
This bug is only present in experimental;
jessie{,-backports}/stretch/sid are not affected.

-- System Information:
Debian Release: 8.8
  APT prefers stable-updates
APT policy: (500, 'stable-updates'), (500, 'stable'), (100, 'proposed-updates')
Architecture: i386 (x86_64)
Foreign Architectures: amd64

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages sqlite3 depends on:
ii  libc6         2.19-18+deb8u9
ii  libreadline6  6.3-8+b3
ii  libsqlite3-0  3.16.2-3~bpo8+1

sqlite3 recommends no packages.

Versions of packages sqlite3 suggests:
ii  sqlite3-doc  3.16.2-3~bpo8+1

-- no debconf information

--- sqlite3-3.19.2/configure.ac.orig	2017-06-02 12:59:06.000000000 +0300
+++ sqlite3-3.19.2/configure.ac	2017-06-02 13:56:39.000000000 +0300
@@ -628,7 +628,7 @@
   [enable_memsys5=yes],[enable_memsys5=no])
 AC_MSG_CHECKING([whether to support MEMSYS5])
 if test "${enable_memsys5}" = "yes"; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_MEMSYS5"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS5"
   AC_MSG_RESULT([yes])
 else
   AC_MSG_RESULT([no])
@@ -638,7 +638,7 @@
   [enable_memsys3=yes],[enable_memsys3=no])
 AC_MSG_CHECKING([whether to support MEMSYS3])
 if test "${enable_memsys3}" = "yes" -a "${enable_memsys5}" = "no"; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_MEMSYS3"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS3"
   AC_MSG_RESULT([yes])
 else
   AC_MSG_RESULT([no])
@@ -650,20 +650,20 @@
       [Enable the FTS3 extension]),
       [enable_fts3=yes],[enable_fts3=no])
 if test "${enable_fts3}" = "yes" ; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS3"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS3"
 fi
 AC_ARG_ENABLE(fts4, AC_HELP_STRING([--enable-fts4],
       [Enable the FTS4 extension]),
       [enable_fts4=yes],[enable_fts4=no])
 if test "${enable_fts4}" = "yes" ; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS4"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS4"
   AC_SEARCH_LIBS([log],[m])
 fi
 AC_ARG_ENABLE(fts5, AC_HELP_STRING([--enable-fts5],
       [Enable the FTS5 extension]),
       [enable_fts5=yes],[enable_fts5=no])
 if test "${enable_fts5}" = "yes" ; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS5"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS5"
   AC_SEARCH_LIBS([log],[m])
 fi
 
@@ -673,7 +673,7 @@
       [Enable the JSON1 extension]),
       [enable_json1=yes],[enable_json1=no])
 if test "${enable_json1}" = "yes" ; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_JSON1"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_JSON1"
 fi
 
 #########
@@ -682,7 +682,7 @@
       [Enable the RTREE extension]),
       [enable_rtree=yes],[enable_rtree=no])
 if test "${enable_rtree}" = "yes" ; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_RTREE"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_RTREE"
 fi
 
 #########
@@ -691,12 +691,12 @@
       [Enable the SESSION extension]),
       [enable_session=yes],[enable_session=no])
 if test "${enable_session}" = "yes" ; then
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_SESSION"
-  OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_PREUPDATE_HOOK"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_SESSION"
+  OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_PREUPDATE_HOOK"
 fi
 
 #########
-# attempt to duplicate any OMITS and ENABLES into the $(OPT_FEATURE_FLAGS) parameter
+# attempt to duplicate any OMITS and ENABLES into the ${OPT_FEATURE_FLAGS} parameter
 for option in $CFLAGS $CPPFLAGS
 do
   case $option in
@@ -707,7 +707,7 @@
 AC_SUBST(OPT_FEATURE_FLAGS)
 
 
-# attempt to remove any OMITS and ENABLES from the $(CFLAGS) parameter
+# attempt to remove any OMITS and ENABLES from the ${CFLAGS} parameter
 ac_temp_CFLAGS=""
 for option in $CFLAGS
 do
@@ -720,7 +720,7 @@
 CFLAGS=$ac_temp_CFLAGS
 
 
-# attempt to remove any OMITS and ENABLES from the $(CPPFLAGS) parameter
+# attempt to remove any OMITS and ENABLES from the ${CPPFLAGS} parameter
 ac_temp_CPPFLAGS=""
 for option in $CPPFLAGS
 do
@@ -733,7 +733,7 @@
 CPPFLAGS=$ac_temp_CPPFLAGS
 
 
-# attempt to remove any OMITS and ENABLES from the $(BUILD_CFLAGS) parameter
+# attempt to remove any OMITS and ENABLES from the ${BUILD_CFLAGS} parameter
 ac_temp_BUILD_CFLAGS=""
 for option in $BUILD_CFLAGS
 do


--- End Message ---
--- Begin Message ---
Source: sqlite3
Source-Version: 3.19.2-2

We believe that the bug you reported is fixed in the latest version of
sqlite3, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Laszlo Boszormenyi (GCS) <[email protected]> (supplier of updated sqlite3 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Mon, 05 Jun 2017 05:25:49 +0000
Source: sqlite3
Binary: lemon sqlite3 sqlite3-doc libsqlite3-0-dbg libsqlite3-0 libsqlite3-dev 
libsqlite3-tcl
Architecture: source amd64 all
Version: 3.19.2-2
Distribution: experimental
Urgency: medium
Maintainer: Laszlo Boszormenyi (GCS) <[email protected]>
Changed-By: Laszlo Boszormenyi (GCS) <[email protected]>
Description:
 lemon      - LALR(1) Parser Generator for C or C++
 libsqlite3-0 - SQLite 3 shared library
 libsqlite3-0-dbg - SQLite 3 debugging symbols
 libsqlite3-dev - SQLite 3 development files
 libsqlite3-tcl - SQLite 3 Tcl bindings
 sqlite3    - Command line interface for SQLite 3
 sqlite3-doc - SQLite 3 documentation
Closes: 864185
Changes:
 sqlite3 (3.19.2-2) experimental; urgency=medium
 .
   * Backport configure fix for FTS4 and FTS5 builds (closes: #864185).
   * Add required sqlite3_fts5_may_be_corrupt@Base symbol to the libsqlite3-0
     package.
Checksums-Sha1:
 8046d4dd74f08cf82537982360bb1c9ac84c1eb7 2510 sqlite3_3.19.2-2.dsc
 d174cd6365f2c917bb3dd994b9e58772ea353e07 17908 sqlite3_3.19.2-2.debian.tar.xz
 98872df46af46260ede2e3aee9741523cae68bc4 143798 lemon_3.19.2-2_amd64.deb
 706f3bd3ef6e609238f38d366a9d7705d47ea3a0 4429578 
libsqlite3-0-dbg_3.19.2-2_amd64.deb
 e459f9592cd225a6275f0dc5d0031f18a366dc28 582126 libsqlite3-0_3.19.2-2_amd64.deb
 280a96798d6872c137cc019581ec8081de072573 714128 
libsqlite3-dev_3.19.2-2_amd64.deb
 6464fc4797ca78beaf84b14e16c2a50149fae453 111430 
libsqlite3-tcl_3.19.2-2_amd64.deb
 84d6aa97e3f2b758e1fbf3ff392b9e9e6a58fa6c 3524156 sqlite3-doc_3.19.2-2_all.deb
 42c1018ea9faed1e2beaf301d0d7e5d210b912a1 8077 sqlite3_3.19.2-2_amd64.buildinfo
 8632b73223c87fc7a613eb61c84711bf41f46202 799214 sqlite3_3.19.2-2_amd64.deb
Checksums-Sha256:
 593e963f6b8e85235e9e714a293f2b426fde537b1cd25bef4032173ae95a4d04 2510 
sqlite3_3.19.2-2.dsc
 f9d9317945e6d891cf8fda3774de2561cee16bfc93f6ed8c606ed9690d9e8e42 17908 
sqlite3_3.19.2-2.debian.tar.xz
 331941402291b7d152e76affaf2bfe9cec495ae89b7f0aba971951de704acbe6 143798 
lemon_3.19.2-2_amd64.deb
 92808c681b0675078532c4198871e571f33a6fd0c3a758280ca4b2e037709469 4429578 
libsqlite3-0-dbg_3.19.2-2_amd64.deb
 36ada2affed7a6fd7a130ec09c8c57fe0f29e788dff5e38ceed20665b63640eb 582126 
libsqlite3-0_3.19.2-2_amd64.deb
 d1972852ce1a1e0f943bf4d32704aaee0bad3991beea785bb1d75799373814b2 714128 
libsqlite3-dev_3.19.2-2_amd64.deb
 29ca7002a0c53791962716a577aaf60af81f509a6247e53e6624e4e23a32bd7c 111430 
libsqlite3-tcl_3.19.2-2_amd64.deb
 7d6865a7dbb15465a238f733897940bdb83ce9b709c7194a8774218203724a64 3524156 
sqlite3-doc_3.19.2-2_all.deb
 edfdfacda1feb5ccfd67edfe7a5d713fae4eae34672c912aadc980c8384602b2 8077 
sqlite3_3.19.2-2_amd64.buildinfo
 630cd7bd11943bd6de81120f90abed5d6dd631d9a5e4c849da82aa5d972269f5 799214 
sqlite3_3.19.2-2_amd64.deb
Files:
 c95b09b6d5fb75bfecf91700debfaaf3 2510 devel optional sqlite3_3.19.2-2.dsc
 0b4356aea614039ac93468ef51f9c734 17908 devel optional 
sqlite3_3.19.2-2.debian.tar.xz
 cb69805954f99bb70b435c07a663329e 143798 devel optional lemon_3.19.2-2_amd64.deb
 07d4f94c1d600a87cbc0f2c479349a0e 4429578 debug extra 
libsqlite3-0-dbg_3.19.2-2_amd64.deb
 e3e355e442bc84eed3f7668c319ed46a 582126 libs standard 
libsqlite3-0_3.19.2-2_amd64.deb
 c4c264a42b7962d43cfc3fe77aae27e7 714128 libdevel optional 
libsqlite3-dev_3.19.2-2_amd64.deb
 bdb7915e8a7ef35f99f1e983737ca984 111430 interpreters optional 
libsqlite3-tcl_3.19.2-2_amd64.deb
 bc60e4e7fc91e38d9a3cc0afcfa76bd6 3524156 doc optional 
sqlite3-doc_3.19.2-2_all.deb
 30e53a0c9c28014ce4a58437a85adf5d 8077 devel optional 
sqlite3_3.19.2-2_amd64.buildinfo
 ed331dc2f784a2b25259daf5e0e89047 799214 database optional 
sqlite3_3.19.2-2_amd64.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEfYh9yLp7u6e4NeO63OMQ54ZMyL8FAlk08IAACgkQ3OMQ54ZM
yL/EQQ//SY0HpiLs8t2Jk8XF+EtYqjuJc7tyMB/TLsAB4d5O0myGmbdKiLoW21//
GPok0XtL3l1nT8gdRb0vaV+pYfbIPE6NJ6YIfYmk1oZCeiXIkvnJjtpxq+KODLTu
o8y97yXFk8ndzLhGQaq6pQUVlOVezoH7vD4pzqxoXfskAHXrd74vtVqq+VodmMgC
5Ie9xV89f3P9KZGs/mzWwQ48WhsenAEZXPRT5/+E3p9xvuRERVM295YnirKuC3S0
cYw4mXc/WQmnwIcjtJZl1OuA6JZNaBSLDo4dMrvJtg3tF+vTfAUKyOb6SZQO2pDm
NWElOZviVTjF1ByNLdFPGadXS26D8mtF7IC9j+M48pewlloUq1zAJrK8v/lofCsb
bEftyB8MXLej98WGk0Sypc8EO9TJANoH/asccsszbcIuqZDh1S0HKESLlV+vDr21
YJLEvFgD9SLVXH4H6JNRCZOHKme3v7W5h2oCw+nM7Yo58OOcLFmdt49byI2ICstc
RFpz8+fY+Wh18r8A3N+yWXPPrcOLmDTr8VaofUtvR9Bp61/hHYHFG5fRYdgflXAd
H15fCx3PYuYtkZb9eVEdK5stxq1PGI022ZBqtRexjFLSVeudbvFfSWOxec7sj2Sn
/s4S2asrg23m4cm7xcdTNhNK87ZpD9lSDjuw1kHQhLFC3z3WnQg=
=ASK3
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to