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/python/PyYAML | |
parent | bc921e787bed8a51a43725b78382e806800c44c1 (diff) | |
download | ydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz |
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'contrib/python/PyYAML')
-rw-r--r-- | contrib/python/PyYAML/py2/ya.make | 51 | ||||
-rw-r--r-- | contrib/python/PyYAML/py3/ya.make | 51 | ||||
-rw-r--r-- | contrib/python/PyYAML/ya.make | 24 |
3 files changed, 0 insertions, 126 deletions
diff --git a/contrib/python/PyYAML/py2/ya.make b/contrib/python/PyYAML/py2/ya.make deleted file mode 100644 index 1ec5c0c301..0000000000 --- a/contrib/python/PyYAML/py2/ya.make +++ /dev/null @@ -1,51 +0,0 @@ -PY2_LIBRARY() - -LICENSE(MIT) - -VERSION(5.4.1) - -OWNER(g:python-contrib borman g:testenv) - -PEERDIR( - contrib/libs/yaml -) - -ADDINCL( - contrib/python/PyYAML/py2/yaml -) - -PY_SRCS( - TOP_LEVEL - _yaml/__init__.py - yaml/__init__.py - yaml/composer.py - yaml/constructor.py - yaml/cyaml.py - yaml/dumper.py - yaml/emitter.py - yaml/error.py - yaml/events.py - yaml/loader.py - yaml/nodes.py - yaml/parser.py - yaml/reader.py - yaml/representer.py - yaml/resolver.py - yaml/scanner.py - yaml/serializer.py - yaml/tokens.py - CYTHON_C - yaml/_yaml.pyx -) - -RESOURCE_FILES( - PREFIX contrib/python/PyYAML/ - .dist-info/METADATA - .dist-info/top_level.txt -) - -NO_LINT() - -NO_COMPILER_WARNINGS() - -END() diff --git a/contrib/python/PyYAML/py3/ya.make b/contrib/python/PyYAML/py3/ya.make deleted file mode 100644 index 0401c04651..0000000000 --- a/contrib/python/PyYAML/py3/ya.make +++ /dev/null @@ -1,51 +0,0 @@ -PY3_LIBRARY() - -LICENSE(MIT) - -VERSION(5.4.1) - -OWNER(g:python-contrib borman g:testenv) - -PEERDIR( - contrib/libs/yaml -) - -ADDINCL( - contrib/python/PyYAML/py3/yaml -) - -PY_SRCS( - TOP_LEVEL - _yaml/__init__.py - yaml/__init__.py - yaml/composer.py - yaml/constructor.py - yaml/cyaml.py - yaml/dumper.py - yaml/emitter.py - yaml/error.py - yaml/events.py - yaml/loader.py - yaml/nodes.py - yaml/parser.py - yaml/reader.py - yaml/representer.py - yaml/resolver.py - yaml/scanner.py - yaml/serializer.py - yaml/tokens.py - CYTHON_C - yaml/_yaml.pyx -) - -RESOURCE_FILES( - PREFIX contrib/python/PyYAML/ - .dist-info/METADATA - .dist-info/top_level.txt -) - -NO_LINT() - -NO_COMPILER_WARNINGS() - -END() diff --git a/contrib/python/PyYAML/ya.make b/contrib/python/PyYAML/ya.make deleted file mode 100644 index a604fce51f..0000000000 --- a/contrib/python/PyYAML/ya.make +++ /dev/null @@ -1,24 +0,0 @@ -PY23_LIBRARY() - -LICENSE(MIT) - -OWNER(g:python-contrib) - -IF (PYTHON2) - PEERDIR( - contrib/python/PyYAML/py2 - ) -ELSE() - PEERDIR( - contrib/python/PyYAML/py3 - ) -ENDIF() - -NO_LINT() - -END() - -RECURSE( - py2 - py3 -) |