Add Ubuntu 21.10
This commit is contained in:
parent
29a6f784f5
commit
f6a8d5c134
3 changed files with 9 additions and 3 deletions
|
|
@ -54,7 +54,7 @@ sub fmt {
|
||||||
$input = encode_utf8($input);
|
$input = encode_utf8($input);
|
||||||
|
|
||||||
# grog has a tendency to recognize pod2man generated pages as -ms, let's just work around that by enforcing -man
|
# grog has a tendency to recognize pod2man generated pages as -ms, let's just work around that by enforcing -man
|
||||||
return _groff $input, $output, $errors, $cv, 'groff', '-man' if $input =~ /^.\\" Automatically generated by Pod::Man/;
|
#return _groff $input, $output, $errors, $cv, 'groff', '-man' if $input =~ /^.\\" Automatically generated by Pod::Man/;
|
||||||
|
|
||||||
# Call grog to figure out which preprocessors to use.
|
# Call grog to figure out which preprocessors to use.
|
||||||
my $grog = run_cmd [qw|grog -Tutf8 -DUTF-8 -|],
|
my $grog = run_cmd [qw|grog -Tutf8 -DUTF-8 -|],
|
||||||
|
|
@ -88,6 +88,7 @@ sub fmt {
|
||||||
@cmd = (@cmd[0..$#cmd-1], $macros, $cmd[$#cmd]);
|
@cmd = (@cmd[0..$#cmd-1], $macros, $cmd[$#cmd]);
|
||||||
push @$errors, "grog detected several macro packages: $double. Using $macros. (@cmd)";
|
push @$errors, "grog detected several macro packages: $double. Using $macros. (@cmd)";
|
||||||
}
|
}
|
||||||
|
@cmd = map $_ eq '-ms' ? '-man' : $_, @cmd; # -ms is almost(?) always wrong.
|
||||||
|
|
||||||
_groff $input, $output, $errors, $cv, @cmd;
|
_groff $input, $output, $errors, $cv, @cmd;
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -264,7 +264,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
|
||||||
(211,'Fedora', '34', 'fedora-34', 33),
|
(211,'Fedora', '34', 'fedora-34', 33),
|
||||||
(212,'Debian', '11 (stable)','debian-bullseye',15),
|
(212,'Debian', '11 (stable)','debian-bullseye',15),
|
||||||
(213,'Debian', '12 (testing)','debian-bookworm',16),
|
(213,'Debian', '12 (testing)','debian-bookworm',16),
|
||||||
(214,'CentOS', '8.4', 'centos-8.4', 64);
|
(214,'CentOS', '8.4', 'centos-8.4', 64),
|
||||||
|
(215,'Ubuntu', '21.10', 'ubuntu-impish', 34);
|
||||||
|
|
||||||
|
|
||||||
-- Removes any path components and compression extensions from the filename.
|
-- Removes any path components and compression extensions from the filename.
|
||||||
|
|
|
||||||
|
|
@ -128,6 +128,9 @@ case $1 in
|
||||||
hirsute)
|
hirsute)
|
||||||
stdrepo hirsute $CMIRROR amd64
|
stdrepo hirsute $CMIRROR amd64
|
||||||
;;
|
;;
|
||||||
|
impish)
|
||||||
|
stdrepo impish $CMIRROR amd64
|
||||||
|
;;
|
||||||
old)
|
old)
|
||||||
$0 warty
|
$0 warty
|
||||||
$0 hoary
|
$0 hoary
|
||||||
|
|
@ -152,6 +155,7 @@ case $1 in
|
||||||
$0 utopic
|
$0 utopic
|
||||||
$0 vivid
|
$0 vivid
|
||||||
$0 wily
|
$0 wily
|
||||||
|
$0 xenial
|
||||||
$0 yakkety
|
$0 yakkety
|
||||||
$0 zesty
|
$0 zesty
|
||||||
$0 artful
|
$0 artful
|
||||||
|
|
@ -160,11 +164,11 @@ case $1 in
|
||||||
$0 eoan
|
$0 eoan
|
||||||
;;
|
;;
|
||||||
current)
|
current)
|
||||||
$0 xenial # until 2021-04
|
|
||||||
$0 bionic # until 2023-04
|
$0 bionic # until 2023-04
|
||||||
$0 focal # until 2030-04
|
$0 focal # until 2030-04
|
||||||
$0 groovy # until 2021-07
|
$0 groovy # until 2021-07
|
||||||
$0 hirsute # until 2022-01
|
$0 hirsute # until 2022-01
|
||||||
|
$0 impish # until 2022-07
|
||||||
;;
|
;;
|
||||||
all)
|
all)
|
||||||
$0 old
|
$0 old
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue