diff options
| author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-04-23 23:23:34 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-04-23 23:23:34 -0400 |
| commit | 27094db4e7d75627672f2aa39d4b76b8832c4d7a (patch) | |
| tree | 9bd97323a7a1213afeab571f5c7e1b598c1d939b /meta-openstack/recipes-devtools/python/python-pysqlite_2.6.3.bb | |
| parent | a9f21fcbffdafec10be610cbe01f5caf8f3ba536 (diff) | |
| download | meta-cloud-services-27094db4e7d75627672f2aa39d4b76b8832c4d7a.tar.gz | |
pysqlite: Python interface to SQLite 3
barbican uses sqlite for its database, and uses pysqlite to access data.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-pysqlite_2.6.3.bb')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-pysqlite_2.6.3.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-pysqlite_2.6.3.bb b/meta-openstack/recipes-devtools/python/python-pysqlite_2.6.3.bb new file mode 100644 index 0000000..8caa37c --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pysqlite_2.6.3.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | DESCRIPTION = "DB-API 2.0 interface for SQLite 3.x" | ||
| 2 | HOMEPAGE = "http://github.com/ghaering/pysqlite" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "zlib" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a85bd923e5c830f8eb89db354ff72f38" | ||
| 6 | |||
| 7 | PR = "r0" | ||
| 8 | |||
| 9 | SRCNAME = "pysqlite" | ||
| 10 | SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "7ff1cedee74646b50117acff87aa1cfa" | ||
| 13 | SRC_URI[sha256sum] = "fe9c35216bf56c858b34c4b4c8be7e34566ddef29670e5a5b43f9cb8ecfbb28d" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 16 | |||
| 17 | inherit setuptools | ||
| 18 | |||
| 19 | FILES_${PN} += "${datadir}/*" | ||
| 20 | |||
| 21 | # DEPENDS_default: python-pip | ||
| 22 | |||
| 23 | DEPENDS += " \ | ||
| 24 | python-pip \ | ||
| 25 | " | ||
| 26 | |||
| 27 | # RDEPENDS_default: | ||
| 28 | RDEPENDS_${PN} += " \ | ||
| 29 | " | ||
