Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/icu-layoutex/
Date: Wed, 29 Apr 2020 20:44:22
Message-Id: 1588193053.aa51f1e3fcd05033bc1cb28a744d1d3884488cbe.polynomial-c@gentoo
1 commit: aa51f1e3fcd05033bc1cb28a744d1d3884488cbe
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 29 20:14:36 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 20:44:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa51f1e3
7
8 dev-libs/icu-layoutex: Bump to version 67.1
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 dev-libs/icu-layoutex/Manifest | 1 +
14 dev-libs/icu-layoutex/icu-layoutex-67.1.ebuild | 109 +++++++++++++++++++++++++
15 2 files changed, 110 insertions(+)
16
17 diff --git a/dev-libs/icu-layoutex/Manifest b/dev-libs/icu-layoutex/Manifest
18 index 4f872322419..b0ef99e45df 100644
19 --- a/dev-libs/icu-layoutex/Manifest
20 +++ b/dev-libs/icu-layoutex/Manifest
21 @@ -1,2 +1,3 @@
22 DIST icu4c-65_1-src.tgz 24267934 BLAKE2B 3c62781201c02a2b1027c9b6db4586f8ccdfb339c0765301a381242d5218f3503a1cdbdc1dc9a1a23ffa657096adc4bf7f0b7fe702461f14beba293a7e82e02c SHA512 8f1ef33e1f4abc9a8ee870331c59f01b473d6da1251a19ce403f822f3e3871096f0791855d39c8f20c612fc49cda2c62c06864aa32ddab2dbd186d2b21ce9139
23 DIST icu4c-66_1-src.tgz 24361305 BLAKE2B db26e9380305601f8429366e2813ce3ccae11f34adde513d72a1ae09281a2078ce5eb7410bc788c717167018b4c2042fc83217fac22f34e26b94ee4621a6b4ec SHA512 78d87bce65a7bdf7e9a19bda13e353c60846816ff34025f829d1ff15f9ac49aa6061eb192173742be0eca105684ce0e39e95656147afe848520bf60274c8d246
24 +DIST icu4c-67_1-src.tgz 24518055 BLAKE2B f8a263b5c3e5e8ffea88a3bb766cb265aac026b5f9b2f45a1f06076f99f9f0dc3a4512487652d774ccfc8dc65f8f4c40a974e0aa2aa4381ee0c9885f6b871779 SHA512 4779f1ce1ca7976f6fad6768853ea8c540da54d11509e3b6cfd864a04b5f2db1c3d4b546387f91ad02fb90804525bc37d2543173f0d705d6ca11dc6f2b7640a8
25
26 diff --git a/dev-libs/icu-layoutex/icu-layoutex-67.1.ebuild b/dev-libs/icu-layoutex/icu-layoutex-67.1.ebuild
27 new file mode 100644
28 index 00000000000..847fdd9e2fd
29 --- /dev/null
30 +++ b/dev-libs/icu-layoutex/icu-layoutex-67.1.ebuild
31 @@ -0,0 +1,109 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools flag-o-matic multilib-minimal toolchain-funcs
38 +
39 +DESCRIPTION="External layout part of International Components for Unicode"
40 +HOMEPAGE="http://www.icu-project.org/"
41 +SRC_URI="https://github.com/unicode-org/icu/releases/download/release-${PV//./-}/icu4c-${PV//./_}-src.tgz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0/${PV}"
45 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="debug static-libs"
47 +
48 +BDEPEND="
49 + virtual/pkgconfig[${MULTILIB_USEDEP}]
50 +"
51 +DEPEND="
52 + ~dev-libs/icu-${PV}[${MULTILIB_USEDEP}]
53 + dev-libs/icu-le-hb[${MULTILIB_USEDEP}]
54 +"
55 +RDEPEND="${DEPEND}"
56 +
57 +S="${WORKDIR}/${PN/-layoutex}/source"
58 +
59 +PATCHES=(
60 + "${FILESDIR}/${PN}-65.1-remove-bashisms.patch"
61 +)
62 +
63 +src_prepare() {
64 + # apply patches
65 + default
66 +
67 + # Disable renaming as it is stupid thing to do
68 + sed -i \
69 + -e "s/#define U_DISABLE_RENAMING 0/#define U_DISABLE_RENAMING 1/" \
70 + common/unicode/uconfig.h || die
71 +
72 + # Fix linking of icudata
73 + sed -i \
74 + -e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" \
75 + config/mh-linux || die
76 +
77 + eautoreconf
78 +}
79 +
80 +src_configure() {
81 + # Use C++14
82 + append-cxxflags -std=c++14
83 +
84 + if tc-is-cross-compiler; then
85 + mkdir "${WORKDIR}"/host || die
86 + pushd "${WORKDIR}"/host >/dev/null || die
87 +
88 + CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \
89 + CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" AR="$(tc-getBUILD_AR)" \
90 + RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \
91 + "${S}"/configure --disable-renaming --disable-debug \
92 + --disable-samples --enable-static || die
93 + emake
94 +
95 + popd >/dev/null || die
96 + fi
97 +
98 + multilib-minimal_src_configure
99 +}
100 +
101 +multilib_src_configure() {
102 + local myeconfargs=(
103 + --disable-renaming
104 + --disable-samples
105 + --enable-layoutex
106 + $(use_enable debug)
107 + $(use_enable static-libs static)
108 + )
109 +
110 + tc-is-cross-compiler && myeconfargs+=(
111 + --with-cross-build="${WORKDIR}"/host
112 + )
113 +
114 + # icu tries to use clang by default
115 + tc-export CC CXX
116 +
117 + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
118 +}
119 +
120 +multilib_src_test() {
121 + # INTLTEST_OPTS: intltest options
122 + # -e: Exhaustive testing
123 + # -l: Reporting of memory leaks
124 + # -v: Increased verbosity
125 + # IOTEST_OPTS: iotest options
126 + # -e: Exhaustive testing
127 + # -v: Increased verbosity
128 + # CINTLTST_OPTS: cintltst options
129 + # -e: Exhaustive testing
130 + # -v: Increased verbosity
131 + pushd layoutex &>/dev/null || die
132 + emake -j1 VERBOSE="1" check
133 + popd &>/dev/null || die
134 +}
135 +
136 +multilib_src_install() {
137 + pushd layoutex &>/dev/null || die
138 + default
139 + popd &>/dev/null || die
140 +}