diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-04-22 16:49:31 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-24 17:55:15 +0100 |
commit | 2a309746fbc4169bf9928725c44810c1098d8b6b (patch) | |
tree | 764c6243e4417298a6d11825dce1d069216f17cc | |
parent | 07d3c2ff4192ba858133e27418881bfc06f0a52b (diff) | |
download | poky-2a309746fbc4169bf9928725c44810c1098d8b6b.tar.gz |
sqlite3: Update to 3080403
And rename the PV to match the upstream versioning
This requires a PE Bump to ensure package versions don't
go backwards.
(From OE-Core rev: dbcb25038959e4cf252ba812176a112a49a382d5)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3_3080403.bb (renamed from meta/recipes-support/sqlite/sqlite3_3.8.3.1.bb) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3_3.8.3.1.bb b/meta/recipes-support/sqlite/sqlite3_3080403.bb index 4f15f5d3d3..7793a751c2 100644 --- a/meta/recipes-support/sqlite/sqlite3_3.8.3.1.bb +++ b/meta/recipes-support/sqlite/sqlite3_3080403.bb | |||
@@ -6,15 +6,15 @@ def sqlite_download_version(d): | |||
6 | pvsplit = d.getVar('PV', True).split('.') | 6 | pvsplit = d.getVar('PV', True).split('.') |
7 | return pvsplit[0] + ''.join([part.rjust(2,'0') for part in pvsplit[1:]]) | 7 | return pvsplit[0] + ''.join([part.rjust(2,'0') for part in pvsplit[1:]]) |
8 | 8 | ||
9 | PE = "1" | 9 | PE = "2" |
10 | SQLITE_PV = "${@sqlite_download_version(d)}" | 10 | SQLITE_PV = "${@sqlite_download_version(d)}" |
11 | SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz" | 11 | SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${PV}.tar.gz" |
12 | |||
13 | SRC_URI[md5sum] = "509ff98d8dc9729b618b7e96612079c6" | ||
14 | SRC_URI[sha256sum] = "de5dc216e9289fabf027f78dbbface32ffc8c6341b7d841d0814b1a452ffdb8c" | ||
15 | 12 | ||
16 | S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" | 13 | S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" |
17 | 14 | ||
15 | SRC_URI[md5sum] = "0f5459cde43cb269e5120ecd2c671ced" | ||
16 | SRC_URI[sha256sum] = "e0e995e23a324a5d6ae95d8a836240382a4d7475d09707fc469c8cafcbd48d65" | ||
17 | |||
18 | # Provide column meta-data API | 18 | # Provide column meta-data API |
19 | BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" | 19 | BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" |
20 | TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" | 20 | TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" |