pkgsrc/lang/py36-html-docs/Makefile
adam 591c1cf496 python36 py36-html-docs: updated to 3.6.12
Python 3.6.12 final

Security
bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (CVE-2020-15523).
bpo-41004: CVE-2020-14422: The __hash__() methods of ipaddress.IPv4Interface and ipaddress.IPv6Interface incorrectly generated constant hash values of 32 and 128 respectively. This resulted in always causing hash collisions. The fix uses hash() to generate hash values for the tuple of (address, mask length, network address).
bpo-39603: Prevent http header injection by rejecting control characters in http.client.putrequest(…).

Library
bpo-41288: Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now UnpicklingError instead of crashing.
bpo-39017: Avoid infinite loop when reading specially crafted TAR files using the tarfile module (CVE-2019-20907).
2020-08-19 07:07:46 +00:00

27 lines
615 B
Makefile

# $NetBSD: Makefile,v 1.13 2020/08/19 07:07:46 adam Exp $
VERS= 3.6.12
DISTNAME= python-${VERS}-docs-html
PKGNAME= py36-html-docs-${VERS}
CATEGORIES= lang python
MASTER_SITES= https://www.python.org/ftp/python/doc/${VERS}/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= leot@NetBSD.org
HOMEPAGE= https://www.python.org/doc/
COMMENT= HTML Documentation for Python 3.6
LICENSE= python-software-foundation
USE_TOOLS+= pax
NO_CONFIGURE= yes
NO_BUILD= yes
HTMLDIR= share/doc/python3.6
INSTALLATION_DIRS= ${HTMLDIR}
do-install:
cd ${WRKSRC} && ${PAX} -rw -pp . ${DESTDIR}${PREFIX}/${HTMLDIR}
.include "../../mk/bsd.pkg.mk"