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