d44d08b598
Changes: 3.6.4 ----- Documentation ------------- - bpo-32105: Added asyncio.BaseEventLoop.connect_accepted_socket versionaddded marker. - bpo-31537: Fix incorrect usage of ``get_history_length`` in readline documentation example code. Patch by Brad Smith. - bpo-30085: The operator functions without double underscores are preferred for clarity. The one with underscores are only kept for back- compatibility.
30 lines
633 B
Makefile
30 lines
633 B
Makefile
# $NetBSD: Makefile,v 1.5 2017/12/19 11:33:04 leot Exp $
|
|
#
|
|
|
|
VERS= 3.6.4
|
|
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"
|