From 6328e7dcd93714ae81fe6d9d5dc92a1efb07fe39 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Tue, 19 Aug 2014 07:49:13 -0700 Subject: sqlite3: Upgrade to 2.8.6.0 Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb | 21 --------------------- meta/recipes-support/sqlite/sqlite3_3.8.6.0.bb | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb create mode 100644 meta/recipes-support/sqlite/sqlite3_3.8.6.0.bb (limited to 'meta/recipes-support/sqlite') diff --git a/meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb b/meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb deleted file mode 100644 index 244816bb9b..0000000000 --- a/meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb +++ /dev/null @@ -1,21 +0,0 @@ -require sqlite3.inc - -LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0" - -def sqlite_download_version(d): - pvsplit = d.getVar('PV', True).split('.') - 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/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz" - -S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" - -SRC_URI[md5sum] = "0544ef6d7afd8ca797935ccc2685a9ed" -SRC_URI[sha256sum] = "98c33abe4106e508e73fda648b2657ac9e969fe24695f543dcde68cc71f3091b" - -# Provide column meta-data API -BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" -TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" - diff --git a/meta/recipes-support/sqlite/sqlite3_3.8.6.0.bb b/meta/recipes-support/sqlite/sqlite3_3.8.6.0.bb new file mode 100644 index 0000000000..32f60ebbeb --- /dev/null +++ b/meta/recipes-support/sqlite/sqlite3_3.8.6.0.bb @@ -0,0 +1,21 @@ +require sqlite3.inc + +LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0" + +def sqlite_download_version(d): + pvsplit = d.getVar('PV', True).split('.') + 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/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz" + +SRC_URI[md5sum] = "f7e4a156b583abeba349629e2364224b" +SRC_URI[sha256sum] = "53bab14255bc16c3d73fdbe54b364c1764709d68dda167587f8026c98b9f4e95" + +S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" + +# Provide column meta-data API +BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" +TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" + -- cgit 1.2.3-korg