Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Sep 2019 11:59:50 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r512100 - head/net-im/py-unmessage
Message-ID:  <201909151159.x8FBxoXs036684@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Sun Sep 15 11:59:49 2019
New Revision: 512100
URL: https://svnweb.freebsd.org/changeset/ports/512100

Log:
  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)
  MFH:		2019Q3

Modified:
  head/net-im/py-unmessage/Makefile

Modified: head/net-im/py-unmessage/Makefile
==============================================================================
--- head/net-im/py-unmessage/Makefile	Sun Sep 15 11:51:20 2019	(r512099)
+++ head/net-im/py-unmessage/Makefile	Sun Sep 15 11:59:49 2019	(r512100)
@@ -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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909151159.x8FBxoXs036684>