Skip to content

Commit 8bc05b1

Browse files
committed
Releases (tools, -nno, -nob, -nno-nob)
1 parent 2c09a68 commit 8bc05b1

File tree

665 files changed

+3600
-3285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

665 files changed

+3600
-3285
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
*~
2+
*.token
3+
*.log
24
.vstags
35
build.log
46
/nightly
57
/release
8+
zulip.sh

Helpers.pm

+10-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,16 @@ use utf8;
77
use Carp::Always;
88
use autodie qw(:all);
99
use Exporter qw(import);
10-
our @EXPORT = qw( trim ltrim_lines file_get_contents file_put_contents replace_in_file run_fail read_control load_packages );
10+
our @EXPORT = qw( format_dur trim ltrim_lines file_get_contents file_put_contents replace_in_file run_fail read_control load_packages );
11+
12+
sub format_dur {
13+
my ($d) = @_;
14+
my $rv = '';
15+
if ($d >= 3600) { $rv .= sprintf('%02uh', int($d/3600)); $d -= int($d/3600)*3600; }
16+
if ($d >= 60) { $rv .= sprintf('%02um', int($d/60)); $d -= int($d/60)*60; }
17+
$rv .= sprintf('%02us', $d);
18+
return $rv;
19+
}
1120

1221
sub trim {
1322
my ($s) = @_;

data/apertium-shared/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
7+
Build-Depends: apertium-dev (>= 3.9.12),
88
debhelper (>= 12),
9-
lttoolbox-dev (>= 3.7.6),
9+
lttoolbox-dev (>= 3.8.0),
1010
pkg-config,
11-
Standards-Version: 4.7.0
11+
Standards-Version: 4.7.2
1212
Homepage: https://giellatekno.uit.no/
1313
Vcs-Git: https://salsa.debian.org/science-team/apertium-shared.git
1414
Vcs-Browser: https://salsa.debian.org/science-team/apertium-shared
1515
Rules-Requires-Root: no
1616

1717
Package: apertium-shared
1818
Architecture: all
19-
Depends: apertium (>= 3.8.3),
20-
lttoolbox (>= 3.7.6),
19+
Depends: apertium (>= 3.9.12),
20+
lttoolbox (>= 3.8.0),
2121
${misc:Depends},
2222
${shlibs:Depends}
2323
Description: Shared files for building Apertium languages and pairs

data/giella-shared-eng/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Maintainer: Debian Science Maintainers <debian-science-maintainers@alioth-lists.
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
77
Build-Depends: debhelper (>= 12)
8-
Standards-Version: 4.7.0
8+
Standards-Version: 4.7.2
99
Homepage: https://giellatekno.uit.no/
1010
Vcs-Git: https://salsa.debian.org/science-team/giella-shared-eng.git
1111
Vcs-Browser: https://salsa.debian.org/science-team/giella-shared-eng

data/giella-shared-mul/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Maintainer: Debian Science Maintainers <debian-science-maintainers@alioth-lists.
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
77
Build-Depends: debhelper (>= 12)
8-
Standards-Version: 4.7.0
8+
Standards-Version: 4.7.2
99
Homepage: https://giellatekno.uit.no/
1010
Vcs-Git: https://salsa.debian.org/science-team/giella-shared-mul.git
1111
Vcs-Browser: https://salsa.debian.org/science-team/giella-shared-mul

data/giella-shared-smi/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Maintainer: Debian Science Maintainers <debian-science-maintainers@alioth-lists.
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
77
Build-Depends: debhelper (>= 12)
8-
Standards-Version: 4.7.0
8+
Standards-Version: 4.7.2
99
Homepage: https://giellatekno.uit.no/
1010
Vcs-Git: https://salsa.debian.org/science-team/giella-shared-smi.git
1111
Vcs-Browser: https://salsa.debian.org/science-team/giella-shared-smi

data/giella-shared-urj-cyrl/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Maintainer: Debian Science Maintainers <debian-science-maintainers@alioth-lists.
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
77
Build-Depends: debhelper (>= 12)
8-
Standards-Version: 4.7.0
8+
Standards-Version: 4.7.2
99
Homepage: https://giellatekno.uit.no/
1010
Vcs-Git: https://salsa.debian.org/science-team/giella-shared-urj-cyrl.git
1111
Vcs-Browser: https://salsa.debian.org/science-team/giella-shared-urj-cyrl

depends.pl

+11-11
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ BEGIN
3434
$deps{'hfst (>= 3.16.0)'} = 1;
3535
}
3636
elsif (/\blexd\b/) {
37-
$build{'lexd (>= 1.1.0)'} = 1;
37+
$build{'lexd (>= 1.3.5)'} = 1;
3838
}
3939
elsif (/\blibxml-2.0\b/) {
4040
$build{'libxml2-dev'} = 1;
@@ -44,37 +44,37 @@ BEGIN
4444
$build{'zlib1g-dev'} = 1;
4545
}
4646
elsif (/\bcg-comp\b/ || /\bcg-proc\b/ || /\bcg-conv\b/ || /\bvislcg3\b/ || /\bcg3\b/ || /\bcg3-autobin\b/) {
47-
$build{'cg3-dev (>= 1.3.9)'} = 1;
48-
$deps{'cg3 (>= 1.3.9)'} = 1;
47+
$build{'cg3-dev (>= 1.5.1)'} = 1;
48+
$deps{'cg3 (>= 1.5.1)'} = 1;
4949
}
5050
elsif (/\blrx-comp\b/ || /\blrx-proc\b/ || /\bapertium-lex-tools\b/) {
51-
$build{'apertium-lex-tools-dev (>= 0.4.2)'} = 1;
52-
$deps{'apertium-lex-tools (>= 0.4.2)'} = 1;
51+
$build{'apertium-lex-tools-dev (>= 0.5.0)'} = 1;
52+
$deps{'apertium-lex-tools (>= 0.5.0)'} = 1;
5353
}
5454
elsif (/\blsx-comp\b/ || /\blsx-proc\b/ || /\bapertium-separable\b/) {
55-
$build{'apertium-separable (>= 0.6.1)'} = 1;
56-
$deps{'apertium-separable (>= 0.6.1)'} = 1;
55+
$build{'apertium-separable (>= 0.7.1)'} = 1;
56+
$deps{'apertium-separable (>= 0.7.1)'} = 1;
5757
}
5858
elsif (/\bapertium-anaphora\b/) {
5959
$build{'apertium-anaphora (>= 1.1.1)'} = 1;
6060
$deps{'apertium-anaphora (>= 1.1.1)'} = 1;
6161
}
6262
elsif (/\bapertium-recursive\b/) {
63-
$build{'apertium-recursive (>= 1.1.2)'} = 1;
64-
$deps{'apertium-recursive (>= 1.1.2)'} = 1;
63+
$build{'apertium-recursive (>= 1.2.1)'} = 1;
64+
$deps{'apertium-recursive (>= 1.2.1)'} = 1;
6565
}
6666
elsif (/\bAP_CHECK_LING.*?(apertium-\w+)/ || /\bAP_CHECK_LING.*?(giella-\w+)/) {
6767
$build{$1} = 1;
6868
}
6969
}
7070

