mirror of
https://github.com/openwrt/packages.git
synced 2025-12-20 01:21:21 +00:00
python-packages: Clean up Makefiles
This removes: * Python 3 variants (VARIANT:=python3) * "for Python3" from package titles * Package selection condition from package dependencies, e.g. +PACKAGE_python3-six:python3-light replaced with +python3-light * "Default" package information sections, e.g. Package/python-six/Default removed and package details merged into Package/python3-six * "(Variant for Python3)" from package descriptions Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=python-constantly
|
||||
PKG_VERSION:=15.1.0
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PYPI_NAME:=constantly
|
||||
PKG_HASH:=586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35
|
||||
@@ -22,26 +22,19 @@ include ../pypi.mk
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../python3-package.mk
|
||||
|
||||
define Package/python-constantly/Default
|
||||
define Package/python3-constantly
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
SUBMENU:=Python
|
||||
TITLE:=Symbolic constants in Python
|
||||
URL:=https://github.com/twisted/constantly
|
||||
endef
|
||||
|
||||
define Package/python3-constantly
|
||||
$(call Package/python-constantly/Default)
|
||||
DEPENDS:=+PACKAGE_python3-constantly:python3-light
|
||||
VARIANT:=python3
|
||||
DEPENDS:=+python3-light
|
||||
endef
|
||||
|
||||
define Package/python3-constantly/description
|
||||
A library that provides symbolic constant support. It includes
|
||||
collections and constants with text, numeric, and bit flag values.
|
||||
Originally twisted.python.constants from the Twisted project.
|
||||
.
|
||||
(Variant for Python3)
|
||||
endef
|
||||
|
||||
$(eval $(call Py3Package,python3-constantly))
|
||||
|
||||
Reference in New Issue
Block a user