aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/python
diff options
context:
space:
mode:
authorheretic <heretic@yandex-team.ru>2022-02-10 16:45:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:46 +0300
commit81eddc8c0b55990194e112b02d127b87d54164a9 (patch)
tree9142afc54d335ea52910662635b898e79e192e49 /contrib/libs/python
parent397cbe258b9e064f49c4ca575279f02f39fef76e (diff)
downloadydb-81eddc8c0b55990194e112b02d127b87d54164a9.tar.gz
Restoring authorship annotation for <heretic@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/python')
-rw-r--r--contrib/libs/python/.yandex_meta/devtools.copyrights.report2
-rw-r--r--contrib/libs/python/.yandex_meta/devtools.licenses.custom.spdx.txt2
-rw-r--r--contrib/libs/python/.yandex_meta/devtools.licenses.report60
-rw-r--r--contrib/libs/python/Include/ya.make26
-rw-r--r--contrib/libs/python/ut/lib/ya.make10
-rw-r--r--contrib/libs/python/ya.make22
6 files changed, 61 insertions, 61 deletions
diff --git a/contrib/libs/python/.yandex_meta/devtools.copyrights.report b/contrib/libs/python/.yandex_meta/devtools.copyrights.report
index 8d1c8b69c3..8b13789179 100644
--- a/contrib/libs/python/.yandex_meta/devtools.copyrights.report
+++ b/contrib/libs/python/.yandex_meta/devtools.copyrights.report
@@ -1 +1 @@
-
+
diff --git a/contrib/libs/python/.yandex_meta/devtools.licenses.custom.spdx.txt b/contrib/libs/python/.yandex_meta/devtools.licenses.custom.spdx.txt
index e2d093dd32..279a5f0748 100644
--- a/contrib/libs/python/.yandex_meta/devtools.licenses.custom.spdx.txt
+++ b/contrib/libs/python/.yandex_meta/devtools.licenses.custom.spdx.txt
@@ -1 +1 @@
-YandexOpen
+YandexOpen
diff --git a/contrib/libs/python/.yandex_meta/devtools.licenses.report b/contrib/libs/python/.yandex_meta/devtools.licenses.report
index f1781c984f..cb930522cc 100644
--- a/contrib/libs/python/.yandex_meta/devtools.licenses.report
+++ b/contrib/libs/python/.yandex_meta/devtools.licenses.report
@@ -1,30 +1,30 @@
-# File format ($ symbol means the beginning of a line):
-#
-# $ # this message
-# $ # =======================
-# $ # comments (all commentaries should starts with some number of spaces and # symbol)
-# ${action} {license spdx} {license text hash}
-# $BELONGS ./ya/make/file/relative/path/1/ya.make ./ya/make/2/ya.make
-# ${all_file_action} filename
-# $ # user commentaries (many lines)
-# $ generated description - files with this license, license text... (some number of lines that starts with some number of spaces, do not modify)
-# ${action} {license spdx} {license text hash}
-# $BELONGS ./ya/make/file/relative/path/3/ya.make
-# ${all_file_action} filename
-# $ # user commentaries
-# $ generated description
-# $ ...
-#
-# You can modify action, all_file_action and add commentaries
-# Available actions:
-# keep - keep license in contrib and use in credits
-# skip - skip license
-# remove - remove all files with this license
-# rename - save license text/links into licenses texts file, but not store SPDX into LINCENSE macro. You should store correct license id into devtools.license.spdx.txt file
-#
-# {all file action} records will be generated when license text contains filename that exists on filesystem (in contrib directory)
-# We suppose that that files can contain some license info
-# Available all file actions:
-# FILE_IGNORE - ignore file (do nothing)
-# FILE_INCLUDE - include all file data into licenses text file
-# =======================
+# File format ($ symbol means the beginning of a line):
+#
+# $ # this message
+# $ # =======================
+# $ # comments (all commentaries should starts with some number of spaces and # symbol)
+# ${action} {license spdx} {license text hash}
+# $BELONGS ./ya/make/file/relative/path/1/ya.make ./ya/make/2/ya.make
+# ${all_file_action} filename
+# $ # user commentaries (many lines)
+# $ generated description - files with this license, license text... (some number of lines that starts with some number of spaces, do not modify)
+# ${action} {license spdx} {license text hash}
+# $BELONGS ./ya/make/file/relative/path/3/ya.make
+# ${all_file_action} filename
+# $ # user commentaries
+# $ generated description
+# $ ...
+#
+# You can modify action, all_file_action and add commentaries
+# Available actions:
+# keep - keep license in contrib and use in credits
+# skip - skip license
+# remove - remove all files with this license
+# rename - save license text/links into licenses texts file, but not store SPDX into LINCENSE macro. You should store correct license id into devtools.license.spdx.txt file
+#
+# {all file action} records will be generated when license text contains filename that exists on filesystem (in contrib directory)
+# We suppose that that files can contain some license info
+# Available all file actions:
+# FILE_IGNORE - ignore file (do nothing)
+# FILE_INCLUDE - include all file data into licenses text file
+# =======================
diff --git a/contrib/libs/python/Include/ya.make b/contrib/libs/python/Include/ya.make
index 1206cb0abe..e65263e6a0 100644
--- a/contrib/libs/python/Include/ya.make
+++ b/contrib/libs/python/Include/ya.make
@@ -1,14 +1,14 @@
PY23_LIBRARY()
-WITHOUT_LICENSE_TEXTS()
-
+WITHOUT_LICENSE_TEXTS()
+
LICENSE(YandexOpen)
-OWNER(
- orivej
- spreis
- g:contrib
-)
+OWNER(
+ orivej
+ spreis
+ g:contrib
+)
NO_PYTHON_INCLUDES()
@@ -16,14 +16,14 @@ ADDINCL(GLOBAL contrib/libs/python/Include)
IF (PYTHON2)
CFLAGS(GLOBAL -DUSE_PYTHON2)
- PEERDIR(
- contrib/tools/python/lib
- )
+ PEERDIR(
+ contrib/tools/python/lib
+ )
ELSE()
CFLAGS(GLOBAL -DUSE_PYTHON3)
- PEERDIR(
- contrib/tools/python3/src
- )
+ 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
index 6806bd079e..cfa0aaa612 100644
--- a/contrib/libs/python/ut/lib/ya.make
+++ b/contrib/libs/python/ut/lib/ya.make
@@ -2,16 +2,16 @@ OWNER(spreis)
PY23_LIBRARY()
-WITHOUT_LICENSE_TEXTS()
-
+WITHOUT_LICENSE_TEXTS()
+
LICENSE(YandexOpen)
PEERDIR(
library/cpp/testing/unittest
)
-SRCS(
- test.cpp
-)
+SRCS(
+ test.cpp
+)
END()
diff --git a/contrib/libs/python/ya.make b/contrib/libs/python/ya.make
index 168c717689..20a57f4b48 100644
--- a/contrib/libs/python/ya.make
+++ b/contrib/libs/python/ya.make
@@ -1,15 +1,15 @@
-OWNER(
- spreis
- orivej
- g:contrib
-)
+OWNER(
+ spreis
+ orivej
+ g:contrib
+)
PY23_LIBRARY()
LICENSE(YandexOpen)
-LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
+
NO_PYTHON_INCLUDES()
IF (USE_ARCADIA_PYTHON)
@@ -37,14 +37,14 @@ IF (USE_ARCADIA_PYTHON)
ENDIF()
ELSE()
IF (USE_SYSTEM_PYTHON)
- PEERDIR(
- build/platform/python
- )
+ PEERDIR(
+ build/platform/python
+ )
ELSE()
CFLAGS(GLOBAL $PYTHON_INCLUDE)
ENDIF()
ENDIF()
-
+
END()
RECURSE(