svn commit: r458956 - head/devel/py-eventlib/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jan 14 07:07:16 UTC 2018


Author: sunpoet
Date: Sun Jan 14 07:07:13 2018
New Revision: 458956
URL: https://svnweb.freebsd.org/changeset/ports/458956

Log:
  Fix build with Python 3

Added:
  head/devel/py-eventlib/files/
  head/devel/py-eventlib/files/patch-setup.py   (contents, props changed)

Added: head/devel/py-eventlib/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-eventlib/files/patch-setup.py	Sun Jan 14 07:07:13 2018	(r458956)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2013-10-02 01:17:23 UTC
++++ setup.py
+@@ -66,7 +66,7 @@ if __name__ == '__main__':
+         author=u'Lincoln de Sousa',
+         author_email=u'lincoln at yipit.com',
+         url='https://github.com/Yipit/eventlib',
+-        packages=filter(lambda n: not n.startswith('tests'), find_packages()),
++        packages=list(filter(lambda n: not n.startswith('tests'), find_packages())),
+         install_requires=install_requires,
+         dependency_links=dependency_links,
+         entry_points={


More information about the svn-ports-head mailing list