From 1b6e716edb4371d58bf5d59b56bdb26d47400c56 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Mon, 14 Aug 2017 18:59:13 +0200 Subject: [PATCH] python-gnupg: switch to python-gnupg 0.4.1 Aparently there are two python gnupg wrappers around https://pypi.python.org/pypi/python-gnupg/ and https://pypi.python.org/pypi/gnupg/ We used to package the latter, now we switched to the prior. Signed-off-by: Daniel Golle --- lang/python/python-gnupg/Makefile | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/lang/python/python-gnupg/Makefile b/lang/python/python-gnupg/Makefile index 32bd6c333..d01385999 100644 --- a/lang/python/python-gnupg/Makefile +++ b/lang/python/python-gnupg/Makefile @@ -5,20 +5,19 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-gnupg -PKG_VERSION:=2.3.0 +PKG_VERSION:=0.4.1 PKG_RELEASE:=1 -PKG_SOURCE_NAME:=gnupg -PKG_SOURCE:=$(PKG_SOURCE_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=https://pypi.python.org/packages/fa/ea/58e0415e1e3c3a0649119158e036ca4a9af154c56ef80f3d6de986bf9cb2/ -PKG_MD5SUM:=b6ebde86093f262f8430eff8d8a4c82b -PKG_HASH:=1d90e854dcc7790a7efc3aac5998159553cc34ec599ee2bc7927beb45fb564ec +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://pypi.python.org/packages/fc/f1/df6c06da34939f67ea622e0b31dbc5bdb5121b271ab530d151df59974425/ +PKG_MD5SUM:=b5d98344798b3cbb80cdcc1bfd788ea3 +PKG_HASH:=ef47b02eaf41dee3cf4b02ddf83130827318de9fe3eae89d01a3f05859e20e1a PKG_LICENSE:=GPL-3.0+ PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Daniel Golle -PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-$(PKG_SOURCE_NAME)-$(PKG_VERSION) +PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-$(PKG_NAME)-$(PKG_VERSION) PKG_UNPACK=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE) include $(INCLUDE_DIR)/package.mk @@ -65,6 +64,19 @@ $(call Package/python-gnupg/description) (Variant for Python3) endef +define PyBuild/Compile + $(call Build/Compile/PyMod,,\ + install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" \ + ) +endef + +define Py3Build/Compile + $(call Build/Compile/Py3Mod,,\ + install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" \ + ) +endef + + $(eval $(call PyPackage,python-gnupg)) $(eval $(call BuildPackage,python-gnupg))