diff options
author | Vladimir Smirnov <civil@gentoo.org> | 2018-06-29 20:28:55 +0200 |
---|---|---|
committer | Vladimir Smirnov <civil@gentoo.org> | 2018-06-29 20:28:55 +0200 |
commit | 7b94e297700033dc4fd0331280e5717b48cff9a2 (patch) | |
tree | b170b18436361288f0ede96f5d0628af364de60d /dev-db/clickhouse/files | |
parent | app-crypt/sbsigntool: drop libressl support (diff) | |
download | gentoo-7b94e297700033dc4fd0331280e5717b48cff9a2.tar.gz gentoo-7b94e297700033dc4fd0331280e5717b48cff9a2.tar.bz2 gentoo-7b94e297700033dc4fd0331280e5717b48cff9a2.zip |
dev-db/clickhouse: version bump to 1.1.54388
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-db/clickhouse/files')
-rw-r--r-- | dev-db/clickhouse/files/clickhouse-concatenate-python3.patch | 38 |
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: |