71-
print "Build-Depends: debhelper (>= 12), apertium-dev (>= 3.8.3), gawk, pkg-config";
71+
print "Build-Depends: debhelper (>= 12), apertium-dev (>= 3.9.12), gawk, pkg-config";
7272
foreach my $k (sort(keys(%build))) {
7373
print ", $k";
7474
}
7575
print "\n";
7676

77-
print "Depends: apertium (>= 3.8.3)";
77+
print "Depends: apertium (>= 3.9.12)";
7878
foreach my $k (sort(keys(%deps))) {
7979
print ", $k";
8080
}

discover.php

+7
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
}';
2525
$p = '';
2626
$t = getenv('GITHUB_OAUTH_TOKEN');
27+
if (empty($t)) {
28+
$t = file_get_contents('github.token');
29+
}
30+
if (empty($t)) {
31+
echo "No GITHUB_OAUTH_TOKEN provided!\n";
32+
exit(1);
33+
}
2734

2835
////////// GIELLATEKNO LANGUAGES
2936

languages/apertium-ady/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
8-
cg3-dev (>= 1.3.9),
7+
Build-Depends: apertium-dev (>= 3.9.12),
8+
cg3-dev (>= 1.5.1),
99
debhelper (>= 12),
1010
gawk,
1111
hfst (>= 3.16.0),
1212
hfst-ospell-dev (>= 0.5.3),
1313
pkg-config
14-
Standards-Version: 4.7.0
14+
Standards-Version: 4.7.2
1515
Homepage: https://apertium.org/
1616
Vcs-Git: https://salsa.debian.org/science-team/apertium-ady.git
1717
Vcs-Browser: https://salsa.debian.org/science-team/apertium-ady
1818
Rules-Requires-Root: no
1919

