aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/runtime_py3
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
commit094638589de6a6c9f91fad0005843fc1c1adc957 (patch)
tree7d55b9e950eb724da222548997547bf6710b1b58 /library/python/runtime_py3
parentbc921e787bed8a51a43725b78382e806800c44c1 (diff)
downloadydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/python/runtime_py3')
-rw-r--r--library/python/runtime_py3/main/ya.make26
-rw-r--r--library/python/runtime_py3/test/traceback/ya.make19
-rw-r--r--library/python/runtime_py3/test/ya.make40
-rw-r--r--library/python/runtime_py3/ya.make49
4 files changed, 0 insertions, 134 deletions
diff --git a/library/python/runtime_py3/main/ya.make b/library/python/runtime_py3/main/ya.make
deleted file mode 100644
index f308a93b28e..00000000000
--- a/library/python/runtime_py3/main/ya.make
+++ /dev/null
@@ -1,26 +0,0 @@
-LIBRARY()
-
-OWNER(
- pg
- orivej
-)
-
-PEERDIR(
- contrib/tools/python3/src
- library/cpp/resource
-)
-
-ADDINCL(
- contrib/tools/python3/src/Include
-)
-
-CFLAGS(
- -DPy_BUILD_CORE
-)
-
-SRCS(
- main.c
- get_py_main.cpp
-)
-
-END()
diff --git a/library/python/runtime_py3/test/traceback/ya.make b/library/python/runtime_py3/test/traceback/ya.make
deleted file mode 100644
index b61fe9550bb..00000000000
--- a/library/python/runtime_py3/test/traceback/ya.make
+++ /dev/null
@@ -1,19 +0,0 @@
-PY3_PROGRAM()
-
-OWNER(
- abodrov
- borman
-)
-
-PEERDIR(
- contrib/python/ipython
-)
-
-PY_SRCS(
- MAIN
- __main__.py=main
- crash.py
- mod/__init__.py
-)
-
-END()
diff --git a/library/python/runtime_py3/test/ya.make b/library/python/runtime_py3/test/ya.make
deleted file mode 100644
index 4ec3db74f5d..00000000000
--- a/library/python/runtime_py3/test/ya.make
+++ /dev/null
@@ -1,40 +0,0 @@
-PY3TEST()
-
-OWNER(
- abodrov
- borman
-)
-
-DEPENDS(library/python/runtime_py3/test/traceback)
-
-PEERDIR(
- contrib/python/parameterized
- contrib/python/PyYAML
-)
-
-PY_SRCS(
- TOP_LEVEL
- resources/__init__.py
- resources/submodule/__init__.py
-)
-
-TEST_SRCS(
- test_metadata.py
- test_resources.py
- test_traceback.py
- test_arcadia_source_finder.py
-)
-
-RESOURCE_FILES(
- PREFIX library/python/runtime_py3/test/
- .dist-info/METADATA
- .dist-info/RECORD
- .dist-info/entry_points.txt
- .dist-info/top_level.txt
- resources/foo.txt
- resources/submodule/bar.txt
-)
-
-END()
-
-RECURSE_FOR_TESTS(traceback)
diff --git a/library/python/runtime_py3/ya.make b/library/python/runtime_py3/ya.make
deleted file mode 100644
index fa5c11341ad..00000000000
--- a/library/python/runtime_py3/ya.make
+++ /dev/null
@@ -1,49 +0,0 @@
-PY3_LIBRARY()
-
-OWNER(
- borman
- orivej
- pg
-)
-
-NO_WSHADOW()
-
-PEERDIR(
- contrib/tools/python3/src
- contrib/tools/python3/lib/py
- library/cpp/resource
-)
-
-CFLAGS(-DCYTHON_REGISTER_ABCS=0)
-
-NO_PYTHON_INCLUDES()
-
-ENABLE(PYBUILD_NO_PYC)
-
-PY_SRCS(
- entry_points.py
- TOP_LEVEL
-
- CYTHON_DIRECTIVE
- language_level=3
-
- __res.pyx
- sitecustomize.pyx
-)
-
-IF (CYTHON_COVERAGE)
- # Let covarage support add all needed files to resources
-ELSE()
- RESOURCE_FILES(
- PREFIX ${MODDIR}/
- __res.pyx
- importer.pxi
- sitecustomize.pyx
- )
-ENDIF()
-
-END()
-
-RECURSE_FOR_TESTS(
- test
-)