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" |
| 7 | LICENSE = "BSD" |
| 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 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 12 | PYPI_PACKAGE = "smmap2" |
| 13 | |
| 14 | SRC_URI[md5sum] = "1c59a985be5aa645c4c5a4e063a40dd5" |
| 15 | SRC_URI[sha256sum] = "29a9ffa0497e7f2be94ca0ed1ca1aa3cd4cf25a1f6b4f5f87f74b46ed91d609a" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 16 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 17 | RDEPENDS_${PN} += "${PYTHON_PN}-codecs \ |
| 18 | ${PYTHON_PN}-mmap \ |
| 19 | " |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 20 | BBCLASSEXTEND = "native nativesdk" |