diff options
author | Jeffery To <jeffery.to@gmail.com> | 2015-10-29 12:43:28 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2015-10-29 12:43:28 +0800 |
commit | 5354cf51592966364b8c7514e9f8b5316b8740cd (patch) | |
tree | 23d06b056e0ffc06f6388ac11f74abffb723f7d2 | |
parent | b5e7a36aa22b3bbdec0af16f3fdc9d60f7c445be (diff) |
python-crypto: import pycrypto from old packages feed
- update to latest stable version (2.6.1)
- add PyPackage call
- add license info
- add myself as maintainer
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
-rw-r--r-- | lang/python-crypto/Makefile | 51 | ||||
-rw-r--r-- | lang/python-crypto/patches/001-no-host-paths.patch | 11 |
2 files changed, 62 insertions, 0 deletions
diff --git a/lang/python-crypto/Makefile b/lang/python-crypto/Makefile new file mode 100644 index 000000000..0e3eeb68d --- /dev/null +++ b/lang/python-crypto/Makefile @@ -0,0 +1,51 @@ +# +# Copyright (C) 2009-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:=pycrypto +PKG_VERSION:=2.6.1 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/ +PKG_MD5SUM:=55a61a054aa66812daf5161a0d5d7eda + +PKG_LICENSE:=Public Domain +PKG_LICENSE_FILES:=COPYRIGHT +PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-crypto + SECTION:=lang-python + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=python-crypto + URL:=http://www.pycrypto.org/ + DEPENDS:=+python +libgmp +endef + +define Package/python-crypto/description +A collection of both secure hash functions (such as MD5 and SHA), +and various encryption algorithms (AES, DES, IDEA, RSA, ElGamal, etc.). +endef + +define Build/Compile + $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) +endef + +define Package/python-crypto/install + $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)/ + $(CP) \ + $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \ + $(1)$(PYTHON_PKG_DIR)/ +endef + +$(eval $(call PyPackage,python-crypto)) +$(eval $(call BuildPackage,python-crypto)) diff --git a/lang/python-crypto/patches/001-no-host-paths.patch b/lang/python-crypto/patches/001-no-host-paths.patch new file mode 100644 index 000000000..d481627a2 --- /dev/null +++ b/lang/python-crypto/patches/001-no-host-paths.patch @@ -0,0 +1,11 @@ +--- a/setup.py ++++ b/setup.py +@@ -370,7 +370,7 @@ kw = {'name':"pycrypto", + 'ext_modules': plat_ext + [ + # _fastmath (uses GNU mp library) + Extension("Crypto.PublicKey._fastmath", +- include_dirs=['src/','/usr/include/'], ++ include_dirs=['src/'], + libraries=['gmp'], + sources=["src/_fastmath.c"]), + |