pkgsrc/devel/py-more-itertools/Makefile
adam 2e8769ee14 py-more-itertools: updated 5.0.0
5.0.0
* New itertools:
    * :func:split_into
    * :func:unzip
    * :func:substrings

* Changes to existing itertools:
    * :func:ilen was optimized a bit
    * :func:first_true now returns None by default. This is the reason for the major version bump - see below.

* Other changes:
   * Some code for old Python versions was removed
   * Some documentation mistakes were corrected
   * Tests now run properly on 32-bit versions of Python
   * Newer versions of CPython and PyPy are now tested against
2019-01-22 09:45:22 +00:00

18 lines
513 B
Makefile

# $NetBSD: Makefile,v 1.10 2019/01/22 09:45:22 adam Exp $
DISTNAME= more-itertools-5.0.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=m/more-itertools/}
MAINTAINER= imil@NetBSD.org
HOMEPAGE= https://github.com/erikrose/more-itertools
COMMENT= More routines for operating on iterables, beyond itertools
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-six>=1.0.0:../../lang/py-six
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"