gst1-plugins-base: update to 1.22.8
[feed/packages.git] / utils / mpremote / Makefile
1 #
2 # Copyright (C) 2023 Jeffery To
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=mpremote
11 PKG_VERSION:=1.21.0
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=mpremote
15 PKG_HASH:=65bc94511f6ff499e901ab59462a5f0744ff7e2cf71d8c75700d14a89c54ed61
16
17 PKG_LICENSE:=MIT
18 PKG_LICENSE_FILES:=LICENSE
19 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
20
21 PKG_BUILD_DEPENDS:=python-hatchling/host python-hatch-requirements-txt/host python-hatch-vcs/host
22
23 include ../../lang/python/pypi.mk
24 include $(INCLUDE_DIR)/package.mk
25 include ../../lang/python/python3-package.mk
26
27 define Package/mpremote
28 SECTION:=utils
29 CATEGORY:=Utilities
30 TITLE:=Interacting remotely with MicroPython devices
31 URL:=https://github.com/micropython/micropython
32 DEPENDS:=+python3-light +python3-urllib +python3-pyserial
33 endef
34
35 define Package/mpremote/description
36 This CLI tool provides an integrated set of utilities to remotely
37 interact with and automate a MicroPython device over a serial
38 connection.
39 endef
40
41 $(eval $(call Py3Package,mpremote))
42 $(eval $(call BuildPackage,mpremote))
43 $(eval $(call BuildPackage,mpremote-src))