2020
Package: apertium-ady
2121
Architecture: all
22-
Depends: apertium (>= 3.8.3),
23-
cg3 (>= 1.3.9),
22+
Depends: apertium (>= 3.9.12),
23+
cg3 (>= 1.5.1),
2424
hfst (>= 3.16.0),
2525
${misc:Depends},
2626
${shlibs:Depends}

languages/apertium-afr/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
8-
cg3-dev (>= 1.3.9),
7+
Build-Depends: apertium-dev (>= 3.9.12),
8+
cg3-dev (>= 1.5.1),
99
debhelper (>= 12),
1010
gawk,
1111
pkg-config
12-
Standards-Version: 4.7.0
12+
Standards-Version: 4.7.2
1313
Homepage: https://apertium.org/
1414
Vcs-Git: https://salsa.debian.org/science-team/apertium-afr.git
1515
Vcs-Browser: https://salsa.debian.org/science-team/apertium-afr
1616
Rules-Requires-Root: no
1717

1818
Package: apertium-afr
1919
Architecture: all
20-
Depends: apertium (>= 3.8.3),
21-
cg3 (>= 1.3.9),
20+
Depends: apertium (>= 3.9.12),
21+
cg3 (>= 1.5.1),
2222
${misc:Depends},
2323
${shlibs:Depends}
2424
Description: Apertium single language data for Afrikaans

languages/apertium-aii/debian/control

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3), debhelper (>= 12), gawk, pkg-config
8-
Standards-Version: 4.7.0
7+
Build-Depends: apertium-dev (>= 3.9.12), debhelper (>= 12), gawk, pkg-config
8+
Standards-Version: 4.7.2
99
Homepage: https://apertium.org/
1010
Vcs-Git: https://salsa.debian.org/science-team/apertium-aii.git
1111
Vcs-Browser: https://salsa.debian.org/science-team/apertium-aii
1212
Rules-Requires-Root: no
1313

1414
Package: apertium-aii
1515
Architecture: all
16-
Depends: apertium (>= 3.8.3), ${misc:Depends}, ${shlibs:Depends}
16+
Depends: apertium (>= 3.9.12), ${misc:Depends}, ${shlibs:Depends}
1717
Description: Apertium single language data for Assyrian Neo-Aramaic
1818
Data package providing Apertium language resources for Assyrian Neo-Aramaic

languages/apertium-ain/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
8-
cg3-dev (>= 1.3.9),
7+
Build-Depends: apertium-dev (>= 3.9.12),
8+
cg3-dev (>= 1.5.1),
99
debhelper (>= 12),
1010
gawk,
1111
hfst (>= 3.16.0),
1212
hfst-ospell-dev (>= 0.5.3),
1313
pkg-config
14-
Standards-Version: 4.7.0
14+
Standards-Version: 4.7.2
1515
Homepage: https://apertium.org/
1616
Vcs-Git: https://salsa.debian.org/science-team/apertium-ain.git
1717
Vcs-Browser: https://salsa.debian.org/science-team/apertium-ain
1818
Rules-Requires-Root: no
1919

2020
Package: apertium-ain
2121
Architecture: all
22-
Depends: apertium (>= 3.8.3),
23-
cg3 (>= 1.3.9),
22+
Depends: apertium (>= 3.9.12),
23+
cg3 (>= 1.5.1),
2424
hfst (>= 3.16.0),
2525
${misc:Depends},
2626
${shlibs:Depends}

