Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1 | SUMMARY = "Python implementation of a sliding window memory map manager" |
| 2 | DESCRIPTION = "A pure Python implementation of a sliding memory map to \ |
| 3 | help unifying memory mapped access on 32 and 64 bit systems and to help \ |
| 4 | managing resources more efficiently." |
| 5 | HOMEPAGE = "http://github.com/gitpython-developers/GitPython" |
| 6 | SECTION = "devel/python" |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 7 | LICENSE = "BSD-3-Clause" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 8 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709" |
| 9 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 10 | inherit pypi |
| 11 | |
Andrew Geissler | 4ed12e1 | 2020-06-05 18:00:41 -0500 | [diff] [blame] | 12 | PYPI_PACKAGE = "smmap" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 13 | |
Andrew Geissler | 4ed12e1 | 2020-06-05 18:00:41 -0500 | [diff] [blame] | 14 | SRC_URI[sha256sum] = "9c98bbd1f9786d22f14b3d4126894d56befb835ec90cef151af566c7e19b5d24" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 15 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 16 | RDEPENDS_${PN} += "${PYTHON_PN}-codecs \ |
| 17 | ${PYTHON_PN}-mmap \ |
| 18 | " |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 19 | BBCLASSEXTEND = "native nativesdk" |