blob: 6410ddc3f275831d85ba0f873bf197c820dd9ae4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/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:-3.4.5-rc2}
BASE_SRC_URI="http://download.documentfoundation.org/libreoffice/testing/${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/-/_}
if [[ ${tb} =~ helppack ]]; then
help_packs+=( ${pack/en-US/en} )
else
lang_packs+=( ${pack/en-US/en} )
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[@]}\""
|