languages/apertium-alt/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
8-
cg3-dev (>= 1.3.9),
7+
Build-Depends: apertium-dev (>= 3.9.12),
8+
cg3-dev (>= 1.5.1),
99
debhelper (>= 12),
1010
gawk,
1111
hfst (>= 3.16.0),
1212
hfst-ospell-dev (>= 0.5.3),
1313
pkg-config
14-
Standards-Version: 4.7.0
14+
Standards-Version: 4.7.2
1515
Homepage: https://apertium.org/
1616
Vcs-Git: https://salsa.debian.org/science-team/apertium-alt.git
1717
Vcs-Browser: https://salsa.debian.org/science-team/apertium-alt
1818
Rules-Requires-Root: no
1919

2020
Package: apertium-alt
2121
Architecture: all
22-
Depends: apertium (>= 3.8.3),
23-
cg3 (>= 1.3.9),
22+
Depends: apertium (>= 3.9.12),
23+
cg3 (>= 1.5.1),
2424
hfst (>= 3.16.0),
2525
${misc:Depends},
2626
${shlibs:Depends}

languages/apertium-ara/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
8-
cg3-dev (>= 1.3.9),
7+
Build-Depends: apertium-dev (>= 3.9.12),
8+
cg3-dev (>= 1.5.1),
99
debhelper (>= 12),
1010
gawk,
1111
hfst (>= 3.16.0),
1212
libhfst-dev (>= 3.16.0),
1313
pkg-config
14-
Standards-Version: 4.7.0
14+
Standards-Version: 4.7.2
1515
Homepage: https://apertium.org/
1616
Vcs-Git: https://salsa.debian.org/science-team/apertium-ara.git
1717
Vcs-Browser: https://salsa.debian.org/science-team/apertium-ara
1818
Rules-Requires-Root: no
1919

2020
Package: apertium-ara
2121
Architecture: all
22-
Depends: apertium (>= 3.8.3),
23-
cg3 (>= 1.3.9),
22+
Depends: apertium (>= 3.9.12),
23+
cg3 (>= 1.5.1),
2424
hfst (>= 3.16.0),
2525
${misc:Depends},
2626
${shlibs:Depends}

languages/apertium-arg/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
8-
cg3-dev (>= 1.3.9),
7+
Build-Depends: apertium-dev (>= 3.9.12),
8+
cg3-dev (>= 1.5.1),
99
debhelper (>= 12),
1010
gawk,
1111
pkg-config
12-
Standards-Version: 4.7.0
12+
Standards-Version: 4.7.2
1313
Homepage: https://apertium.org/
1414
Vcs-Git: https://salsa.debian.org/science-team/apertium-arg.git
1515
Vcs-Browser: https://salsa.debian.org/science-team/apertium-arg
1616
Rules-Requires-Root: no
1717

1818
Package: apertium-arg
1919
Architecture: all
20-
Depends: apertium (>= 3.8.3),
21-
cg3 (>= 1.3.9),
20+
Depends: apertium (>= 3.9.12),
21+
cg3 (>= 1.5.1),
2222
${misc:Depends},
2323
${shlibs:Depends}
2424
Description: Apertium single language data for Aragonese

languages/apertium-asm/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ Priority: optional
44
Maintainer: Debian Science Maintainers <[email protected]>
55
Uploaders: Tino Didriksen <[email protected]>,
66
Kartik Mistry <[email protected]>
7-
Build-Depends: apertium-dev (>= 3.8.3),
8-
cg3-dev (>= 1.3.9),
7+
Build-Depends: apertium-dev (>= 3.9.12),
8+
cg3-dev (>= 1.5.1),
99
debhelper (>= 12),
1010
gawk,
1111
pkg-config
12-
Standards-Version: 4.7.0
12+
Standards-Version: 4.7.2
1313
Homepage: https://apertium.org/
1414
Vcs-Git: https://salsa.debian.org/science-team/apertium-asm.git
1515
Vcs-Browser: https://salsa.debian.org/science-team/apertium-asm
1616
Rules-Requires-Root: no
1717

1818
Package: apertium-asm
1919
Architecture: all
20-
Depends: apertium (>= 3.8.3),
21-
cg3 (>= 1.3.9),
20+
Depends: apertium (>= 3.9.12),
21+
cg3 (>= 1.5.1),
2222
${misc:Depends},
2323
${shlibs:Depends}
2424
Description: Apertium single language data for Assamese

0 commit comments

Comments
 (0)