summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2014-04-30 13:56:33 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-30 21:52:32 +0100
commitd36c6061c11d0edeb2b8dd5bb3b2c63a1f37c109 (patch)
treeb55db7ebecdf69ba316a2e462fbc7e7dd0057b20
parent81c4c89c54706cae980e3048bd7c2ba881336399 (diff)
downloadpoky-d36c6061c11d0edeb2b8dd5bb3b2c63a1f37c109.tar.gz
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. (From OE-Core rev: b8f82a8808b0d217815b30ed06efc8a0be4494a5) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb (renamed from meta/recipes-support/sqlite/sqlite3_3080403.bb)4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3_3080403.bb b/meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb
index 7793a751c2..938829780a 100644
--- a/meta/recipes-support/sqlite/sqlite3_3080403.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb
@@ -6,9 +6,9 @@ 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
9PE = "2" 9PE = "3"
10SQLITE_PV = "${@sqlite_download_version(d)}" 10SQLITE_PV = "${@sqlite_download_version(d)}"
11SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${PV}.tar.gz" 11SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz"
12 12
13S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" 13S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}"
14 14