1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

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>
This commit is contained in:
Paul Eggleton
2014-04-30 13:56:33 +01:00
committed by Richard Purdie
parent 81c4c89c54
commit d36c6061c1
@@ -6,9 +6,9 @@ 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"
PE = "3"
SQLITE_PV = "${@sqlite_download_version(d)}"
SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${PV}.tar.gz"
SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz"
S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}"