Index: head/devel/py-wheel/Makefile =================================================================== --- head/devel/py-wheel/Makefile (revision 414037) +++ head/devel/py-wheel/Makefile (revision 414038) @@ -1,29 +1,30 @@ # Created by: Nicola Vitale # $FreeBSD$ PORTNAME= wheel -PORTVERSION= 0.24.0 +PORTVERSION= 0.29.0 PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= nivit@FreeBSD.org COMMENT= Built-package format for Python LICENSE= MIT OPTIONS_DEFINE= PIP SIGNATURE PIP_DESC= Use pip to install wheels PIP_RUN_DEPENDS= pip:devel/py-pip SIGNATURE_DESC= Enable digital signature of wheels SIGNATURE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dirspec>=13.05:devel/py-dirspec \ + ${PYTHON_PKGNAMEPREFIX}ed25519ll>=0.6_1:security/py-ed25519ll \ ${PYTHON_PKGNAMEPREFIX}keyring>=1.3:security/py-keyring \ ${PYTHON_PKGNAMEPREFIX}xdg>=0.25:devel/py-xdg USES= python USE_PYTHON= distutils autoplist .include Index: head/devel/py-wheel/distinfo =================================================================== --- head/devel/py-wheel/distinfo (revision 414037) +++ head/devel/py-wheel/distinfo (revision 414038) @@ -1,2 +1,2 @@ -SHA256 (wheel-0.24.0.tar.gz) = ef832abfedea7ed86b6eae7400128f88053a1da81a37c00613b1279544d585aa -SIZE (wheel-0.24.0.tar.gz) = 50597 +SHA256 (wheel-0.29.0.tar.gz) = 1ebb8ad7e26b448e9caa4773d2357849bf80ff9e313964bcaf79cbf0201a1648 +SIZE (wheel-0.29.0.tar.gz) = 54143 Index: head/devel/py-wheel/pkg-descr =================================================================== --- head/devel/py-wheel/pkg-descr (revision 414037) +++ head/devel/py-wheel/pkg-descr (revision 414038) @@ -1,15 +1,15 @@ A built-package format for Python. A wheel is a ZIP-format archive with a specially formatted filename and the .whl extension. It is designed to contain all the files for a PEP 376 compatible install in a way that is very close to the on-disk format. Many packages will be properly installed with only the "Unpack" step (simply extracting the file onto sys.path), and the unpacked archive preserves enough information to "Spread" (copy data and scripts to their final locations) at any later time. The wheel project provides a bdist_wheel command for setuptools (requires setuptools >= 0.8.0). Wheel files can be installed with a newer pip from https://github.com/pypa/pip or with wheel's own command line utility. -WWW: http://bitbucket.org/dholth/wheel/ +WWW: https://bitbucket.org/pypa/wheel