pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-future



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Oct 31 10:54:39 UTC 2018

Modified Files:
        pkgsrc/devel/py-future: Makefile distinfo

Log Message:
py-future: updated to 0.17.1

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.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-future/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-future/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-future/Makefile
diff -u pkgsrc/devel/py-future/Makefile:1.4 pkgsrc/devel/py-future/Makefile:1.5
--- pkgsrc/devel/py-future/Makefile:1.4 Mon Sep  4 18:00:52 2017
+++ pkgsrc/devel/py-future/Makefile     Wed Oct 31 10:54:39 2018
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.4 2017/09/04 18:00:52 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2018/10/31 10:54:39 adam Exp $
 
-DISTNAME=      future-0.16.0
+DISTNAME=      future-0.17.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
-CATEGORIES=    devel
+CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=f/future/}
 
 MAINTAINER=    gde%llew.me@localhost
@@ -14,10 +13,9 @@ LICENSE=     mit
 USE_LANGUAGES= # none
 
 post-install:
-       ${MV} ${DESTDIR}${PREFIX}/bin/futurize \
-               ${DESTDIR}${PREFIX}/bin/futurize-${PYVERSSUFFIX} || ${TRUE}
-       ${MV} ${DESTDIR}${PREFIX}/bin/pasteurize \
-               ${DESTDIR}${PREFIX}/bin/pasteurize-${PYVERSSUFFIX} || ${TRUE}
+       cd ${DESTDIR}${PREFIX}/bin && \
+               ${MV} futurize futurize-${PYVERSSUFFIX} && \
+               ${MV} pasteurize pasteurize-${PYVERSSUFFIX} || ${TRUE}
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-future/distinfo
diff -u pkgsrc/devel/py-future/distinfo:1.2 pkgsrc/devel/py-future/distinfo:1.3
--- pkgsrc/devel/py-future/distinfo:1.2 Tue Jan 17 17:14:14 2017
+++ pkgsrc/devel/py-future/distinfo     Wed Oct 31 10:54:39 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2017/01/17 17:14:14 fhajny Exp $
+$NetBSD: distinfo,v 1.3 2018/10/31 10:54:39 adam Exp $
 
-SHA1 (future-0.16.0.tar.gz) = 86ed881acef874d04576b9df03c29d25ad2cd25f
-RMD160 (future-0.16.0.tar.gz) = 69456fbc593b4ae123fafca1afb8d58062f44b97
-SHA512 (future-0.16.0.tar.gz) = 41c795cd1746a76df84de2da9fbc611fc6164322c1c712ec9e8a8626c21c2717cb4899ec150d95c5e0c037270e6bb71e099edd169609369aae619daea9df2e5f
-Size (future-0.16.0.tar.gz) = 824484 bytes
+SHA1 (future-0.17.1.tar.gz) = 7abd068d09c637f4fa5fb2df3d90cc9607523aee
+RMD160 (future-0.17.1.tar.gz) = b61bd5644d24d2045feed1d3aaa983d74a0315bd
+SHA512 (future-0.17.1.tar.gz) = 50094c44db81afbfd37ee25e1710ed11ecb2c2d64ad076fb62a2688dd36a9696ab26b0d7989bf1ecb10da251961a0ee6bb37c4dbd115f70384cd8c9a675d0b2d
+Size (future-0.17.1.tar.gz) = 829119 bytes



Home | Main Index | Thread Index | Old Index