pkgsrc/lang/py37-html-docs/Makefile
leot ba7473b172 py37-html-docs: Update to 3.7.2
Changes:
3.7.2
=====
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-35044: Fix the documentation with the role ``exc`` for the
  appropriated exception. 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-11233: Create availability directive for documentation.  Original
  patch by Georg Brandl.
- 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.
2018-12-31 14:03:44 +00:00

30 lines
633 B
Makefile

# $NetBSD: Makefile,v 1.3 2018/12/31 14:03:44 leot Exp $
#
VERS= 3.7.2
DISTNAME= python-${VERS}-docs-html
PKGNAME= py37-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.7
LICENSE= python-software-foundation
DIST_SUBDIR= python
USE_TOOLS+= pax
NO_CONFIGURE= yes
NO_BUILD= yes
HTMLDIR= share/doc/python3.7
INSTALLATION_DIRS= ${HTMLDIR}
do-install:
cd ${WRKSRC} && pax -rw -pp . ${DESTDIR}${PREFIX}/${HTMLDIR}
.include "../../mk/bsd.pkg.mk"