[oe-commits] Paul Eggleton : sqlite3: restore upstream version numbering

git at git.openembedded.org git at git.openembedded.org
Thu May 1 15:35:16 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: b8f82a8808b0d217815b30ed06efc8a0be4494a5
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b8f82a8808b0d217815b30ed06efc8a0be4494a5

Author: Paul Eggleton <paul.eggleton at linux.intel.com>
Date:   Wed Apr 30 13:56:33 2014 +0100

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 <paul.eggleton at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../recipes-support/sqlite/{sqlite3_3080403.bb => sqlite3_3.8.4.3.bb} | 4 ++--
 1 file 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
similarity index 88%
rename from meta/recipes-support/sqlite/sqlite3_3080403.bb
rename to meta/recipes-support/sqlite/sqlite3_3.8.4.3.bb
index 7793a75..9388297 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):
     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}"
 



More information about the Openembedded-commits mailing list