From 0361b3962859b2443ca14756e325137f0b4c6921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 4 Feb 2019 13:51:46 +0100 Subject: [PATCH] python-decorator: add package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Karel Kočí --- lang/python/python-decorator/Makefile | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 lang/python/python-decorator/Makefile diff --git a/lang/python/python-decorator/Makefile b/lang/python/python-decorator/Makefile new file mode 100644 index 000000000..2d4416e72 --- /dev/null +++ b/lang/python/python-decorator/Makefile @@ -0,0 +1,32 @@ +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-decorator +PKG_VERSION:=4.3.2 +PKG_RELEASE:=1 +PKG_MAINTAINER:=Karel Kočí + +PKG_SOURCE_URL:=https://codeload.github.com/micheles/decorator/tar.gz/$(PKG_VERSION)? +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_HASH:=c053ec881270608a5aef624a45a7700ec76ceca9d96689506411e1f319085380 +PKG_BUILD_DIR:=$(BUILD_DIR)/decorator-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk +include ../python3-package.mk + +define Package/python3-decorator + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + URL:=https://github.com/micheles/decorator + TITLE:=python3-decodator + DEPENDS:=+python3-light + VARIANT:=python3 +endef + +$(eval $(call Py3Package,python3-decorator)) +$(eval $(call BuildPackage,python3-decorator)) +$(eval $(call BuildPackage,python3-decorator-src))