Merge pull request #11353 from kvuorine/fwknop-fixes
[feed/packages.git] / lang / python / python-packaging / Makefile
1 #
2 # Copyright (C) 2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=python-packaging
10 PKG_VERSION:=20.4
11 PKG_RELEASE:=1
12
13 PYPI_NAME:=packaging
14 PKG_HASH:=4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8
15
16 PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
17 PKG_LICENSE:=Apache-2.0 BSD-2-Clause
18 PKG_LICENSE_FILES:=LICENSE.APACHE LICENSE.BSD
19
20 include ../pypi.mk
21 include $(INCLUDE_DIR)/package.mk
22 include ../python3-package.mk
23
24 define Package/python3-packaging
25 SECTION:=lang
26 CATEGORY:=Languages
27 SUBMENU:=Python
28 TITLE:=Core utilities for Python packages
29 URL:=https://github.com/pypa/packaging
30 DEPENDS:=+python3-light +python3-pyparsing +python3-six +python3-logging +python3-distutils
31 endef
32
33 define Package/python3-packaging/description
34 The packaging project includes version handling, specifiers,
35 markers, requirements, tags, utilities.
36 endef
37
38 $(eval $(call Py3Package,python3-packaging))
39 $(eval $(call BuildPackage,python3-packaging))
40 $(eval $(call BuildPackage,python3-packaging-src))