Gentoo Archives: gentoo-commits

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