From 3021cb267cbfbab02155f771eef7d24d202eb5ec Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Thu, 12 Nov 2015 23:39:50 +0800 Subject: [PATCH 1/4] python-ply: new package From the README: PLY is a 100% Python implementation of the common parsing tools lex and yacc. Signed-off-by: Jeffery To --- lang/python-ply/Makefile | 44 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 lang/python-ply/Makefile diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile new file mode 100644 index 000000000..82821ee15 --- /dev/null +++ b/lang/python-ply/Makefile @@ -0,0 +1,44 @@ +# +# Copyright (C) 2015 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:=ply +PKG_VERSION:=3.8 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.dabeaz.com/ply +PKG_MD5SUM:=94726411496c52c87c2b9429b12d5c50 + +PKG_LICENSE:=BSD-3-Clause +PKG_LICENSE_FILES:=README.md +PKG_MAINTAINER:=Jeffery To + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-ply + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=python-ply + URL:=http://www.dabeaz.com/ply/ + DEPENDS:=+python-light +endef + +define Package/python-ply/description +PLY is a 100% Python implementation of the common parsing tools lex +and yacc. +endef + +define Build/Compile + $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) +endef + +$(eval $(call PyPackage,python-ply)) +$(eval $(call BuildPackage,python-ply)) From 0fd914ae0fa20df5ae9e140ace9383a50320f740 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Fri, 13 Nov 2015 16:17:17 +0800 Subject: [PATCH 2/4] python-ply: use setuptools Signed-off-by: Jeffery To --- lang/python-ply/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile index 82821ee15..8a6863ab3 100644 --- a/lang/python-ply/Makefile +++ b/lang/python-ply/Makefile @@ -15,6 +15,8 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.dabeaz.com/ply PKG_MD5SUM:=94726411496c52c87c2b9429b12d5c50 +PKG_BUILD_DEPENDS:=python python-setuptools + PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=README.md PKG_MAINTAINER:=Jeffery To From 6afa7989580ff10b2d3a0ab44cf42f77e8a3470d Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Mon, 16 Nov 2015 16:54:24 +0800 Subject: [PATCH 3/4] python-ply: added Build/InstallDev section Signed-off-by: Jeffery To --- lang/python-ply/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile index 8a6863ab3..3e8792c80 100644 --- a/lang/python-ply/Makefile +++ b/lang/python-ply/Makefile @@ -42,5 +42,12 @@ define Build/Compile $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) endef +define Build/InstallDev + $(INSTALL_DIR) $(PYTHON_LIB_DIR)/site-packages + $(CP) \ + $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \ + $(PYTHON_LIB_DIR)/site-packages +endef + $(eval $(call PyPackage,python-ply)) $(eval $(call BuildPackage,python-ply)) From d9409e25cc1bfda5a9acabab1fdf5632d497427e Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Mon, 16 Nov 2015 19:52:40 +0800 Subject: [PATCH 4/4] package-ply: use given path instead of copying directly into staging_dir Signed-off-by: Jeffery To --- lang/python-ply/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile index 3e8792c80..ed3fb833d 100644 --- a/lang/python-ply/Makefile +++ b/lang/python-ply/Makefile @@ -43,10 +43,10 @@ define Build/Compile endef define Build/InstallDev - $(INSTALL_DIR) $(PYTHON_LIB_DIR)/site-packages + $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR) $(CP) \ $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \ - $(PYTHON_LIB_DIR)/site-packages + $(1)$(PYTHON_PKG_DIR) endef $(eval $(call PyPackage,python-ply))