blob: fd802604717adbc2807c58b977ade21b2b64259a [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
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
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-trove-classifiers
11PKG_VERSION:=2023.11.29
12PKG_RELEASE:=1
13
14PYPI_NAME:=trove-classifiers
15PKG_HASH:=ff8f7fd82c7932113b46e7ef6742c70091cc63640c8c65db00d91f2e940b9514
16
17PKG_LICENSE:=Apache-2.0
18PKG_LICENSE_FILES:=LICENSE
19PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
20
21PKG_HOST_ONLY:=1
22PKG_BUILD_DEPENDS:=python-calver/host
23HOST_BUILD_DEPENDS:= \
24 python3/host \
25 python-build/host \
26 python-installer/host \
27 python-wheel/host \
28 python-calver/host
29
30include ../pypi.mk
31include $(INCLUDE_DIR)/package.mk
32include $(INCLUDE_DIR)/host-build.mk
33include ../python3-package.mk
34include ../python3-host-build.mk
35
36define Package/python3-trove-classifiers
37 SECTION:=lang
38 CATEGORY:=Languages
39 SUBMENU:=Python
40 TITLE:=Canonical source for classifiers on PyPI (pypi.org).
41 URL:=https://github.com/pypa/trove-classifiers
42 DEPENDS:=+python3-light
43 BUILDONLY:=1
44endef
45
46define Package/python3-trove-classifiers/description
47Canonical source for classifiers on PyPI.
48
49Classifiers categorize projects per PEP 301. Use this package to
50validate classifiers in packages for PyPI upload or download.
51endef
52
53$(eval $(call Py3Package,python3-trove-classifiers))
54$(eval $(call BuildPackage,python3-trove-classifiers))
55$(eval $(call BuildPackage,python3-trove-classifiers-src))
56$(eval $(call HostBuild))