python-crypto: add python3 variant, src packages, omit tests
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
parent
a5fdaeb52c
commit
fa60629c99
3 changed files with 64 additions and 17 deletions
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2009-2015 OpenWrt.org
|
# Copyright (C) 2009-2015, 2017-2018 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
|
@ -7,28 +7,45 @@
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=pycrypto
|
PKG_NAME:=python-crypto
|
||||||
PKG_VERSION:=2.6.1
|
PKG_VERSION:=2.6.1
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=pycrypto-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/
|
PKG_SOURCE_URL:=https://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/
|
||||||
PKG_HASH:=f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c
|
PKG_HASH:=f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-crypto-$(PKG_VERSION)
|
||||||
|
|
||||||
PKG_LICENSE:=Public Domain
|
PKG_LICENSE:=Public Domain
|
||||||
PKG_LICENSE_FILES:=COPYRIGHT
|
PKG_LICENSE_FILES:=COPYRIGHT
|
||||||
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
include ../python-package.mk
|
include ../python-package.mk
|
||||||
|
include ../python3-package.mk
|
||||||
|
|
||||||
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
||||||
|
|
||||||
|
define Package/python-crypto/Default
|
||||||
|
SECTION:=lang-python
|
||||||
|
CATEGORY:=Languages
|
||||||
|
SUBMENU:=Python
|
||||||
|
URL:=http://www.pycrypto.org/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/python-crypto
|
define Package/python-crypto
|
||||||
SECTION:=lang-python
|
$(call Package/python-crypto/Default)
|
||||||
CATEGORY:=Languages
|
TITLE:=python-crypto
|
||||||
SUBMENU:=Python
|
DEPENDS:=+libgmp +PACKAGE_python-crypto:python
|
||||||
TITLE:=python-crypto
|
VARIANT:=python
|
||||||
URL:=http://www.pycrypto.org/
|
endef
|
||||||
DEPENDS:=+python +libgmp
|
|
||||||
|
define Package/python3-crypto
|
||||||
|
$(call Package/python-crypto/Default)
|
||||||
|
TITLE:=python3-crypto
|
||||||
|
DEPENDS:=+libgmp +PACKAGE_python3-crypto:python3
|
||||||
|
VARIANT:=python3
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/python-crypto/description
|
define Package/python-crypto/description
|
||||||
|
@ -36,19 +53,30 @@ A collection of both secure hash functions (such as MD5 and SHA),
|
||||||
and various encryption algorithms (AES, DES, IDEA, RSA, ElGamal, etc.).
|
and various encryption algorithms (AES, DES, IDEA, RSA, ElGamal, etc.).
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Package/python3-crypto/description
|
||||||
|
$(call Package/python-crypto/description)
|
||||||
|
.
|
||||||
|
(Variant for Python3)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define PyBuild/Compile
|
||||||
$(call Build/Compile/PyMod,,\
|
$(call Build/Compile/PyMod,,\
|
||||||
install --prefix=/usr --root=$(PKG_INSTALL_DIR),\
|
install --prefix=/usr --root=$(PKG_INSTALL_DIR),\
|
||||||
CONFIG_BIG_ENDIAN="$(CONFIG_BIG_ENDIAN)" \
|
CONFIG_BIG_ENDIAN="$(CONFIG_BIG_ENDIAN)" \
|
||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/python-crypto/install
|
define Py3Build/Compile
|
||||||
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)/
|
$(call Build/Compile/Py3Mod,,\
|
||||||
$(CP) \
|
install --prefix=/usr --root=$(PKG_INSTALL_DIR),\
|
||||||
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
CONFIG_BIG_ENDIAN="$(CONFIG_BIG_ENDIAN)" \
|
||||||
$(1)$(PYTHON_PKG_DIR)/
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call PyPackage,python-crypto))
|
$(eval $(call PyPackage,python-crypto))
|
||||||
$(eval $(call BuildPackage,python-crypto))
|
$(eval $(call BuildPackage,python-crypto))
|
||||||
|
$(eval $(call BuildPackage,python-crypto-src))
|
||||||
|
|
||||||
|
$(eval $(call Py3Package,python3-crypto))
|
||||||
|
$(eval $(call BuildPackage,python3-crypto))
|
||||||
|
$(eval $(call BuildPackage,python3-crypto-src))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- a/setup.py
|
--- a/setup.py
|
||||||
+++ b/setup.py
|
+++ b/setup.py
|
||||||
@@ -100,6 +100,10 @@
|
@@ -100,6 +100,10 @@ def PrintErr(*args, **kwd):
|
||||||
w(kwd.get("end", "\n"))
|
w(kwd.get("end", "\n"))
|
||||||
|
|
||||||
def endianness_macro():
|
def endianness_macro():
|
||||||
|
|
19
lang/python/python-crypto/patches/003-omit-tests.patch
Normal file
19
lang/python/python-crypto/patches/003-omit-tests.patch
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -357,16 +357,6 @@ kw = {'name':"pycrypto",
|
||||||
|
"Crypto.Random",
|
||||||
|
"Crypto.Random.Fortuna",
|
||||||
|
"Crypto.Random.OSRNG",
|
||||||
|
- "Crypto.SelfTest",
|
||||||
|
- "Crypto.SelfTest.Cipher",
|
||||||
|
- "Crypto.SelfTest.Hash",
|
||||||
|
- "Crypto.SelfTest.Protocol",
|
||||||
|
- "Crypto.SelfTest.PublicKey",
|
||||||
|
- "Crypto.SelfTest.Random",
|
||||||
|
- "Crypto.SelfTest.Random.Fortuna",
|
||||||
|
- "Crypto.SelfTest.Random.OSRNG",
|
||||||
|
- "Crypto.SelfTest.Util",
|
||||||
|
- "Crypto.SelfTest.Signature",
|
||||||
|
"Crypto.Protocol",
|
||||||
|
"Crypto.PublicKey",
|
||||||
|
"Crypto.Signature"],
|
Loading…
Reference in a new issue