blob: 1a2259e4b8e38a6f9da2caf81125f85353f6d992 [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"
7LICENSE = "BSD"
8LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
9
Brad Bishop316dfdd2018-06-25 12:45:53 -040010inherit pypi
11
Brad Bishop19323692019-04-05 15:28:33 -040012PYPI_PACKAGE = "smmap2"
13
14SRC_URI[md5sum] = "1c59a985be5aa645c4c5a4e063a40dd5"
15SRC_URI[sha256sum] = "29a9ffa0497e7f2be94ca0ed1ca1aa3cd4cf25a1f6b4f5f87f74b46ed91d609a"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060016
Brad Bishop316dfdd2018-06-25 12:45:53 -040017RDEPENDS_${PN} += "${PYTHON_PN}-codecs \
18 ${PYTHON_PN}-mmap \
19"
Brad Bishop19323692019-04-05 15:28:33 -040020BBCLASSEXTEND = "native nativesdk"