2017-07-08 19:28:30 +00:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-gnupg
|
2021-04-28 18:06:38 +00:00
|
|
|
PKG_VERSION:=0.4.7
|
|
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
2017-07-08 19:28:30 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
2021-04-28 18:06:38 +00:00
|
|
|
PKG_HASH:=2061f56b1942c29b92727bf9aecbd3cea3893acc9cccbdc7eb4604285efe4ac7
|
2017-07-08 19:28:30 +00:00
|
|
|
|
2020-04-22 21:25:52 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
2017-07-08 19:28:30 +00:00
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
2020-04-22 21:25:52 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:python:python-gnupg
|
2017-07-08 19:28:30 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2017-07-08 19:28:30 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 07:56:52 +00:00
|
|
|
include ../python3-package.mk
|
2017-07-08 19:28:30 +00:00
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-gnupg
|
2017-07-08 19:28:30 +00:00
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2020-04-22 21:25:52 +00:00
|
|
|
TITLE:=A wrapper for GnuPG
|
|
|
|
URL:=https://docs.red-dove.com/python-gnupg/
|
|
|
|
DEPENDS:=+gnupg +python3-light +python3-logging
|
2017-07-08 19:28:30 +00:00
|
|
|
endef
|
|
|
|
|
2020-04-01 14:21:16 +00:00
|
|
|
define Package/python3-gnupg/description
|
2020-04-22 21:25:52 +00:00
|
|
|
The gnupg module allows Python programs to make use of the
|
|
|
|
functionality provided by the GNU Privacy Guard (abbreviated GPG or
|
|
|
|
GnuPG). Using this module, Python programs can encrypt and decrypt
|
|
|
|
data, digitally sign documents and verify digital signatures, manage
|
|
|
|
(generate, list and delete) encryption keys, using Public Key
|
|
|
|
Infrastructure (PKI) encryption technology based on OpenPGP.
|
2017-08-14 16:59:13 +00:00
|
|
|
endef
|
|
|
|
|
2017-07-08 19:28:30 +00:00
|
|
|
$(eval $(call Py3Package,python3-gnupg))
|
|
|
|
$(eval $(call BuildPackage,python3-gnupg))
|
2020-04-22 21:25:52 +00:00
|
|
|
$(eval $(call BuildPackage,python3-gnupg-src))
|