core updated.
This commit is contained in:
@@ -13,23 +13,45 @@ from pisi.actionsapi import get
|
||||
# but cannot be seen with sqlite query. However, it can be seen by opening the file with a text editor.
|
||||
# SQLITE_SECURE_DELETE overwrites written data with zeros.
|
||||
def setup():
|
||||
pisitools.cflags.add("-DSQLITE_SECURE_DELETE=1",
|
||||
"-DSQLITE_ENABLE_UNLOCK_NOTIFY=1",
|
||||
"-DSQLITE_ENABLE_COLUMN_METADATA=1",
|
||||
"-DSQLITE_DISABLE_DIRSYNC=1",
|
||||
"-DSQLITE_ENABLE_FTS3=3",
|
||||
"-DSQLITE_ENABLE_RTREE=1",
|
||||
"-DNDEBUG=1",
|
||||
"-fno-strict-aliasing")
|
||||
pisitools.cflags.add("-DSQLITE_SECURE_DELETE",
|
||||
"-DSQLITE_ENABLE_UNLOCK_NOTIFY",
|
||||
"-DSQLITE_ENABLE_COLUMN_METADATA",
|
||||
"-DSQLITE_DISABLE_DIRSYNC",
|
||||
"-DSQLITE_ENABLE_FTS3",
|
||||
"-DSQLITE_ENABLE_FTS4",
|
||||
"-DSQLITE_ENABLE_FTS3_PARENTHESIS",
|
||||
"-DSQLITE_ENABLE_STMT_SCANSTATUS",
|
||||
"-DSQLITE_SOUNDEX",
|
||||
"-DSQLITE_ENABLE_RTREE",
|
||||
"-DSQLITE_ENABLE_API_ARMOR")
|
||||
|
||||
pisitools.cflags.sub("-O[s\d]", "-O3")
|
||||
|
||||
autotools.configure("--disable-static \
|
||||
--enable-readline \
|
||||
--enable-threadsafe")
|
||||
|
||||
|
||||
shelltools.cd("tea")
|
||||
autotools.configure(" \
|
||||
--enable-shared \
|
||||
--with-tcl='/usr/lib/' \
|
||||
--with-tclinclude='/usr/include' \
|
||||
--enable-64bit \
|
||||
--enable-threads")
|
||||
|
||||
#pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
|
||||
shelltools.cd("tea")
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
shelltools.cd("%s/sqlite-autoconf-3080803/tea" % get.workDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
|
||||
pisitools.dodoc("README*")
|
||||
|
||||
@@ -12,7 +12,8 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>An SQL Database Engine in a C Library</Summary>
|
||||
<Description>SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Supports databases up to 2 terabytes in size.</Description>
|
||||
<Archive sha1sum="175283383d010709f76fdd13cb0c8c3c329a1c67" type="targz">http://www.sqlite.org/2014/sqlite-autoconf-3080702.tar.gz</Archive>
|
||||
<Archive sha1sum="2fe3f6226a2a08a2e814b97cd53e36bb3c597112" type="targz">http://www.sqlite.org/2015/sqlite-autoconf-3080803.tar.gz</Archive>
|
||||
<Archive sha1sum="27c2cada8e663f694c0469bcae09eb0d8c55dd7c" type="zip">http://www.sqlite.org/2015/sqlite-doc-3080803.zip</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>readline-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -50,16 +51,54 @@
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for sqlite</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">sqlite</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>sqlite-tcl</Name>
|
||||
<BuildDependencies>
|
||||
<Dependency>tcl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>sqlite</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/sqlite3.8.8.3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>sqlite-tcl-32bit</Name>
|
||||
<BuildDependencies>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32/sqlite3.8.8.3/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Update release="12">
|
||||
<Date>2015-02-28</Date>
|
||||
<Version>3.8.8.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2015-01-31</Date>
|
||||
<Version>3.8.8.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
|
||||
Reference in New Issue
Block a user