Merge pull request #11934 from jefferyto/python-gnupg-0.4.6
python-gnupg: Update to 0.4.6
This commit is contained in:
commit
3d9916b07f
1 changed files with 16 additions and 24 deletions
|
@ -5,16 +5,16 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=python-gnupg
|
PKG_NAME:=python-gnupg
|
||||||
PKG_VERSION:=0.4.4
|
PKG_VERSION:=0.4.6
|
||||||
PKG_RELEASE:=3
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PYPI_NAME:=$(PKG_NAME)
|
PYPI_NAME:=$(PKG_NAME)
|
||||||
PKG_HASH:=45daf020b370bda13a1429c859fcdff0b766c0576844211446f9266cae97fb0e
|
PKG_HASH:=3aa0884b3bd414652c2385b9df39e7b87272c2eca1b8fcc3089bc9e58652019a
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-3.0-or-later
|
PKG_LICENSE:=BSD-3-Clause
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE.txt
|
||||||
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
||||||
PKG_CPE_ID:=cpe:/a:python-gnupg_project:python-gnupg
|
PKG_CPE_ID:=cpe:/a:python:python-gnupg
|
||||||
|
|
||||||
include ../pypi.mk
|
include ../pypi.mk
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
@ -24,28 +24,20 @@ define Package/python3-gnupg
|
||||||
SECTION:=lang
|
SECTION:=lang
|
||||||
CATEGORY:=Languages
|
CATEGORY:=Languages
|
||||||
SUBMENU:=Python
|
SUBMENU:=Python
|
||||||
TITLE:=python3-gnupg
|
TITLE:=A wrapper for GnuPG
|
||||||
URL:=https://gnupg.readthedocs.io/en/latest/
|
URL:=https://docs.red-dove.com/python-gnupg/
|
||||||
DEPENDS:=+gnupg +python3-light
|
DEPENDS:=+gnupg +python3-light +python3-logging
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/python3-gnupg/description
|
define Package/python3-gnupg/description
|
||||||
A Python wrapper for GnuPG
|
The gnupg module allows Python programs to make use of the
|
||||||
|
functionality provided by the GNU Privacy Guard (abbreviated GPG or
|
||||||
This module allows easy access to GnuPG.s key management, encryption
|
GnuPG). Using this module, Python programs can encrypt and decrypt
|
||||||
and signature functionality from Python programs, by interacting with
|
data, digitally sign documents and verify digital signatures, manage
|
||||||
GnuPG through file descriptors. Input arguments are strictly checked
|
(generate, list and delete) encryption keys, using Public Key
|
||||||
and sanitised, and therefore this module should be safe to use in
|
Infrastructure (PKI) encryption technology based on OpenPGP.
|
||||||
networked applications requiring direct user input. It is intended for
|
|
||||||
use on Windows, MacOS X, BSD, or Linux, with Python 2.6, Python 2.7,
|
|
||||||
Python 3.3, Python 3.4, or PyPy.
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Py3Build/Compile
|
|
||||||
$(call Python3/ModSetup,,\
|
|
||||||
install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" \
|
|
||||||
)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call Py3Package,python3-gnupg))
|
$(eval $(call Py3Package,python3-gnupg))
|
||||||
$(eval $(call BuildPackage,python3-gnupg))
|
$(eval $(call BuildPackage,python3-gnupg))
|
||||||
|
$(eval $(call BuildPackage,python3-gnupg-src))
|
||||||
|
|
Loading…
Reference in a new issue