svn commit: r512171 - branches/2019Q3/net-im/py-unmessage

Kubilay Kocak koobs at FreeBSD.org
Mon Sep 16 11:35:30 UTC 2019


Author: koobs
Date: Mon Sep 16 11:35:29 2019
New Revision: 512171
URL: https://svnweb.freebsd.org/changeset/ports/512171

Log:
  MFH: r512100
  
  net-im/py-unmessage: Add missing dependencies
  
  unmessage currently fails at runtime with the following errors:
  
  1) pkg_resources.DistributionNotFound: The 'service_identity' distribution was not found and is required by Twisted
  
  unmessage depends on Twisted *and* its "tls" optional (extras_require)
  dependencies, requiring unmessage to depend directly on them:
  
    - openssl
    - service_identity
    - idna
  
  2) ImportError: No module named _sqlite3 (fixed by ports r512099)
  
  3) File "/usr/local/lib/python2.7/site-packages/unmessage/gui.py", line 5, in <module>
       import Tkinter as Tk
  
  Add dependency on x11-toolkits/py-tkinter accordingly
  
  While I'm here:
  
    Pet portlint: extra item in USES/USE_x section: "NO_ARCH".
  
  [1] setup.py: install_requires: 'Twisted[tls]>=16.6.0',
  
  Reported by:	DanDare (via IRC)
  Approved by:	portmgr (blanket(s): missing dependencies, ports compliance)
  
  Approved by:	ports-secteam (blanket(s): dependency fix, run-time bugfix)

Modified:
  branches/2019Q3/net-im/py-unmessage/Makefile
Directory Properties:
  branches/2019Q3/   (props changed)

Modified: branches/2019Q3/net-im/py-unmessage/Makefile
==============================================================================
--- branches/2019Q3/net-im/py-unmessage/Makefile	Mon Sep 16 11:33:47 2019	(r512170)
+++ branches/2019Q3/net-im/py-unmessage/Makefile	Mon Sep 16 11:35:29 2019	(r512171)
@@ -3,6 +3,7 @@
 
 PORTNAME=	unmessage
 PORTVERSION=	0.2.0
+PORTREVISION=	1
 CATEGORIES=	net-im net-p2p python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -20,10 +21,16 @@ RUN_DEPENDS=	tor:security/tor \
 		${PYTHON_PKGNAMEPREFIX}pynacl>=1.0.1:security/py-pynacl@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pyperclip>=1.5.27:devel/py-pyperclip@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}twisted>=16.6.0:devel/py-twisted@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}txtorcon>=0.19.0:security/py-txtorcon@${PY_FLAVOR}
+		${PYTHON_PKGNAMEPREFIX}txtorcon>=0.19.0:security/py-txtorcon@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR}
+# Twisted[tls]
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}openssl>=16.0.0:security/py-openssl@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}service_identity>0:security/py-service_identity@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}idna>=0.6:dns/py-idna@${PY_FLAVOR}
 
 USES=		python:2.7
 USE_PYTHON=	distutils autoplist
+
 NO_ARCH=	yes
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list