2015-11-27 20:19:46 +00:00
|
|
|
#
|
2018-01-10 21:45:39 +00:00
|
|
|
# Copyright (C) 2016-2018 OpenWrt.org
|
2015-11-27 20:19:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2018-01-10 21:45:39 +00:00
|
|
|
PKG_NAME:=python-service-identity
|
2018-12-17 22:22:49 +00:00
|
|
|
PKG_VERSION:=18.1.0
|
|
|
|
PKG_RELEASE:=1
|
2015-11-27 20:19:46 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=service_identity
|
2018-12-17 22:22:49 +00:00
|
|
|
PKG_HASH:=0858a54aabc5b459d1aafa8a518ed2081a285087f349fe3e55197989232e2e2d
|
2019-03-11 08:42:47 +00:00
|
|
|
|
2015-11-27 20:19:46 +00:00
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2015-11-27 20:19:46 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 21:45:39 +00:00
|
|
|
include ../python3-package.mk
|
|
|
|
|
|
|
|
define Package/python-service-identity/Default
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-03-11 08:42:47 +00:00
|
|
|
TITLE:=Service identity verification
|
|
|
|
URL:=https://service-identity.readthedocs.io/
|
2018-01-10 21:45:39 +00:00
|
|
|
endef
|
2015-11-27 20:19:46 +00:00
|
|
|
|
2018-01-10 21:45:39 +00:00
|
|
|
define Package/python3-service-identity
|
|
|
|
$(call Package/python-service-identity/Default)
|
|
|
|
DEPENDS:= \
|
|
|
|
+PACKAGE_python3-service-identity:python3-light \
|
|
|
|
+PACKAGE_python3-service-identity:python3-attrs \
|
2018-12-17 22:22:49 +00:00
|
|
|
+PACKAGE_python3-service-identity:python3-cryptography \
|
2018-01-10 21:45:39 +00:00
|
|
|
+PACKAGE_python3-service-identity:python3-pyasn1 \
|
2018-12-17 22:22:49 +00:00
|
|
|
+PACKAGE_python3-service-identity:python3-pyasn1-modules
|
2018-01-10 21:45:39 +00:00
|
|
|
VARIANT:=python3
|
2015-11-27 20:19:46 +00:00
|
|
|
endef
|
|
|
|
|
2020-04-01 14:21:16 +00:00
|
|
|
define Package/python3-service-identity/description
|
2015-11-27 20:19:46 +00:00
|
|
|
service_identity aspires to give you all the tools you need for
|
|
|
|
verifying whether a certificate is valid for the intended purposes.
|
2018-01-10 21:45:39 +00:00
|
|
|
.
|
|
|
|
(Variant for Python3)
|
2015-11-27 20:19:46 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-10 21:45:39 +00:00
|
|
|
$(eval $(call Py3Package,python3-service-identity))
|
|
|
|
$(eval $(call BuildPackage,python3-service-identity))
|
2018-01-14 14:38:54 +00:00
|
|
|
$(eval $(call BuildPackage,python3-service-identity-src))
|