b5c7473761
Changes: 3.6.8 ===== Documentation ------------- - bpo-35089: Remove mention of ``typing.io`` and ``typing.re``. Their types should be imported from ``typing`` directly. - bpo-35038: Fix the documentation about an unexisting `f_restricted` attribute in the frame object. Patch by Stéphane Wirtel - bpo-35035: Rename documentation for :mod:`email.utils` to ``email.utils.rst``. - bpo-34967: Use app.add_object_type() instead of the deprecated Sphinx function app.description_unit() - bpo-33594: Document ``getargspec``, ``from_function`` and ``from_builtin`` as deprecated in their respective docstring, and include version since deprecation in DeprecationWarning message. - bpo-32613: Update the faq/windows.html to use the py command from PEP 397 instead of python.
30 lines
633 B
Makefile
30 lines
633 B
Makefile
# $NetBSD: Makefile,v 1.9 2018/12/31 14:24:45 leot Exp $
|
|
#
|
|
|
|
VERS= 3.6.8
|
|
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
|
|
|
|
DIST_SUBDIR= python
|
|
|
|
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"
|