diff options
| author | Andre McCurdy <armccurdy@gmail.com> | 2016-01-22 17:26:02 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-25 12:44:12 +0000 |
| commit | 9b2835e690fb3f3ed2b9febe65eb5a84906faba0 (patch) | |
| tree | 8a0977edaf8728194d30589eebd2c7946e1000f7 /meta/recipes-support/sqlite/sqlite3_3.10.0.bb | |
| parent | 89ed462a179dd2b1e707d3636f69ba86f37774fc (diff) | |
| download | poky-9b2835e690fb3f3ed2b9febe65eb5a84906faba0.tar.gz | |
sqlite: formatting improvements, move more stuff into sqlite3.inc
Reformatting only, no functional changes.
(From OE-Core rev: 34ddae767620186646fb5d36ab240fd6c98a5cbb)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3_3.10.0.bb')
| -rw-r--r-- | meta/recipes-support/sqlite/sqlite3_3.10.0.bb | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3_3.10.0.bb b/meta/recipes-support/sqlite/sqlite3_3.10.0.bb index 092f78266f..c18369222e 100644 --- a/meta/recipes-support/sqlite/sqlite3_3.10.0.bb +++ b/meta/recipes-support/sqlite/sqlite3_3.10.0.bb | |||
| @@ -1,27 +1,11 @@ | |||
| 1 | require sqlite3.inc | 1 | require sqlite3.inc |
| 2 | 2 | ||
| 3 | LICENSE = "PD" | ||
| 3 | LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0" | 4 | LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0" |
| 4 | 5 | ||
| 5 | def sqlite_download_version(d): | ||
| 6 | pvsplit = d.getVar('PV', True).split('.') | ||
| 7 | if len(pvsplit) < 4: | ||
| 8 | pvsplit.append('0') | ||
| 9 | return pvsplit[0] + ''.join([part.rjust(2,'0') for part in pvsplit[1:]]) | ||
| 10 | |||
| 11 | PE = "3" | ||
| 12 | SQLITE_PV = "${@sqlite_download_version(d)}" | ||
| 13 | SRC_URI = "http://www.sqlite.org/2016/sqlite-autoconf-${SQLITE_PV}.tar.gz \ | 6 | SRC_URI = "http://www.sqlite.org/2016/sqlite-autoconf-${SQLITE_PV}.tar.gz \ |
| 14 | file://parallel.patch \ | 7 | file://parallel.patch \ |
| 15 | " | 8 | " |
| 16 | 9 | ||
| 17 | SRC_URI[md5sum] = "274364e6ca5c1104d42912f11e61ed26" | 10 | SRC_URI[md5sum] = "274364e6ca5c1104d42912f11e61ed26" |
| 18 | SRC_URI[sha256sum] = "43cc292d70711fa7580250c8a1cd7c64813a4a0a479dbd502cce5f10b5d91042" | 11 | SRC_URI[sha256sum] = "43cc292d70711fa7580250c8a1cd7c64813a4a0a479dbd502cce5f10b5d91042" |
| 19 | |||
| 20 | UPSTREAM_CHECK_URI = "http://www.sqlite.org/" | ||
| 21 | UPSTREAM_CHECK_REGEX = "releaselog/(?P<pver>(\d+[\.\-_]*)+)\.html" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" | ||
| 24 | |||
| 25 | # Provide column meta-data API | ||
| 26 | BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" | ||
| 27 | TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" | ||
