aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pexpect/ya.make
diff options
context:
space:
mode:
authorshadchin <shadchin@yandex-team.com>2023-10-10 07:21:01 +0300
committershadchin <shadchin@yandex-team.com>2023-10-10 07:38:40 +0300
commit25c03424b1ed6907903a2289fa3e4aceb67fd8a2 (patch)
treef43d130edc5095c48f840e74d76be7da998ebb44 /contrib/python/pexpect/ya.make
parent5dd2101e2bd35b691c97ef56ba91c3b0b548c49f (diff)
downloadydb-25c03424b1ed6907903a2289fa3e4aceb67fd8a2.tar.gz
Split pexpect on py2/py3
Diffstat (limited to 'contrib/python/pexpect/ya.make')
-rw-r--r--contrib/python/pexpect/ya.make49
1 files changed, 10 insertions, 39 deletions
diff --git a/contrib/python/pexpect/ya.make b/contrib/python/pexpect/ya.make
index 818e4cc46c..ee4158641e 100644
--- a/contrib/python/pexpect/ya.make
+++ b/contrib/python/pexpect/ya.make
@@ -1,47 +1,18 @@
-# Generated by devtools/yamaker (pypi).
-
PY23_LIBRARY()
-VERSION(4.8.0)
-
-LICENSE(ISC)
+LICENSE(Service-Py23-Proxy)
-PEERDIR(
- contrib/python/ptyprocess
-)
+IF (PYTHON2)
+ PEERDIR(contrib/python/pexpect/py2)
+ELSE()
+ PEERDIR(contrib/python/pexpect/py3)
+ENDIF()
NO_LINT()
-PY_SRCS(
- TOP_LEVEL
- pexpect/ANSI.py
- pexpect/FSM.py
- pexpect/__init__.py
- pexpect/exceptions.py
- pexpect/expect.py
- pexpect/fdpexpect.py
- pexpect/popen_spawn.py
- pexpect/pty_spawn.py
- pexpect/pxssh.py
- pexpect/replwrap.py
- pexpect/run.py
- pexpect/screen.py
- pexpect/spawnbase.py
- pexpect/utils.py
-)
-
-IF (PYTHON3)
- PY_SRCS(
- TOP_LEVEL
- pexpect/_async.py
- )
-ENDIF()
+END()
-RESOURCE_FILES(
- PREFIX contrib/python/pexpect/
- .dist-info/METADATA
- .dist-info/top_level.txt
- pexpect/bashrc.sh
+RECURSE(
+ py2
+ py3
)
-
-END()