aboutsummaryrefslogtreecommitdiffstats
path: root/sys-apps
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-06-11 10:38:10 +0200
committerWynn Wolf Arbor2020-06-11 10:38:10 +0200
commit07408d69ab77abd652b12ce7add78747b86159cd (patch)
tree9248ccc8bc1aec9f0e2d0e6d6868f3759af4eb11 /sys-apps
parentf3928fb15fe10c50e365909e14ad66da0f56efcd (diff)
downloadpramantha-07408d69ab77abd652b12ce7add78747b86159cd.tar.gz
sys-apps/mandoc: Bump to 1.14.5-r3
mandoc uses the 'locale' command in its configuration suite to find out which UTF-8 locale the system uses. On musl systems, 'locale' is missing, so mandoc assumes that no UTF-8 support is available. Force UTF8_LOCALE to C.UTF-8 on musl systems to make mandoc UTF-8 aware. Package-Manager: Portage-2.3.99, Repoman-2.3.22
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/mandoc/Manifest2
-rw-r--r--sys-apps/mandoc/mandoc-1.14.5-r3.ebuild (renamed from sys-apps/mandoc/mandoc-1.14.5-r2.ebuild)4
2 files changed, 4 insertions, 2 deletions
diff --git a/sys-apps/mandoc/Manifest b/sys-apps/mandoc/Manifest
index 380e473..4b2fae7 100644
--- a/sys-apps/mandoc/Manifest
+++ b/sys-apps/mandoc/Manifest
@@ -1,6 +1,6 @@
AUX configure.local 232 BLAKE2B c6f8982c10029aa9e40b2bec2de53fdcf9aff08a363f089e11996c8d32e94b757d4e4884192a8d24fc165ae657a5ce1c61855542ad176bb6bb97b89e7a094211 SHA512 db661887bcbec6abb7cfb4164b4ab5a592a87e7e6be28ecfcdb204bf961361ce214207e80f5adb9f14ccaa077b5142fa65cda21ee9fd969973f060c2a08ae1fc
AUX mandoc.cron 93 BLAKE2B 9b89161f32f608d5eb2d867d4edba09bbcccae10ae486c81c8c2cfc65961abbf460b75b5d44253e3e7951c01aef9000063209c7699afd94e776647d7ab356828 SHA512 3dabb2f513129aca96cc9c176053f4ffd64daae41b627c9fb657344b8e97f054e5a8fd3d662de50e6901de1b62231df009cef3896fcdf9ad8af04b0e893a7540
DIST mandoc-1.14.5.tar.gz 651846 BLAKE2B 27aaf97e7226e989b33861d2a255304bb64a7cd43ca026568f4b044035241c3315a0d73673b023d9ca5b80575b8c584889832bbd86b80aaa49bb785b37559367 SHA512 848f290847f3095757f25647e6d73eb7044018b145bf6f9dc8b5db164b1421911efdc5b3b9022ec3a2c5af9687a84d5acedee810f2bd2f7caaa9242dadb2cc52
-EBUILD mandoc-1.14.5-r2.ebuild 1835 BLAKE2B 8cfac8010d91cc4c0b1039dc0d474c6928ef80f0014908a9bcf35945a93fc7af5a21ac98e80d1c1bff0cdd808f3c4d7690fe03bd53e30057d76e98741199c683 SHA512 c92904572b372a65ec9ed59e87d08b80ed878d3012a4c95742d2b39431c3b604c89370f5f2a47a676923454348940afd654d854866441f00696a753864740cda
+EBUILD mandoc-1.14.5-r3.ebuild 1875 BLAKE2B 2dc9c52850e11cd6727aa823cae566d245716cb7da1dbb7c7d6b70ef1686dc97d40291328cdeed5bb3a3e708152ffb64c13a927202120194b208d4c864082331 SHA512 84fa2b37469b3241683a8cf467755c440b0ac9ffe06e2d3c27d8d9d8be9ab6e684d46d4115aa742112e067560422546b398f1c85eb1e17deaab3d713831bb728
EBUILD mandoc-1.14.5.ebuild 1175 BLAKE2B fc716c848d9a4ee5a2bdcce156465f18a94218c3afa739ab1812142ac820f73163761932179831e4d19d01bd29fd977a82194adec4cabaf5497bda502fe048fe SHA512 bcf0cdd6d25bbcc6f40635ec02de9c83ccc9173d27a4dd445e2f436a3045891ada9b88f962b04b9e59527d0761bab91201fca5947429970e6d469a52484aee58
MISC metadata.xml 332 BLAKE2B ea9f4015785ffc75c7708ee5a563f6ac2c2f34a630f973b7826a8086983730256adc71eceb447ca3af9391a1aacbd0107b061e97e2ce8ae1e7afb85bb92deed9 SHA512 edc2d04d705f45b21b7db90c41e2d6a3065f264663cfa039d69438a9296189f9628284abb467ca9ba2f17f1cdb055a2a85b0108ee9a2a543315c3def2db2f635
diff --git a/sys-apps/mandoc/mandoc-1.14.5-r2.ebuild b/sys-apps/mandoc/mandoc-1.14.5-r3.ebuild
index 1382e71..8025515 100644
--- a/sys-apps/mandoc/mandoc-1.14.5-r2.ebuild
+++ b/sys-apps/mandoc/mandoc-1.14.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -45,6 +45,8 @@ src_prepare() {
CC="$(tc-getCC)"
# The STATIC variable is only used by man.cgi.
STATIC=
+
+ $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '')
EOF
}