summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-libs/libintl: donot -fvisibility=hidden on macOS.Benda Xu2023-07-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The linker/libtool on macOS hide symbol 'locale_charset' of libgnu.a, even if the function was compile with __attribute__((__visibility__("default"))) Coincidentally, libtool specifies a set of exposed symbols to the linker in the final stage. So not specifying -fvisibility=hidden during compilation does not expose extra symbols. A comparison of libintl.dylib before (bad) and after (good) this revision bump: diff -u <(nm -a libintl.8.3.0.dylib.bad) <(nm -a libintl.8.3.0.dylib.good) --- /dev/fd/63 2023-07-08 21:08:56.000000000 +0800 +++ /dev/fd/62 2023-07-08 21:08:56.000000000 +0800 @@ -105,8 +105,8 @@ 0000000000003c30 t _alias_compare 0000000000017aa0 s _alias_table 0000000000016dd0 s _aliasfile.0 -0000000000008290 t _bind_textdomain_codeset -0000000000008280 t _bindtextdomain +0000000000008290 T _bind_textdomain_codeset +0000000000008280 T _bindtextdomain U _bsearch 000000000001b878 b _cache_initialized.1 000000000001b870 b _cached_languages.0 @@ -117,22 +117,22 @@ U _close 000000000001cd80 b _curr_prefix 000000000001cd78 b _curr_prefix_len -0000000000008230 t _dcgettext -0000000000008260 t _dcngettext -0000000000008220 t _dgettext -0000000000008250 t _dngettext -00000000000162e0 t _emutls_destroy +0000000000008230 T _dcgettext +0000000000008260 T _dcngettext +0000000000008220 T _dgettext +0000000000008250 T _dngettext 00000000000162e0 - 01 0000 FUN _emutls_destroy -0000000000016320 t _emutls_init +00000000000162e0 t _emutls_destroy 0000000000016320 - 01 0000 FUN _emutls_init -00000000000165ea s _emutls_init.cold +0000000000016320 t _emutls_init 00000000000165ea - 01 0000 FUN _emutls_init.cold +00000000000165ea s _emutls_init.cold 000000000001cda0 - 0e 0000 STSYM _emutls_key 000000000001cda0 b _emutls_key -000000000001b7c0 - 0d 0000 STSYM _emutls_mutex 000000000001b7c0 d _emutls_mutex -000000000001cd98 b _emutls_size +000000000001b7c0 - 0d 0000 STSYM _emutls_mutex 000000000001cd98 - 0e 0000 STSYM _emutls_size +000000000001cd98 b _emutls_size 000000000001b860 b _enable_secure U _fclose U _fgets @@ -151,7 +151,7 @@ U _getenv U _geteuid U _getgid -0000000000008210 t _gettext +0000000000008210 T _gettext U _getuid 0000000000008e30 T _gl_get_setlocale_null_lock U _kCFPreferencesCurrentApplication @@ -168,19 +168,19 @@ 0000000000001b40 T _libintl_bind_textdomain_codeset 0000000000001b00 T _libintl_bindtextdomain 0000000000001b80 T _libintl_dcgettext -00000000000057c0 t _libintl_dcigettext +00000000000057c0 T _libintl_dcigettext 00000000000165b8 s _libintl_dcigettext.cold 00000000000061c0 T _libintl_dcngettext 0000000000001b90 T _libintl_dgettext 00000000000061d0 T _libintl_dngettext 0000000000001ba0 T _libintl_gettext -0000000000001e80 t _libintl_hash_string +0000000000001e80 T _libintl_hash_string 0000000000007f00 T _libintl_newlocale 00000000000061e0 T _libintl_ngettext -000000000001b5c8 d _libintl_nl_current_default_domain -0000000000016e00 s _libintl_nl_default_default_domain -0000000000016de0 s _libintl_nl_default_dirname -000000000001cdb0 s _libintl_nl_domain_bindings +000000000001b5c8 D _libintl_nl_current_default_domain +0000000000016e00 S _libintl_nl_default_default_domain +0000000000016de0 S _libintl_nl_default_dirname +000000000001cdb0 S _libintl_nl_domain_bindings 0000000000010ac0 T _libintl_set_relocation_prefix 00000000000077a0 T _libintl_setlocale 00000000000165c2 s _libintl_setlocale.cold @@ -188,7 +188,7 @@ 00000000000165a6 s _libintl_textdomain.cold 000000000001b700 D _libintl_version 000000000001b808 b _locale_alias_path.1 -00000000000083a0 t _locale_charset +00000000000083a0 T _locale_charset 00000000000170e0 s _locales_with_principal_language 0000000000017520 s _locales_with_principal_territory 000000000001b360 d _lock @@ -208,7 +208,7 @@ U _munmap 000000000001b760 d _mutex U _newlocale -0000000000008240 t _ngettext +0000000000008240 T _ngettext U _nl_langinfo 000000000001b818 b _nmap 000000000001b7a0 d _once.0 @@ -270,7 +270,7 @@ U _strtoul 000000000001b8c0 b _struniq_hash_table 000000000001b720 d _struniq_lock -0000000000008270 t _textdomain +0000000000008270 T _textdomain U _tfind 0000000000004d40 t _transcmp 000000000001b5e0 d _tree_lock All the important symbols are correctly exposed. Bug: https://bugs.gentoo.org/906507 Closes: https://github.com/gentoo/gentoo/pull/31803 Signed-off-by: Benda Xu <heroxbd@gentoo.org>
* dev-libs/libintl: add 0.22Sam James2023-06-192-0/+98
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* */*: remove x86-winnt keywordFabian Groffen2023-05-251-1/+1
| | | | Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* */*: remove sparc64-solaris keywordFabian Groffen2023-05-251-1/+1
| | | | Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* */*: remove sparc-solaris keywordFabian Groffen2023-05-251-1/+1
| | | | Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* */*: remove x86-solaris keywordFabian Groffen2023-05-241-1/+1
| | | | Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* dev-libs/libintl: keyword 0.21.1 for ~arm64-macosSam James2023-02-261-2/+2
| | | | | Bug: https://bugs.gentoo.org/896330 Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: stabilize 0.21.1 for ppc64Sam James2022-12-261-1/+1
| | | | | Closes: https://bugs.gentoo.org/882855 Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: drop 0.21Sam James2022-12-262-85/+0
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21.1 amd64, #882855Arthur Zamarin2022-12-021-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21.1 x86, #882855Arthur Zamarin2022-12-021-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21.1 sparc, #882855Arthur Zamarin2022-11-251-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21.1 ppc, #882855Arthur Zamarin2022-11-251-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21.1 arm64, #882855Arthur Zamarin2022-11-251-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21.1 arm, #882855Arthur Zamarin2022-11-251-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-libs/libintl: add 0.21.1Sam James2022-10-293-0/+198
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: use confcacheSam James2022-05-301-0/+2
| | | | | | Like we do with gettext. Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: switch to xzSam James2022-04-092-4/+4
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: add verify-sigSam James2022-04-072-5/+7
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* **/metadata.xml: Replace http by https in DOCTYPE elementUlrich Müller2021-09-111-1/+1
| | | | | Bug: https://bugs.gentoo.org/552720 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* dev-libs/libintl: toolchain-funcs--Sam James2021-04-161-2/+2
| | | | | Signed-off-by: Sam James <sam@gentoo.org> Signed-off-by: David Seifert <soap@gentoo.org>
* dev-libs/libintl: drop s390 to ~s390 (unstable)Sam James2021-04-051-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Drop 0.19.7, 0.19.8.1, 0.20.1 and 0.20.2; EAPI5--Andreas Sturmlechner2021-02-155-316/+0
| | | | | | Closes: https://bugs.gentoo.org/733710 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* dev-libs/libintl: drop x86-macosFabian Groffen2021-01-065-10/+10
| | | | | Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* */*: Drop most stable hppa keywordsMatt Turner2020-12-313-3/+3
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* dev-libs/libintl: drop ppc-aix m68k-mintFabian Groffen2020-12-275-5/+5
| | | | | Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* dev-libs/libintl: stable 0.21 for hppa, bug #733710Rolf Eike Beer2020-12-021-1/+1
| | | | | | | Package-Manager: Portage-3.0.9, Repoman-3.0.2 RepoMan-Options: --include-arches="hppa" Signed-off-by: Rolf Eike Beer <eike@sf-mail.de> Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 x86, #733710Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 sparc, #733710Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 s390, #733710Sam James2020-08-311-1/+1
| | | | | Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 amd64, #733710Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 ppc64, #733710Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 ppc, #733710Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 arm, #733710Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.21 arm64, #733710Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Stabilize 0.19.8.1 ppc, #685944Sam James2020-08-311-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: x86 stable (bug #733710)Thomas Deutschmann2020-08-301-1/+1
| | | | | Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* dev-libs/libintl: Stabilize 0.20.1 arm64, #733710Sam James2020-08-141-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-libs/libintl: Bump to versions 0.20.2 and 0.21Lars Wendler2020-07-273-0/+162
| | | | | | Closes: https://bugs.gentoo.org/732148 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* dev-libs/libintl: ppc64 stable (bug #685944)Sam James2020-07-231-1/+1
| | | | | Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Sam James <sam@gentoo.org>
* */*: downgrade m68k down to ~m68kSergei Trofimovich2020-04-212-2/+2
| | | | | | | | | m68k and ~m68k trees are inconsistent. Let's drop keywords down to ~m68k only. Profiles already accept both keywords: ACCEPT_KEYWORDS="m68k ~m68k" Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* */*: Drop stable ia64 keywordsMatt Turner2020-04-032-2/+2
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* */*: Discontinue Gentoo SuperH portMikle Kolyada2020-03-263-4/+4
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --ignore-arches Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* dev-libs/libintl: [QA] inherit ltprune.eclass directlyDavid Seifert2020-02-152-2/+2
| | | | | Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert <soap@gentoo.org>
* */*: Bump copyright on files touched this yearMichał Górny2020-02-112-2/+2
| | | | | | | Update the copyright notice on all files that were touched since January 1st but did not have the notice updated. Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Drop stable alpha keywordsMatt Turner2020-01-252-2/+2
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* dev-libs/libintl: alpha stable wrt bug #685944Mikle Kolyada2019-12-281-1/+1
| | | | | | Package-Manager: Portage-2.3.79, Repoman-2.3.16 RepoMan-Options: --include-arches="alpha" Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* dev-libs: Remove *-fbsd KEYWORDSMichał Górny2019-10-113-3/+3
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-libs/libintl: arm64 stable (bug #685944)Aaron Bauman2019-07-291-1/+1
| | | | | | Signed-off-by: Aaron Bauman <bman@gentoo.org> Package-Manager: Portage-2.3.69, Repoman-2.3.16 RepoMan-Options: --include-arches="arm64"
* dev-libs/libintl: stable 0.19.8.1 for hppa/sparc, bug #685944Rolf Eike Beer2019-07-231-1/+1
| | | | | | | Signed-off-by: Rolf Eike Beer <eike@sf-mail.de> Package-Manager: Portage-2.3.66, Repoman-2.3.11 RepoMan-Options: --include-arches="hppa sparc" Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>