Andrew Geissler | 3e34fba3 | 2021-03-05 15:21:55 -0600 | [diff] [blame] | 1 | SUMMARY = "CircuitPython data descriptor classes to represent hardware registers on I2C and SPI devices." |
| 2 | HOMEPAGE = "https://github.com/adafruit/Adafruit_CircuitPython_Register" |
| 3 | LICENSE = "MIT" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6ec69d6e9e6c85adfb7799d7f8cf044e" |
| 5 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 6 | SRC_URI = "git://github.com/adafruit/Adafruit_CircuitPython_Register.git;branch=main;protocol=https" |
Patrick Williams | db4c27e | 2022-08-05 08:10:29 -0500 | [diff] [blame] | 7 | SRCREV = "d1e8ac7ad9dcd65ab83749db3e5c96ffee80ebb7" |
Andrew Geissler | 3e34fba3 | 2021-03-05 15:21:55 -0600 | [diff] [blame] | 8 | S = "${WORKDIR}/git" |
Andrew Geissler | 3e34fba3 | 2021-03-05 15:21:55 -0600 | [diff] [blame] | 9 | |
| 10 | DEPENDS += "python3-setuptools-scm-native" |
| 11 | |
| 12 | inherit setuptools3 |
| 13 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 14 | RDEPENDS:${PN} += "python3-core" |