summaryrefslogtreecommitdiff
path: root/lang/pypy/files/patch-lib__pypy___curses__build.py
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2021-06-26 12:57:46 +0200
committerRene Ladan <rene@FreeBSD.org>2021-06-26 12:57:46 +0200
commit5e1a89f37052232dfbbf8d53d9812e170ef0a2c4 (patch)
treebfe7b4978f8a692ea805189d999d619660fb1be8 /lang/pypy/files/patch-lib__pypy___curses__build.py
parentMk/bsd.default-versions.mk: chase PostgreSQL cleanup (diff)
*/*: Remove expired ports:
2020-12-31 lang/pypy3: Uses Python 2.7 which is EOLed upstream 2020-12-31 lang/pypy: Uses Python 2.7 which is EOLed upstream 2021-06-23 databases/pypy-gdbm: Uses EOL Python 2.7 via lang/pypy 2021-06-23 databases/pypy-sqlite3: Uses EOL Python 2.7 via lang/pypy 2021-06-23 x11-toolkits/pypy-tkinter: Uses EOL Python 2.7 via lang/pypy
Diffstat (limited to 'lang/pypy/files/patch-lib__pypy___curses__build.py')
-rw-r--r--lang/pypy/files/patch-lib__pypy___curses__build.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/lang/pypy/files/patch-lib__pypy___curses__build.py b/lang/pypy/files/patch-lib__pypy___curses__build.py
deleted file mode 100644
index 069996c66503..000000000000
--- a/lang/pypy/files/patch-lib__pypy___curses__build.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- lib_pypy/_curses_build.py.orig 2020-03-25 12:13:59 UTC
-+++ lib_pypy/_curses_build.py
-@@ -31,6 +31,8 @@ def find_curses_dir_and_name():
- return base, 'ncursesw'
- if os.path.exists(os.path.join(base, 'include', 'ncurses')):
- return base, 'ncurses'
-+ if os.path.exists(os.path.join(base, 'lib', 'libncursesw.so')):
-+ return base, 'ncursesw'
- return '', None
-
- base, name = find_curses_dir_and_name()