From 08b2b6f93b296ae00216463eca5671131aa1aa31 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Thu, 12 Nov 2015 23:06:12 +0800 Subject: [PATCH] python-ipaddress: new package From the README: Python 3.3+'s ipaddress for Python 2.6, 2.7, 3.2. Signed-off-by: Jeffery To --- lang/python-ipaddress/Makefile | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 lang/python-ipaddress/Makefile diff --git a/lang/python-ipaddress/Makefile b/lang/python-ipaddress/Makefile new file mode 100644 index 000000000..4a38409eb --- /dev/null +++ b/lang/python-ipaddress/Makefile @@ -0,0 +1,42 @@ +# +# 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:=ipaddress +PKG_VERSION:=1.0.15 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://pypi.python.org/packages/source/i/ipaddress +PKG_MD5SUM:=12915e923b738107e47827478d553ba1 + +PKG_LICENSE:=Python-2.0 +PKG_MAINTAINER:=Jeffery To + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-ipaddress + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=python-ipaddress + URL:=https://github.com/phihag/ipaddress + DEPENDS:=+python-light +endef + +define Package/python-ipaddress/description +Python 3.3+'s ipaddress for Python 2.6, 2.7, 3.2. +endef + +define Build/Compile + $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) +endef + +$(eval $(call PyPackage,python-ipaddress)) +$(eval $(call BuildPackage,python-ipaddress))