Merge pull request #5419 from commodo/python-package-mk-localize
[feed/packages.git] / lang / python / python-service-identity / Makefile
1 #
2 # Copyright (C) 2016 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=service_identity
11 PKG_VERSION:=16.0.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://pypi.python.org/packages/source/s/service_identity
16 PKG_HASH:=0630e222f59f91f3db498be46b1d879ff220955d7bbad719a5cb9ad14e3c3036
17
18 PKG_LICENSE:=MIT
19 PKG_LICENSE_FILES:=LICENSE
20 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
21
22 include $(INCLUDE_DIR)/package.mk
23 include ../python-package.mk
24
25 define Package/python-service-identity
26 SECTION:=lang
27 CATEGORY:=Languages
28 SUBMENU:=Python
29 TITLE:=python-service-identity
30 URL:=https://github.com/pyca/service_identity
31 DEPENDS:=+python-light +python-attrs +python-pyasn1 +python-pyasn1-modules +python-pyopenssl
32 endef
33
34 define Package/python-service-identity/description
35 service_identity aspires to give you all the tools you need for
36 verifying whether a certificate is valid for the intended purposes.
37 endef
38
39 define Build/Compile
40 $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
41 endef
42
43 $(eval $(call PyPackage,python-service-identity))
44 $(eval $(call BuildPackage,python-service-identity))