diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2019-05-16 11:51:36 -0300 |
---|---|---|
committer | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2019-05-17 23:10:39 -0300 |
commit | 436426307ddd18835f1ec07a6cc760cdebaa7523 (patch) | |
tree | 4a4a1d51f99398e550f1f69a2975fb5ede3807ba /lang | |
parent | f33f686f40cc0625a91fe0585e378f23f868d8b2 (diff) |
python-certifi: adjust Makefile style
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python/python-certifi/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lang/python/python-certifi/Makefile b/lang/python/python-certifi/Makefile index 00f7e3238..d9d9d64a7 100644 --- a/lang/python/python-certifi/Makefile +++ b/lang/python/python-certifi/Makefile @@ -1,6 +1,4 @@ # -# Copyright (C) 2007-2016 OpenWrt.org -# # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # @@ -9,25 +7,29 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-certifi PKG_VERSION:=2019.3.9 -PKG_RELEASE:=1 +PKG_RELEASE:=2 + +PKG_MAINTAINER:=Eneas U de Queiroz <cote2004-github@yahoo.com> PKG_LICENSE:=MPL-2.0 +PKG_LICENSE_FILES:=LICENSE PKG_SOURCE:=certifi-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/c/certifi PKG_HASH:=b26104d6835d1f5e49452a26eb2ff87fe7090b89dfcaee5ea2212697e1e1d7ae + PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-certifi-$(PKG_VERSION) -PKG_UNPACK=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE) include $(INCLUDE_DIR)/package.mk include ../python-package.mk include ../python3-package.mk +PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE) + define Package/python-certifi/Default SUBMENU:=Python SECTION:=lang CATEGORY:=Languages - MAINTAINER:=Eneas U de Queiroz <cote2004-github@yahoo.com> - TITLE:=Python package for providing Mozilla's CA Bundle. + TITLE:=Python package for Mozilla's CA Bundle URL:=http://certifi.io/ endef |