summaryrefslogtreecommitdiff
path: root/app-office/libreoffice-l10n/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-office/libreoffice-l10n/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-office/libreoffice-l10n/files')
-rw-r--r--app-office/libreoffice-l10n/files/lo_gen_langs.sh65
1 files changed, 0 insertions, 65 deletions
diff --git a/app-office/libreoffice-l10n/files/lo_gen_langs.sh b/app-office/libreoffice-l10n/files/lo_gen_langs.sh
deleted file mode 100644
index baafa56cfe2b..000000000000
--- a/app-office/libreoffice-l10n/files/lo_gen_langs.sh
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/bin/bash
-# Licensed under the GNU General Public License, v2
-
-#
-# Author: Ralph Sennhauser
-#
-# Find l10n packs for libreoffice and format it for use in ebuilds.
-#
-
-VERSION=${1:-4.1.5}
-BASE_SRC_URI="http://download.documentfoundation.org/libreoffice/stable/${VERSION}/rpm/x86"
-
-# needs lxml
-print_available_tarballs() {
- python << EOL
-import sys, urllib
-from xml.dom.minidom import parseString
-from BeautifulSoup import BeautifulSoup
-
-opener = urllib.urlopen("${BASE_SRC_URI}")
-html = opener.read()
-opener.close()
-# broken html, try to sanitize
-html = BeautifulSoup(html).prettify()
-
-dom = parseString(html)
-for elem in dom.getElementsByTagName('a'):
- attr = elem.getAttribute("href")
- if attr.endswith('tar.gz'):
- if "install" in attr: continue
- print(attr)
-EOL
-}
-
-tarballs=( $(print_available_tarballs) )
-help_packs=()
-lang_packs=()
-lang_packs_reduced=()
-
-for tb in "${tarballs[@]}"; do
- pack=${tb%.tar.gz}
- pack=${pack##*rpm_}
- pack=${pack/en-US/en}
- pack=${pack/-/_}
- pack=${pack/en-US/en}
- if [[ ${tb} =~ helppack ]]; then
- pack=${pack/helppack_/}
- help_packs+=( ${pack} )
- elif [[ ${tb} =~ langpack ]]; then
- pack=${pack/langpack_/}
- lang_packs+=( ${pack} )
- fi
-done
-
-for lpack in "${lang_packs[@]}"; do
- for hpack in "${help_packs[@]}"; do
- if [[ ${hpack} == ${lpack} ]]; then
- continue 2
- fi
- done
- lang_packs_reduced+=( ${lpack} )
-done
-
-echo "LANGUAGES_HELP=\" ${help_packs[@]} \""
-echo "LANGUAGES=\"\${LANGUAGES_HELP}${lang_packs_reduced[@]} \""