blob: 7703722bcad70c40c400ed72ce9e9a9760c1971f [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001SUMMARY = "Python implementation of a sliding window memory map manager"
2DESCRIPTION = "A pure Python implementation of a sliding memory map to \
3help unifying memory mapped access on 32 and 64 bit systems and to help \
4managing resources more efficiently."
5HOMEPAGE = "http://github.com/gitpython-developers/GitPython"
6SECTION = "devel/python"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04007LICENSE = "BSD-3-Clause"
Patrick Williamsc0f7c042017-02-23 20:41:17 -06008LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
9
Brad Bishop316dfdd2018-06-25 12:45:53 -040010inherit pypi
11
Andrew Geissler4ed12e12020-06-05 18:00:41 -050012PYPI_PACKAGE = "smmap"
Brad Bishop19323692019-04-05 15:28:33 -040013
Andrew Geissler4ed12e12020-06-05 18:00:41 -050014SRC_URI[sha256sum] = "9c98bbd1f9786d22f14b3d4126894d56befb835ec90cef151af566c7e19b5d24"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060015
Brad Bishop316dfdd2018-06-25 12:45:53 -040016RDEPENDS_${PN} += "${PYTHON_PN}-codecs \
17 ${PYTHON_PN}-mmap \
18"
Brad Bishop19323692019-04-05 15:28:33 -040019BBCLASSEXTEND = "native nativesdk"