blob: 6aed546abe08f58bf2393e14a2899088466c6138 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2015-2016, 2018-2021, 2023 Jeffery To
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-pyopenssl
11PKG_VERSION:=23.3.0
12PKG_RELEASE:=1
13
14PYPI_NAME:=pyOpenSSL
15PKG_HASH:=6b2cba5cc46e822750ec3e5a81ee12819850b11303630d575e98108a079c2b12
16
17PKG_LICENSE:=Apache-2.0
18PKG_LICENSE_FILES:=LICENSE
19PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
20PKG_CPE_ID:=cpe:/a:pyopenssl_project:pyopenssl
21
22include ../pypi.mk
23include $(INCLUDE_DIR)/package.mk
24include ../python3-package.mk
25
26define Package/python3-pyopenssl
27 SECTION:=lang
28 CATEGORY:=Languages
29 SUBMENU:=Python
30 TITLE:=OpenSSL wrapper
31 URL:=https://pyopenssl.org/
32 DEPENDS:= \
33 +python3-light \
34 +python3-openssl \
35 +python3-cryptography
36endef
37
38define Package/python3-pyopenssl/description
39Python wrapper module around the OpenSSL library
40endef
41
42$(eval $(call Py3Package,python3-pyopenssl))
43$(eval $(call BuildPackage,python3-pyopenssl))
44$(eval $(call BuildPackage,python3-pyopenssl-src))