From b8f82a8808b0d217815b30ed06efc8a0be4494a5 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 30 Apr 2014 13:56:33 +0100 Subject: sqlite3: restore upstream version numbering Regardless of the numbering used in source archive filenames, the upstream version number is in dotted form in documentation, release notes and the website, so we need to be using that here since that is what people will expect to see. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb | 21 +++++++++++++++++++++ meta/recipes-support/sqlite/sqlite3_3080403.bb | 21 --------------------- 2 files changed, 21 insertions(+), 21 deletions(-) create mode 100644 meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb delete mode 100644 meta/recipes-support/sqlite/sqlite3_3080403.bb diff --git a/meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb b/meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb new file mode 100644 index 0000000000..938829780a --- /dev/null +++ b/meta/recipes-support/sqlite/sqlite3_3.8.4.3.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" + +S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" + +SRC_URI[md5sum] = "0f5459cde43cb269e5120ecd2c671ced" +SRC_URI[sha256sum] = "e0e995e23a324a5d6ae95d8a836240382a4d7475d09707fc469c8cafcbd48d65" + +# 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_3080403.bb b/meta/recipes-support/sqlite/sqlite3_3080403.bb deleted file mode 100644 index 7793a751c2..0000000000 --- a/meta/recipes-support/sqlite/sqlite3_3080403.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 = "2" -SQLITE_PV = "${@sqlite_download_version(d)}" -SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${PV}.tar.gz" - -S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" - -SRC_URI[md5sum] = "0f5459cde43cb269e5120ecd2c671ced" -SRC_URI[sha256sum] = "e0e995e23a324a5d6ae95d8a836240382a4d7475d09707fc469c8cafcbd48d65" - -# Provide column meta-data API -BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" -TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" - -- cgit v1.2.3