svn commit: r543748 - head/devel/py-curtsies/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Thu Jul 30 09:50:47 UTC 2020


Author: sunpoet
Date: Thu Jul 30 09:50:43 2020
New Revision: 543748
URL: https://svnweb.freebsd.org/changeset/ports/543748

Log:
  Fix build with Python 2.7

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

Added: head/devel/py-curtsies/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-curtsies/files/patch-setup.py	Thu Jul 30 09:50:43 2020	(r543748)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2020-07-15 20:17:08 UTC
++++ setup.py
+@@ -16,7 +16,7 @@ setup(
+     name="curtsies",
+     version=version(),
+     description="Curses-like terminal wrapper, with colored strings!",
+-    long_description=open("readme.md", encoding="utf-8").read(),
++    long_description=io.open("readme.md", encoding="utf-8").read(),
+     long_description_content_type="text/markdown",
+     url="https://github.com/bpython/curtsies",
+     author="Thomas Ballinger",


More information about the svn-ports-all mailing list