app-text/wiki2man_on_rust
Convert MediaWiki XML dumps into man(7) pages - so you can read Wikipedia in man
-
wiki2man_on_rust-0.5.1-r1~amd64l10n_be l10n_en l10n_ru l10n_de l10n_fr l10n_ja debug
View
Download
Browse License: MIT Unicode-3.0 BZIP2 l10n_be? ( CC-BY-SA-4.0 ) l10n_de? ( CC-BY-SA-4.0 ) l10n_en? ( CC-BY-SA-4.0 ) l10n_fr? ( CC-BY-SA-4.0 ) l10n_ja? ( CC-BY-SA-4.0 ) l10n_ru? ( CC-BY-SA-4.0 ) Overlay: gentoo-zh -
wiki2man_on_rust-0.2.1-r1~amd64l10n_be l10n_en l10n_ru l10n_de l10n_fr l10n_ja debug
View
Download
Browse License: MIT Unicode-3.0 BZIP2 l10n_be? ( CC-BY-SA-4.0 ) l10n_de? ( CC-BY-SA-4.0 ) l10n_en? ( CC-BY-SA-4.0 ) l10n_fr? ( CC-BY-SA-4.0 ) l10n_ja? ( CC-BY-SA-4.0 ) l10n_ru? ( CC-BY-SA-4.0 ) Overlay: gentoo-zh -
wiki2man_on_rust-0.1.10-r1~amd64l10n_be l10n_en l10n_ru l10n_de l10n_fr l10n_ja debug
View
Download
Browse License: MIT Unicode-3.0 BZIP2 l10n_be? ( CC-BY-SA-4.0 ) l10n_de? ( CC-BY-SA-4.0 ) l10n_en? ( CC-BY-SA-4.0 ) l10n_fr? ( CC-BY-SA-4.0 ) l10n_ja? ( CC-BY-SA-4.0 ) l10n_ru? ( CC-BY-SA-4.0 ) Overlay: gentoo-zh
ChangeLog
commit b7dd818f4172e322ff9298950c870b4b65d832b7
Author: Zakk <zakk@gentoozh.org>
Date: Sun Jul 19 14:18:36 2026 +1000
app-text/wiki2man_on_rust: fix depend-phase sandbox violation
The top-level IUSE/SRC_URI generation loops split their "code:wiki:chunk"
strings with `read <<<`, whose here-string needs a temp file in $. The
depend (metadata) phase can run with an unwritable CWD -- e.g. metadata regen
during eclean, with CWD left at /usr/lib/pythonX/site-packages -- so mkstemp is
denied and the sandbox aborts the phase for every version in the overlay.
Split with parameter expansion instead; the resulting IUSE and SRC_URI are
byte-identical (verified), so no revbump is needed. The `read <<<` calls inside
the phase functions are left as-is: they run with a writable WORKDIR.
Closes #11131
commit 61522f63ee007b0651efd990896038aa3dcbb718
Author: Zakk <zakk@gentoozh.org>
Date: Fri Jul 17 16:09:02 2026 +1000
treewide: update SRC_URI to renamed/https upstreams
Point SRC_URI/HOMEPAGE at renamed or moved upstreams and upgrade http->https
for 9 packages. Manifests are unchanged: every distfile is byte-identical,
only the fetch location moved.
Signed-off-by: Zakk <zakk@gentoozh.org>
commit 10cd7455f043b549aff2533f1645f10757667827
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Sat May 16 17:33:48 2026 +0400
app-text/wiki2man_on_rust: add 0.5.1
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit 34b991be5049e1f76eb2d50f8e35c9fbf5dc8472
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Sat May 16 08:11:02 2026 +0400
app-text/wiki2man_on_rust: add 0.2.1
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit d5c860e90bc283e3a5edf32886adcc0ffe68dc88
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Wed May 6 10:18:17 2026 +0400
app-text/wiki2man_on_rust: add 0.1.10, drop 0.1.7
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit 1df258853af2cdb367f1388e8ef70b91b038a630
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Tue May 5 17:19:30 2026 +0400
app-text/wiki2man_on_rust: add 0.1.7, drop 0.1.5
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit c7fb167704e56307a083477f7ad272df8b767bcf
Author: jinqiang zhang <peeweep@0x0.ee>
Date: Tue May 5 17:07:59 2026 +0800
app-text/wiki2man_on_rust: restrict mirror
Signed-off-by: jinqiang zhang <peeweep@0x0.ee>
commit ef0168bc956b52c9b04e131d8185eb1ac25ce446
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Tue May 5 03:19:44 2026 +0400
app-text/wiki2man_on_rust: add 0.1.5, drop 0.1.3
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit 6e7e57d13653caa47ad04096fc93a3442ce25dd2
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Mon May 4 19:14:38 2026 +0400
app-text/wiki2man_on_rust: new package, add 0.1.2
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Author: Zakk <zakk@gentoozh.org>
Date: Sun Jul 19 14:18:36 2026 +1000
app-text/wiki2man_on_rust: fix depend-phase sandbox violation
The top-level IUSE/SRC_URI generation loops split their "code:wiki:chunk"
strings with `read <<<`, whose here-string needs a temp file in $. The
depend (metadata) phase can run with an unwritable CWD -- e.g. metadata regen
during eclean, with CWD left at /usr/lib/pythonX/site-packages -- so mkstemp is
denied and the sandbox aborts the phase for every version in the overlay.
Split with parameter expansion instead; the resulting IUSE and SRC_URI are
byte-identical (verified), so no revbump is needed. The `read <<<` calls inside
the phase functions are left as-is: they run with a writable WORKDIR.
Closes #11131
commit 61522f63ee007b0651efd990896038aa3dcbb718
Author: Zakk <zakk@gentoozh.org>
Date: Fri Jul 17 16:09:02 2026 +1000
treewide: update SRC_URI to renamed/https upstreams
Point SRC_URI/HOMEPAGE at renamed or moved upstreams and upgrade http->https
for 9 packages. Manifests are unchanged: every distfile is byte-identical,
only the fetch location moved.
Signed-off-by: Zakk <zakk@gentoozh.org>
commit 10cd7455f043b549aff2533f1645f10757667827
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Sat May 16 17:33:48 2026 +0400
app-text/wiki2man_on_rust: add 0.5.1
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit 34b991be5049e1f76eb2d50f8e35c9fbf5dc8472
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Sat May 16 08:11:02 2026 +0400
app-text/wiki2man_on_rust: add 0.2.1
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit d5c860e90bc283e3a5edf32886adcc0ffe68dc88
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Wed May 6 10:18:17 2026 +0400
app-text/wiki2man_on_rust: add 0.1.10, drop 0.1.7
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit 1df258853af2cdb367f1388e8ef70b91b038a630
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Tue May 5 17:19:30 2026 +0400
app-text/wiki2man_on_rust: add 0.1.7, drop 0.1.5
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit c7fb167704e56307a083477f7ad272df8b767bcf
Author: jinqiang zhang <peeweep@0x0.ee>
Date: Tue May 5 17:07:59 2026 +0800
app-text/wiki2man_on_rust: restrict mirror
Signed-off-by: jinqiang zhang <peeweep@0x0.ee>
commit ef0168bc956b52c9b04e131d8185eb1ac25ce446
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Tue May 5 03:19:44 2026 +0400
app-text/wiki2man_on_rust: add 0.1.5, drop 0.1.3
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
commit 6e7e57d13653caa47ad04096fc93a3442ce25dd2
Author: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Date: Mon May 4 19:14:38 2026 +0400
app-text/wiki2man_on_rust: new package, add 0.1.2
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>

