pkgsrc/security/py-service_identity/Makefile
wiz 8b82fed9dc Update py-service_identity to 16.0.0.
16.0.0 (2016-02-18)
-------------------

Backward-incompatible changes:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

- Python 3.3 and 2.6 aren't supported anymore.
  They may work by chance but any effort to keep them working has ceased.

  The last Python 2.6 release was on October 29, 2013 and isn't supported by the CPython core team anymore.
  Major Python packages like Django and Twisted dropped Python 2.6 a while ago already.

  Python 3.3 never had a significant user base and wasn't part of any distribution's LTS release.
- pyOpenSSL versions older than 0.14 are not tested anymore.
  They don't even build with recent OpenSSL versions.

Changes:
^^^^^^^^

- Officially support Python 3.5.
- ``service_identity.SubjectAltNameWarning`` is now raised if the server certicate lacks a proper ``SubjectAltName``.
  [`#9 <https://github.com/pyca/service_identity/issues/9>`_]
- Add a ``__str__`` method to ``VerificationError``.
- Port from ``characteristic`` to its spiritual successor `attrs <https://attrs.readthedocs.org/>`_.
2016-02-21 10:47:20 +00:00

21 lines
775 B
Makefile

# $NetBSD: Makefile,v 1.2 2016/02/21 10:47:20 wiz Exp $
DISTNAME= service_identity-16.0.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/service_identity/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://pypi.python.org/pypi/service_identity
COMMENT= Service identity verification for pyOpenSSL
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.12:../../security/py-OpenSSL
DEPENDS+= ${PYPKGPREFIX}-asn1-modules-[0-9]*:../../security/py-asn1-modules
DEPENDS+= ${PYPKGPREFIX}-characteristic>=14.0.0:../../devel/py-characteristic
DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../../www/py-idna
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not supported as of 16.0.0
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"