summaryrefslogtreecommitdiff
path: root/dev-db/clickhouse/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-06-30 08:49:38 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-06-30 08:49:38 +0100
commitb2be182d49eea46686b5cf2680d457df61e89dc4 (patch)
treec66442ced2011c5ca81c3114cc51041e314c6d33 /dev-db/clickhouse/files
parente23cdda4dbb0c83b9e682ab5e916085a35203da5 (diff)
gentoo resync : 30.06.2018
Diffstat (limited to 'dev-db/clickhouse/files')
-rw-r--r--dev-db/clickhouse/files/clickhouse-concatenate-python3.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-db/clickhouse/files/clickhouse-concatenate-python3.patch b/dev-db/clickhouse/files/clickhouse-concatenate-python3.patch
deleted file mode 100644
index 155ec758a74c..000000000000
--- a/dev-db/clickhouse/files/clickhouse-concatenate-python3.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- ClickHouse-1.1.54381-stable/docs/concatenate.py.bak 2018-05-20 20:30:45.958356001 +0200
-+++ ClickHouse-1.1.54381-stable/docs/concatenate.py 2018-05-20 20:45:29.442341203 +0200
-@@ -20,12 +20,12 @@
- import os
-
- if len(sys.argv) < 2:
-- print "Usage: concatenate.py language_dir"
-- print "Example: concatenate.py ru"
-+ print("Usage: concatenate.py language_dir")
-+ print("Example: concatenate.py ru")
- sys.exit(1)
-
- if not os.path.exists(sys.argv[1]):
-- print "Pass language_dir correctly. For example, 'ru'."
-+ print("Pass language_dir correctly. For example, 'ru'.")
- sys.exit(2)
-
- # Configuration
-@@ -43,8 +43,8 @@
- path = (l[l.index(':') + 1:]).strip(" '\n")
- files_to_concatenate.append(path)
-
--print str(len(files_to_concatenate)) + " files will be concatenated into single md-file.\nFiles:"
--print files_to_concatenate
-+print(str(len(files_to_concatenate)) + " files will be concatenated into single md-file.\nFiles:")
-+print(files_to_concatenate)
-
- # 2. Concatenate all of the files in the list
-
-@@ -68,7 +68,7 @@
- if sharp_pos > -1:
- return '[' + text + '](' + link[sharp_pos:] + ')'
- else:
-- print 'ERROR: Link [' + text + '](' + link + ') in file ' + path + ' has no anchor. Please provide it.'
-+ print('ERROR: Link [' + text + '](' + link + ') in file ' + path + ' has no anchor. Please provide it.')
- # return '['+text+'](#'+link.replace('/','-')+')'
-
- for l in file: