From 9e5225ffa836fd044a18bb8b66137fea91b04332 Mon Sep 17 00:00:00 2001 From: fbrosson Date: Sat, 15 Sep 2018 22:36:00 +0000 Subject: [PATCH] SQLite: drop 3.20.1 & 3.21.0. --- dev-db/sqlite/sqlite-3.20.1.0.recipe | 90 ---------------------------- dev-db/sqlite/sqlite-3.21.0.0.recipe | 90 ---------------------------- 2 files changed, 180 deletions(-) delete mode 100644 dev-db/sqlite/sqlite-3.20.1.0.recipe delete mode 100644 dev-db/sqlite/sqlite-3.21.0.0.recipe diff --git a/dev-db/sqlite/sqlite-3.20.1.0.recipe b/dev-db/sqlite/sqlite-3.20.1.0.recipe deleted file mode 100644 index 2e101a127..000000000 --- a/dev-db/sqlite/sqlite-3.20.1.0.recipe +++ /dev/null @@ -1,90 +0,0 @@ -SUMMARY="An SQL Database Engine in a C library" -DESCRIPTION="SQLite is a software library that implements a self-contained, \ -serverless, zero-configuration, transactional SQL database engine. SQLite is \ -the most widely deployed SQL database engine in the world. The source code for \ -SQLite is in the public domain." -HOMEPAGE="https://www.sqlite.org/" -COPYRIGHT="Public Domain" -LICENSE="SQLite" -REVISION="2" -sqliteVersion=$(echo $portVersion | sed -e 's/\.\([0-9]\>\)/0\1/g' -e 's/\.//g') -SOURCE_URI="https://www.sqlite.org/2017/sqlite-autoconf-$sqliteVersion.tar.gz" -CHECKSUM_SHA256="ec66595b29bc0798b023a5122021ea646ab4fa9e2f735937c5426feeba950742" -SOURCE_DIR="sqlite-autoconf-$sqliteVersion" - -ARCHITECTURES="x86_gcc2 x86 x86_64" -SECONDARY_ARCHITECTURES="x86_gcc2 x86" - -PROVIDES=" - sqlite$secondaryArchSuffix = $portVersion compat >= 3 - lib:libsqlite3$secondaryArchSuffix = 0.8.6 compat >= 0 - " -if [ -z "$secondaryArchSuffix" ]; then - PROVIDES="$PROVIDES - cmd:sqlite3 = $portVersion compat >= 3 - " -fi - -REQUIRES=" - haiku$secondaryArchSuffix - " - -PROVIDES_devel=" - sqlite${secondaryArchSuffix}_devel = $portVersion - devel:libsqlite3$secondaryArchSuffix = 0.8.6 compat >= 0 - " -REQUIRES_devel=" - sqlite$secondaryArchSuffix == $portVersion base - " - -BUILD_REQUIRES=" - haiku${secondaryArchSuffix}_devel - " -BUILD_PREREQUIRES=" - cmd:aclocal - cmd:autoconf - cmd:automake - cmd:gcc$secondaryArchSuffix - cmd:ld$secondaryArchSuffix - cmd:libtoolize$secondaryArchSuffix - cmd:make - " - -BUILD() -{ - autoreconf -fi - export CPPFLAGS="$CPPFLAGS \ - -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY \ - -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_SECURE_DELETE=1 \ - -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS \ - -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_RTREE" - runConfigure ./configure - # Not using "make $jobArgs" because parallel builds are not supported. - make -} - -INSTALL() -{ - make install - - # remove libtool file - rm $libDir/libsqlite3.la - - prepareInstalledDevelLib libsqlite3 - fixPkgconfig - - # devel package - packageEntries devel \ - $developDir - - # Remove stuff we don't need in the secondary architecture base package. - if [ -n "$secondaryArchSuffix" ]; then - rm -rf $binDir - rm -rf $documentationDir - fi -} - -TEST() -{ - make check -} diff --git a/dev-db/sqlite/sqlite-3.21.0.0.recipe b/dev-db/sqlite/sqlite-3.21.0.0.recipe deleted file mode 100644 index 97b49250c..000000000 --- a/dev-db/sqlite/sqlite-3.21.0.0.recipe +++ /dev/null @@ -1,90 +0,0 @@ -SUMMARY="An SQL Database Engine in a C library" -DESCRIPTION="SQLite is a software library that implements a self-contained, \ -serverless, zero-configuration, transactional SQL database engine. SQLite is \ -the most widely deployed SQL database engine in the world. The source code for \ -SQLite is in the public domain." -HOMEPAGE="https://www.sqlite.org/" -COPYRIGHT="Public Domain" -LICENSE="SQLite" -REVISION="1" -sqliteVersion=$(echo $portVersion | sed -e 's/\.\([0-9]\>\)/0\1/g' -e 's/\.//g') -SOURCE_URI="https://www.sqlite.org/2017/sqlite-autoconf-$sqliteVersion.tar.gz" -CHECKSUM_SHA256="d7dd516775005ad87a57f428b6f86afd206cb341722927f104d3f0cf65fbbbe3" -SOURCE_DIR="sqlite-autoconf-$sqliteVersion" - -ARCHITECTURES="x86_gcc2 x86 x86_64" -SECONDARY_ARCHITECTURES="x86_gcc2 x86" - -PROVIDES=" - sqlite$secondaryArchSuffix = $portVersion compat >= 3 - lib:libsqlite3$secondaryArchSuffix = 0.8.6 compat >= 0 - " -if [ -z "$secondaryArchSuffix" ]; then - PROVIDES="$PROVIDES - cmd:sqlite3 = $portVersion compat >= 3 - " -fi - -REQUIRES=" - haiku$secondaryArchSuffix - " - -PROVIDES_devel=" - sqlite${secondaryArchSuffix}_devel = $portVersion - devel:libsqlite3$secondaryArchSuffix = 0.8.6 compat >= 0 - " -REQUIRES_devel=" - sqlite$secondaryArchSuffix == $portVersion base - " - -BUILD_REQUIRES=" - haiku${secondaryArchSuffix}_devel - " -BUILD_PREREQUIRES=" - cmd:aclocal - cmd:autoconf - cmd:automake - cmd:gcc$secondaryArchSuffix - cmd:ld$secondaryArchSuffix - cmd:libtoolize$secondaryArchSuffix - cmd:make - " - -BUILD() -{ - autoreconf -fi - export CPPFLAGS="$CPPFLAGS \ - -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY \ - -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_SECURE_DELETE=1 \ - -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS \ - -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_RTREE" - runConfigure ./configure - # Not using "make $jobArgs" because parallel builds are not supported. - make -} - -INSTALL() -{ - make install - - # remove libtool file - rm $libDir/libsqlite3.la - - prepareInstalledDevelLib libsqlite3 - fixPkgconfig - - # devel package - packageEntries devel \ - $developDir - - # Remove stuff we don't need in the secondary architecture base package. - if [ -n "$secondaryArchSuffix" ]; then - rm -rf $binDir - rm -rf $documentationDir - fi -} - -TEST() -{ - make check -}