f3aa4ab1a3
What's new in version 0.17.1: This release address a packaging error because of an erroneous declaration that any built wheels are universal. What's new in version 0.17.0: This is a major bug-fix release, including: - Fix from collections import ChainMap after install_aliases() - Fix multiple import from __future__ bug in futurize - Add support for proper %s formatting of newbytes - Properly implement iterator protocol for newrange object - Fix past.translation on read-only file systems - Fix Tkinter import bug introduced in Python 2.7.4 - Correct TypeError to ValueError in a specific edge case for newrange - Support inequality tests betwen newstrs and newbytes - Add type check to __get__ in newsuper - Fix fix_divsion_safe to support better conversion of complex expressions, and skip obvious float division. As well as a number of corrections to a variety of documentation, and updates to test infrastructure.
21 lines
563 B
Makefile
21 lines
563 B
Makefile
# $NetBSD: Makefile,v 1.5 2018/10/31 10:54:39 adam Exp $
|
|
|
|
DISTNAME= future-0.17.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=f/future/}
|
|
|
|
MAINTAINER= gde@llew.me
|
|
#HOMEPAGE= https://python-future.org/
|
|
COMMENT= Clean single-source support for Python 3 and 2
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} futurize futurize-${PYVERSSUFFIX} && \
|
|
${MV} pasteurize pasteurize-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|