This updates all Python packages that download their source from PyPi to use pypi.mk. This will allow future improvements/changes to pypi.mk to affect all relevant packages. This also makes it easier for future Python packages to start using pypi.mk, when it's clear how it is used in existing packages. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
85 lines
2.1 KiB
Makefile
85 lines
2.1 KiB
Makefile
#
|
|
# Copyright (C) 2018 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-automat
|
|
PKG_VERSION:=0.8.0
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=Automat
|
|
PKG_HASH:=269a09dfb063a3b078983f4976d83f0a0d3e6e7aaf8e27d8df1095e09dc4a484
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python-package.mk
|
|
include ../python3-package.mk
|
|
|
|
PYTHON_PKG_SETUP_VARS:= \
|
|
PKG_VERSION="$(PKG_VERSION)"
|
|
PYTHON3_PKG_SETUP_VARS:= \
|
|
PKG_VERSION="$(PKG_VERSION)"
|
|
|
|
define Package/python-automat/Default
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Concise, idiomatic finite-state automata
|
|
URL:=https://github.com/glyph/Automat
|
|
endef
|
|
|
|
define Package/python-automat
|
|
$(call Package/python-automat/Default)
|
|
DEPENDS:= \
|
|
+PACKAGE_python-automat:python-light \
|
|
+PACKAGE_python-automat:python-attrs \
|
|
+PACKAGE_python-automat:python-six
|
|
VARIANT:=python
|
|
endef
|
|
|
|
define Package/python3-automat
|
|
$(call Package/python-automat/Default)
|
|
DEPENDS:= \
|
|
+PACKAGE_python3-automat:python3-light \
|
|
+PACKAGE_python3-automat:python3-attrs \
|
|
+PACKAGE_python3-automat:python3-six
|
|
VARIANT:=python3
|
|
endef
|
|
|
|
define Package/python-automat/description
|
|
Automat is a library for concise, idiomatic Python expression of
|
|
finite-state automata (particularly deterministic finite-state
|
|
transducers).
|
|
endef
|
|
|
|
define Package/python3-automat/description
|
|
$(call Package/python-automat/description)
|
|
.
|
|
(Variant for Python3)
|
|
endef
|
|
|
|
define PyPackage/python-automat/filespec
|
|
+|$(PYTHON_PKG_DIR)
|
|
-|$(PYTHON_PKG_DIR)/automat/_visualize.py
|
|
endef
|
|
|
|
define Py3Package/python3-automat/filespec
|
|
+|$(PYTHON3_PKG_DIR)
|
|
-|$(PYTHON3_PKG_DIR)/automat/_visualize.py
|
|
endef
|
|
|
|
$(eval $(call PyPackage,python-automat))
|
|
$(eval $(call BuildPackage,python-automat))
|
|
$(eval $(call BuildPackage,python-automat-src))
|
|
|
|
$(eval $(call Py3Package,python3-automat))
|
|
$(eval $(call BuildPackage,python3-automat))
|
|
$(eval $(call BuildPackage,python3-automat-src))
|