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)
This commit is contained in:
Kubilay Kocak 2019-09-16 11:35:29 +00:00
parent 6fc6338880
commit 61bf55271c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2019Q3/; revision=512171

View File

@ -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>