From owner-svn-ports-head@FreeBSD.ORG Tue Dec 30 13:36:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F77AC38; Tue, 30 Dec 2014 13:36:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21C4C382A; Tue, 30 Dec 2014 13:36:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBUDaLTE040185; Tue, 30 Dec 2014 13:36:21 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBUDaKdn040184; Tue, 30 Dec 2014 13:36:20 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201412301336.sBUDaKdn040184@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Tue, 30 Dec 2014 13:36:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375833 - head/devel/py-twistedCore X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Dec 2014 13:36:21 -0000 Author: rm Date: Tue Dec 30 13:36:19 2014 New Revision: 375833 URL: https://svnweb.freebsd.org/changeset/ports/375833 QAT: https://qat.redports.org/buildarchive/r375833/ Log: devel/py-twistedCore: add dependency on security/py-service_identity - add dependency on security/py-service_identity. It fixes this warning when running deluge, for example: """ /usr/local/lib/python2.7/site-packages/twisted/internet/_sslverify.py:184: UserWarning: You do not have the service_identity module installed. Without the service_identity module and a recent enough pyOpenSSL tosupport it, Twisted can perform only rudimentary TLS client hostnameverification. Many valid certificate/hostname mappings may be rejected. verifyHostname, VerificationError = _selectVerifyImplementation() """ - define LICENSE_FILE - update comment - bump PORTREVISION because of dependency change Modified: head/devel/py-twistedCore/Makefile Modified: head/devel/py-twistedCore/Makefile ============================================================================== --- head/devel/py-twistedCore/Makefile Tue Dec 30 13:31:19 2014 (r375832) +++ head/devel/py-twistedCore/Makefile Tue Dec 30 13:36:19 2014 (r375833) @@ -3,6 +3,7 @@ PORTNAME= twistedCore PORTVERSION= 14.0.0 +PORTREVISION= 1 CATEGORIES= devel net python MASTER_SITES= http://twistedmatrix.com/Releases/Core/${PORTVERSION:R}/ \ LOCAL/sunpoet @@ -13,16 +14,18 @@ MAINTAINER= python@FreeBSD.org COMMENT= Asynchronous networking framework for Python - Core module LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.interface>=3.6.0:${PORTSDIR}/devel/py-zope.interface -RUN_DEPENDS:= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} \ + ${PYTHON_PKGNAMEPREFIX}service_identity>0:${PORTSDIR}/security/py-service_identity # - Note that Twisted ships with some graphical examples and clients that # require PyGNOME to run. These are not central to the funcitoning of -# Twisted, but the user should feel free to install x11-toolits/py-gnome +# Twisted, but the user should feel free to install x11-toolits/py-gnome2 # separately if desired. USES= python:2 tar:bzip2 -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils .include