diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-01-14 17:29:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-14 17:29:51 +0200 |
commit | e7fba5f643dc04b77c4fcd85eaed7b58c3395666 (patch) | |
tree | 4c4c9b9e96e92435f7216b183c95a2b9b1490e9e /lang/python | |
parent | 4dd61ab61c97074209888b57c276726661200f8f (diff) | |
parent | b8e77a899027fa21c139b72779db3aa4a53f47dc (diff) |
Merge pull request #5438 from jefferyto/python-ipaddress-src
python-ipaddress: use default variant build/compile rule, add src package
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/python-ipaddress/Makefile | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/lang/python/python-ipaddress/Makefile b/lang/python/python-ipaddress/Makefile index 77e97e769..3cafd5e3c 100644 --- a/lang/python/python-ipaddress/Makefile +++ b/lang/python/python-ipaddress/Makefile @@ -7,36 +7,42 @@ include $(TOPDIR)/rules.mk -PKG_NAME:=ipaddress +PKG_NAME:=python-ipaddress PKG_VERSION:=1.0.19 -PKG_RELEASE:=1 +PKG_RELEASE:=2 -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE:=ipaddress-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/f0/ba/860a4a3e283456d6b7e2ab39ce5cf11a3490ee1a363652ac50abf9f0f5df PKG_HASH:=200d8686011d470b5e4de207d803445deee427455cd0cb7c982b68cf82524f81 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-ipaddress-$(PKG_VERSION) + PKG_LICENSE:=Python-2.0 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> include $(INCLUDE_DIR)/package.mk include ../python-package.mk +PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE) + +define Package/python-ipaddress/Default + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + URL:=https://github.com/phihag/ipaddress +endef + define Package/python-ipaddress - SECTION:=lang - CATEGORY:=Languages - SUBMENU:=Python - TITLE:=python-ipaddress - URL:=https://github.com/phihag/ipaddress - DEPENDS:=+python-light +$(call Package/python-ipaddress/Default) + TITLE:=python-ipaddress + DEPENDS:=+PACKAGE_python-ipaddress:python-light + VARIANT:=python 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)) +$(eval $(call BuildPackage,python-ipaddress-src)) |