python-wheel: Update to 0.41.3
[feed/packages.git] / lang / python / python-wheel / 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:=python-wheel
11 PKG_VERSION:=0.41.3
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=wheel
15 PKG_HASH:=4d4987ce51a49370ea65c0bfd2234e8ce80a12780820d9dc462597a6e60d0841
16
17 PKG_LICENSE:=MIT
18 PKG_LICENSE_FILES:=LICENSE.txt
19 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
20
21 PKG_HOST_ONLY:=1
22 HOST_BUILD_DEPENDS:=python3/host python-build/host python-installer/host python-flit-core/host
23
24 include ../pypi.mk
25 include $(INCLUDE_DIR)/package.mk
26 include $(INCLUDE_DIR)/host-build.mk
27 include ../python3-package.mk
28 include ../python3-host-build.mk
29
30 define Package/python3-wheel
31 SECTION:=lang
32 CATEGORY:=Languages
33 SUBMENU:=Python
34 TITLE:=A built-package format for Python
35 URL:=https://github.com/pypa/wheel
36 DEPENDS:=+python3-light +python3-email +python3-logging +python3-setuptools
37 BUILDONLY:=1
38 endef
39
40 define Package/python3-wheel/description
41 This library is the reference implementation of the Python wheel
42 packaging standard, as defined in PEP 427.
43 endef
44
45 $(eval $(call Py3Package,python3-wheel))
46 $(eval $(call BuildPackage,python3-wheel))
47 $(eval $(call BuildPackage,python3-wheel-src))
48 $(eval $(call HostBuild))