diff options
author | Danilo G. Baio <dbaio@FreeBSD.org> | 2018-03-31 11:30:40 +0000 |
---|---|---|
committer | Danilo G. Baio <dbaio@FreeBSD.org> | 2018-03-31 11:30:40 +0000 |
commit | e0d122d1e3248784e3b35e9ab37d87c6418ef88c (patch) | |
tree | 5b37914abb03689dc6d334950716883fccac4f72 /x11/py-xdot/files/patch-setup.py | |
parent | Update to 2.2.0 (diff) |
x11/py-xdot: Update to 0.9
Fix dependencies.
Add a patch from upstream for don't check for graphviz python module,
it's not used by xdot.
Support for Python 3 only.
PR: 226792
Submitted by: Greg V <greg@unrelenting.technology>
Notes
Notes:
svn path=/head/; revision=466041
Diffstat (limited to 'x11/py-xdot/files/patch-setup.py')
-rw-r--r-- | x11/py-xdot/files/patch-setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11/py-xdot/files/patch-setup.py b/x11/py-xdot/files/patch-setup.py new file mode 100644 index 000000000000..51a3de54eac6 --- /dev/null +++ b/x11/py-xdot/files/patch-setup.py @@ -0,0 +1,12 @@ +# https://github.com/jrfonseca/xdot.py/commit/3f866766be44adbe3634de95cd0a031e8a863c91 + +--- setup.py.orig 2018-03-30 00:51:44 UTC ++++ setup.py +@@ -31,7 +31,6 @@ setup( + """, + license="LGPL", + +- install_requires=['graphviz'], + packages=['xdot', 'xdot/dot', 'xdot/ui'], + entry_points=dict(gui_scripts=['xdot=xdot.__main__:main']), + |