diff options
author | Jeffery To <jeffery.to@gmail.com> | 2020-05-01 04:53:48 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2020-05-01 04:53:48 +0800 |
commit | b5ba871c8f754f9610dde082326912b88b036be9 (patch) | |
tree | dd06496f781d376fec81d1b2a5e4fbbcbdf63ead /lang/python/python-dns/Makefile | |
parent | 07998f702e1e9bf125145db6e73dd825f18898a5 (diff) |
python-dns: Change download source, remove incorrect PKG_CPE_ID
This changes the package to download from PyPI (using pypi.mk) and
removes the incorrect PKG_CPE_ID.
The CPE id was for Debian's python-dns package which contains PyDNS
("pydns" on PyPI). This package contains "dnspython" from PyPI.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/python/python-dns/Makefile')
-rw-r--r-- | lang/python/python-dns/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lang/python/python-dns/Makefile b/lang/python/python-dns/Makefile index fe7fd9d1c..2c71f078b 100644 --- a/lang/python/python-dns/Makefile +++ b/lang/python/python-dns/Makefile @@ -11,17 +11,15 @@ PKG_NAME:=python-dns PKG_VERSION:=1.16.0 PKG_RELEASE:=2 -PKG_SOURCE:=dnspython-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://www.dnspython.org/kits/1.16.0/ -PKG_HASH:=4bf5c5c12a4478ee7860ab176659cf64c4899ee76752d826b082f8af723c5cf9 +PYPI_NAME:=dnspython +PYPI_SOURCE_EXT:=zip +PKG_HASH:=36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01 PKG_LICENSE:=ISC PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com> -PKG_CPE_ID:=cpe:/a:debian:python-dns - -PKG_BUILD_DIR:=$(BUILD_DIR)/dnspython-$(PKG_VERSION) +include ../pypi.mk include $(INCLUDE_DIR)/package.mk include ../python3-package.mk |