From f9974f2a612b6b8929130a4e35dd554c0f1e068f Mon Sep 17 00:00:00 2001 From: "Maxin B. John" Date: Wed, 13 Jan 2016 12:46:03 +0200 Subject: sqlite3: upgrade to version 3.10.0 3.9.2 -> 3.10.0 1. Fixed a parallel build problem 2. Added a PACKAGECONFIG for readline (From OE-Core rev: ed46ac71846845ffc41efcd55a36e27883d9980a) Signed-off-by: Maxin B. John Signed-off-by: Richard Purdie --- meta/recipes-support/sqlite/sqlite3_3.10.0.bb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 meta/recipes-support/sqlite/sqlite3_3.10.0.bb (limited to 'meta/recipes-support/sqlite/sqlite3_3.10.0.bb') diff --git a/meta/recipes-support/sqlite/sqlite3_3.10.0.bb b/meta/recipes-support/sqlite/sqlite3_3.10.0.bb new file mode 100644 index 0000000000..092f78266f --- /dev/null +++ b/meta/recipes-support/sqlite/sqlite3_3.10.0.bb @@ -0,0 +1,27 @@ +require sqlite3.inc + +LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0" + +def sqlite_download_version(d): + pvsplit = d.getVar('PV', True).split('.') + if len(pvsplit) < 4: + pvsplit.append('0') + return pvsplit[0] + ''.join([part.rjust(2,'0') for part in pvsplit[1:]]) + +PE = "3" +SQLITE_PV = "${@sqlite_download_version(d)}" +SRC_URI = "http://www.sqlite.org/2016/sqlite-autoconf-${SQLITE_PV}.tar.gz \ + file://parallel.patch \ + " + +SRC_URI[md5sum] = "274364e6ca5c1104d42912f11e61ed26" +SRC_URI[sha256sum] = "43cc292d70711fa7580250c8a1cd7c64813a4a0a479dbd502cce5f10b5d91042" + +UPSTREAM_CHECK_URI = "http://www.sqlite.org/" +UPSTREAM_CHECK_REGEX = "releaselog/(?P(\d+[\.\-_]*)+)\.html" + +S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" + +# Provide column meta-data API +BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" +TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" -- cgit v1.2.3-54-g00ecf