FreeBSD Bugzilla – Attachment 108611 Details for
Bug 149472
[MAINTAINER] databases/sqlite3: update to 3.7.0.1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
sqlite3-3.7.0.1_1.patch
sqlite3-3.7.0.1_1.patch (text/plain), 5.93 KB, created by
Pavel Volkov
on 2010-08-11 11:55:02 UTC
(
hide
)
Description:
sqlite3-3.7.0.1_1.patch
Filename:
MIME Type:
Creator:
Pavel Volkov
Created:
2010-08-11 11:55:02 UTC
Size:
5.93 KB
patch
obsolete
>diff -ruN --exclude=CVS databases/sqlite3.orig/Makefile databases/sqlite3/Makefile >--- databases/sqlite3.orig/Makefile 2010-08-03 05:08:14.000000000 +0400 >+++ databases/sqlite3/Makefile 2010-08-11 14:35:19.000000000 +0400 >@@ -6,8 +6,7 @@ > # > > PORTNAME= sqlite3 >-PORTVERSION= 3.6.23.1 >-PORTREVISION= 1 >+PORTVERSION= 3.7.0.1 > CATEGORIES= databases > MASTER_SITES= http://www.sqlite.org/ > DISTNAME= sqlite-${PORTVERSION} >@@ -18,27 +17,38 @@ > CONFLICTS= sqlite34-[0-9]* > > USE_GMAKE= YES >-USE_GNOME= pkgconfig >+USE_GNOME= pkgconfig gnomehack > USE_LDCONFIG= YES > GNU_CONFIGURE= YES >-USE_GNOME= gnomehack > USE_TCL_BUILD= 84+ > CONFIGURE_ENV+= TCLSH_CMD="${TCLSH}" \ > TCLLIBDIR="${PREFIX}/lib/${PORTNAME}" \ > ac_cv_search_pthread_create="" > >-MAN1= sqlite3.1 >- > OPTIONS= DEBUG "Enable debugging & verbose explain" off \ >- FTS3 "Enable FTS3 (Full Text Search) module" off \ >+ GCOV "Enable coverage testing using gcov" off \ >+ FTS3 "Enable FTS3 (Full Text Search) module" on \ > RTREE "Enable R*Tree module" off \ >+ ICU "Enable built with \"ICU\"" off \ > RAMTABLE "Store temporary tables in RAM" off \ >+ SECURE_DELETE "Overwrite deleted information with zeros" on \ >+ UNLOCK_NOTIFY "Enable notification on unlocking" on \ > TCLWRAPPER "Enable TCL wrapper" off \ > METADATA "Enable column metadata" on \ > THREADSAFE "Build thread-safe library" on \ >+ OVERRIDE_LOCK "Threads can override each others locks" on \ >+ XTHREAD "Allow connection sharing across threads" off \ > EXTENSION "Allow loadable extensions" off > >-.include <bsd.port.pre.mk> >+.include <bsd.port.options.mk> >+ >+PLIST_FILES+= bin/sqlite3 include/sqlite3.h include/sqlite3ext.h \ >+ lib/libsqlite3.a lib/libsqlite3.la lib/libsqlite3.so \ >+ lib/libsqlite3.so.8 libdata/pkgconfig/sqlite3.pc >+ >+.if !defined(NO_INSTALL_MANPAGES) >+MAN1= sqlite3.1 >+.endif > > .if ${OSVERSION} < 700000 > EXTRA_PATCHES+= ${FILESDIR}/pthread_equal_stub >@@ -48,30 +58,60 @@ > CONFIGURE_ARGS+= --enable-debug > .endif > >+.if defined(WITH_GCOV) >+CONFIGURE_ARGS+= --enable-gcov >+.endif >+ > .if defined(WITH_FTS3) > CFLAGS+= -DSQLITE_ENABLE_FTS3=1 >+.ifndef NOPORTDOCS >+PORTDOCS+= README.syntax README.tokenizers >+.endif > .endif > > .if defined(WITH_RTREE) > CFLAGS+= -DSQLITE_ENABLE_RTREE=1 >+.ifndef NOPORTDOCS >+PORTDOCS+= README >+.endif >+.endif >+ >+.if defined(WITH_ICU) >+BUILD_DEPENDS+= ${LOCALBASE}/bin/icu-config:${PORTSDIR}/devel/icu >+LIB_DEPENDS+= icudata.38:${PORTSDIR}/devel/icu >+CFLAGS+= -DSQLITE_ENABLE_ICU=1 >+CPPFLAGS+= `${LOCALBASE}/bin/icu-config --cppflags` >+LDFLAGS+= `${LOCALBASE}/bin/icu-config --ldflags` >+.ifndef NOPORTDOCS >+PORTDOCS+= README.txt >+.endif > .endif > > .if defined(WITH_RAMTABLE) > CONFIGURE_ARGS+= --enable-tempstore=yes > .endif > >+.if defined(WITH_SECURE_DELETE) >+CFLAGS+= -DSQLITE_SECURE_DELETE=1 >+.endif >+ >+.if defined(WITH_UNLOCK_NOTIFY) >+CFLAGS+= -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 >+.endif >+ > .if defined(WITH_TCLWRAPPER) > CATEGORIES+= lang tcl > COMMENT+= with TCL Wrapper >-USE_TCL_BUILD= 84+ > USE_TCL_RUN= 84+ >-CONFIGURE_ARGS+= --with-tcl=${TCL_LIBDIR} >-PLIST_SUB+= WITH_TCLWRAPPER="" > ALL_TARGET= all tclsqlite3 > INSTALL_TARGET= install tcl_install >+CONFIGURE_ARGS+= --with-tcl=${TCL_LIBDIR} >+PORTEXAMPLES+= example.tcl >+PLIST_DIRS+= lib/sqlite3 >+PLIST_FILES+= bin/tclsqlite3 lib/sqlite3/libtclsqlite3.so \ >+ lib/sqlite3/pkgIndex.tcl > .else > CONFIGURE_ARGS+= --disable-tcl >-PLIST_SUB+= WITH_TCLWRAPPER="@comment " > .endif > > .if !defined(WITHOUT_METADATA) >@@ -79,8 +119,13 @@ > .endif > > .if !defined(WITHOUT_THREADSAFE) >-CONFIGURE_ARGS+= --enable-threadsafe \ >- --enable-threads-override-locks >+CONFIGURE_ARGS+= --enable-threadsafe >+.if !defined(WITHOUT_XTHREAD) >+CONFIGURE_ARGS+= --enable-threads-override-locks >+.endif >+.if !defined(WITHOUT_OVERRIDE_LOCK) >+CONFIGURE_ARGS+= --enable-cross-thread-connections >+.endif > .else > CONFIGURE_ARGS+= --disable-threadsafe > .endif >@@ -91,6 +136,9 @@ > CONFIGURE_ARGS+= --disable-load-extension > .endif > >+CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" >+MAKE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" >+ > post-install: > .if defined(WITH_TCLWRAPPER) > @${INSTALL_PROGRAM} ${WRKSRC}/.libs/tclsqlite3 ${PREFIX}/bin >@@ -100,5 +148,19 @@ > .if !defined(NO_INSTALL_MANPAGES) > @${INSTALL_MAN} ${WRKSRC}/sqlite3.1 ${MANPREFIX}/man/man1 > .endif >+.ifndef NOPORTDOCS >+.ifdef WITH_FTS3 >+ @${MKDIR} ${DOCSDIR} >+ @${INSTALL_DATA} ${WRKSRC}/ext/fts3/README.syntax ${WRKSRC}/ext/fts3/README.tokenizers ${DOCSDIR} >+.endif >+.ifdef WITH_RTREE >+ @${MKDIR} ${DOCSDIR} >+ @${INSTALL_DATA} ${WRKSRC}/ext/rtree/README ${DOCSDIR} >+.endif >+.ifdef WITH_ICU >+ @${MKDIR} ${DOCSDIR} >+ @${INSTALL_DATA} ${WRKSRC}/ext/icu/README.txt ${DOCSDIR} >+.endif >+.endif > >-.include <bsd.port.post.mk> >+.include <bsd.port.mk> >diff -ruN --exclude=CVS databases/sqlite3.orig/distinfo databases/sqlite3/distinfo >--- databases/sqlite3.orig/distinfo 2010-04-21 03:45:57.000000000 +0400 >+++ databases/sqlite3/distinfo 2010-08-09 18:45:27.000000000 +0400 >@@ -1,3 +1,3 @@ >-MD5 (sqlite-3.6.23.1.tar.gz) = d99f1b31da0eb33271464bee15cec701 >-SHA256 (sqlite-3.6.23.1.tar.gz) = 1a0517438a573a68ab73e8ed75d194086d55d75883542ab1d5ae1080bbddd492 >-SIZE (sqlite-3.6.23.1.tar.gz) = 3086807 >+MD5 (sqlite-3.7.0.1.tar.gz) = d25d7551ba6bb310362cb0e7d4906f25 >+SHA256 (sqlite-3.7.0.1.tar.gz) = 9e2c01e581fb554b8b690b4e88af1da23d891c8b5f60e423e81ae00cf714e8fd >+SIZE (sqlite-3.7.0.1.tar.gz) = 3266205 >diff -ruN --exclude=CVS databases/sqlite3.orig/pkg-plist databases/sqlite3/pkg-plist >--- databases/sqlite3.orig/pkg-plist 2009-11-02 13:11:48.000000000 +0300 >+++ databases/sqlite3/pkg-plist 1970-01-01 03:00:00.000000000 +0300 >@@ -1,14 +0,0 @@ >-bin/sqlite3 >-%%WITH_TCLWRAPPER%%bin/tclsqlite3 >-include/sqlite3.h >-include/sqlite3ext.h >-lib/libsqlite3.a >-lib/libsqlite3.la >-lib/libsqlite3.so >-lib/libsqlite3.so.8 >-libdata/pkgconfig/sqlite3.pc >-%%WITH_TCLWRAPPER%%lib/sqlite3/libtclsqlite3.so >-%%WITH_TCLWRAPPER%%lib/sqlite3/pkgIndex.tcl >-%%WITH_TCLWRAPPER%%@dirrm lib/sqlite3 >-%%WITH_TCLWRAPPER%%%%EXAMPLESDIR%%/example.tcl >-%%WITH_TCLWRAPPER%%@dirrm %%EXAMPLESDIR%%
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 149472
:
108609
|
108610
| 108611