diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
commit | 094638589de6a6c9f91fad0005843fc1c1adc957 (patch) | |
tree | 7d55b9e950eb724da222548997547bf6710b1b58 /contrib/libs/python | |
parent | bc921e787bed8a51a43725b78382e806800c44c1 (diff) | |
download | ydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz |
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'contrib/libs/python')
-rw-r--r-- | contrib/libs/python/Include/ya.make | 29 | ||||
-rw-r--r-- | contrib/libs/python/ut/lib/ya.make | 17 | ||||
-rw-r--r-- | contrib/libs/python/ut/py2/ya.make | 9 | ||||
-rw-r--r-- | contrib/libs/python/ut/py3/ya.make | 10 | ||||
-rw-r--r-- | contrib/libs/python/ut/ya.make | 7 | ||||
-rw-r--r-- | contrib/libs/python/ya.make | 52 |
6 files changed, 0 insertions, 124 deletions
diff --git a/contrib/libs/python/Include/ya.make b/contrib/libs/python/Include/ya.make deleted file mode 100644 index e65263e6a0..0000000000 --- a/contrib/libs/python/Include/ya.make +++ /dev/null @@ -1,29 +0,0 @@ -PY23_LIBRARY() - -WITHOUT_LICENSE_TEXTS() - -LICENSE(YandexOpen) - -OWNER( - orivej - spreis - g:contrib -) - -NO_PYTHON_INCLUDES() - -ADDINCL(GLOBAL contrib/libs/python/Include) - -IF (PYTHON2) - CFLAGS(GLOBAL -DUSE_PYTHON2) - PEERDIR( - contrib/tools/python/lib - ) -ELSE() - CFLAGS(GLOBAL -DUSE_PYTHON3) - PEERDIR( - contrib/tools/python3/src - ) -ENDIF() - -END() diff --git a/contrib/libs/python/ut/lib/ya.make b/contrib/libs/python/ut/lib/ya.make deleted file mode 100644 index cfa0aaa612..0000000000 --- a/contrib/libs/python/ut/lib/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -OWNER(spreis) - -PY23_LIBRARY() - -WITHOUT_LICENSE_TEXTS() - -LICENSE(YandexOpen) - -PEERDIR( - library/cpp/testing/unittest -) - -SRCS( - test.cpp -) - -END() diff --git a/contrib/libs/python/ut/py2/ya.make b/contrib/libs/python/ut/py2/ya.make deleted file mode 100644 index 9c5c824761..0000000000 --- a/contrib/libs/python/ut/py2/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -OWNER(spreis) - -UNITTEST() -SRCS(use.cpp) - -PEERDIR( - contrib/libs/python/ut/lib -) -END() diff --git a/contrib/libs/python/ut/py3/ya.make b/contrib/libs/python/ut/py3/ya.make deleted file mode 100644 index df6d4fe767..0000000000 --- a/contrib/libs/python/ut/py3/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -OWNER(spreis) - -UNITTEST() -USE_PYTHON3() -SRCS(use.cpp) - -PEERDIR( - contrib/libs/python/ut/lib -) -END() diff --git a/contrib/libs/python/ut/ya.make b/contrib/libs/python/ut/ya.make deleted file mode 100644 index 4fea35153a..0000000000 --- a/contrib/libs/python/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -OWNER(spreis) - -RECURSE( - lib - py2 - py3 -)
\ No newline at end of file diff --git a/contrib/libs/python/ya.make b/contrib/libs/python/ya.make deleted file mode 100644 index 20a57f4b48..0000000000 --- a/contrib/libs/python/ya.make +++ /dev/null @@ -1,52 +0,0 @@ -OWNER( - spreis - orivej - g:contrib -) - -PY23_LIBRARY() - -LICENSE(YandexOpen) - -LICENSE_TEXTS(.yandex_meta/licenses.list.txt) - -NO_PYTHON_INCLUDES() - -IF (USE_ARCADIA_PYTHON) - PEERDIR( - contrib/libs/python/Include - library/python/symbols/module - library/python/symbols/libc - library/python/symbols/python - ) - IF (NOT OS_WINDOWS AND NOT OPENSOURCE) - PEERDIR( - library/python/symbols/uuid - ) - ENDIF() - IF (MODULE_TAG == "PY2") - PEERDIR( - contrib/tools/python/lib - library/python/runtime - ) - ELSE() - PEERDIR( - contrib/tools/python3/lib - library/python/runtime_py3 - ) - ENDIF() -ELSE() - IF (USE_SYSTEM_PYTHON) - PEERDIR( - build/platform/python - ) - ELSE() - CFLAGS(GLOBAL $PYTHON_INCLUDE) - ENDIF() -ENDIF() - -END() - -RECURSE( - Include -) |