# HG changeset patch # User Goffi # Date 1468358983 -7200 # Node ID e1d482386395a71eefd1a7fab6c16ac848059904 # Parent 2f97e58b6fa17623263e75f68627a42eaae750f6 installation: updated urwid-satext minimal version to 0.6.1 + added service_identity which is needed by Twisted for proper TLS check diff -r 2f97e58b6fa1 -r e1d482386395 README4PACKAGERS --- a/README4PACKAGERS Tue Jun 28 18:32:57 2016 +0200 +++ b/README4PACKAGERS Tue Jul 12 23:29:43 2016 +0200 @@ -28,7 +28,7 @@ XDG zope.interface -Recommended: Mutagen, markdown, html2text, netifaces, miniupnp +Recommended: Mutagen, markdown, html2text, netifaces, miniupnp, service-identity -------------------------------- Dependencies for the Jp frontend @@ -43,7 +43,7 @@ ---------------------------------------- Urwid >= 1.2.0 -Urwid-satext >= 0.4.1 +Urwid-satext >= 0.6.1 GObject 2 (not imported directly in Primitivus, but needed for Urwid's main loop) DBus @@ -74,7 +74,7 @@ - Urwid SàText: Widgets for urwid library, designed for SàT but can be useful for other projects. Mandatory for Primitivus. -The following ones are not needed in a distribution, because they are in too early a stage of development, or not useful for general purpose: +The following ones are not needed in a distribution, because they are in a too early stage of development, or not useful for general purpose: - Bellaciao: a Qt frontend, at an early stage of development. diff -r 2f97e58b6fa1 -r e1d482386395 setup.py --- a/setup.py Tue Jun 28 18:32:57 2016 +0200 +++ b/setup.py Tue Jul 12 23:29:43 2016 +0200 @@ -304,6 +304,6 @@ ], scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', ], zip_safe=False, - install_requires=['twisted >= 15.2.0', 'wokkel >= 0.7.1', 'progressbar', 'urwid >= 1.2.0', 'urwid-satext >= 0.4.0', 'mutagen', 'pillow', 'lxml >= 3.1.0', 'pyxdg', 'markdown', 'html2text', 'pycrypto >= 2.6.1', 'python-potr', 'PyOpenSSL'], + install_requires=['twisted >= 15.2.0', 'wokkel >= 0.7.1', 'progressbar', 'urwid >= 1.2.0', 'urwid-satext >= 0.6.1', 'mutagen', 'pillow', 'lxml >= 3.1.0', 'pyxdg', 'markdown', 'html2text', 'pycrypto >= 2.6.1', 'python-potr', 'PyOpenSSL', 'service_identity'], cmdclass={'install': CustomInstall}, )