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: media-libs/harfbuzz/
Date: Thu, 04 Nov 2021 17:23:21
Message-Id: 1636046587.0eb200db43e8b3a89779ceb904483a4641013211.polynomial-c@gentoo
1 commit: 0eb200db43e8b3a89779ceb904483a4641013211
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 4 17:10:18 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 4 17:23:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb200db
7
8 media-libs/harfbuzz: Bump to version 3.1.0
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 media-libs/harfbuzz/Manifest | 1 +
13 media-libs/harfbuzz/harfbuzz-3.1.0.ebuild | 98 +++++++++++++++++++++++++++++++
14 2 files changed, 99 insertions(+)
15
16 diff --git a/media-libs/harfbuzz/Manifest b/media-libs/harfbuzz/Manifest
17 index 6842af93c51..b7ade8c72bb 100644
18 --- a/media-libs/harfbuzz/Manifest
19 +++ b/media-libs/harfbuzz/Manifest
20 @@ -2,3 +2,4 @@ DIST harfbuzz-2.8.1.tar.gz 17939717 BLAKE2B 4e6eeb0beb45e88386d994eb219479a2ed68
21 DIST harfbuzz-2.8.2.tar.gz 18506485 BLAKE2B 39a43d643339a5bc27d886e418695d2864ad7b9094dc508f5ccf52bf635b340adb7ec6958a15349e0b2580444ec98c5850e4022f708287fbe44cb7ea90065881 SHA512 51eee8c8fa6f839512e0dfc5c80ae8ed1e09d747d0ffc6736e5a1cbf86de956322f23e6ea25a90985e2317e98229a133e208da2a7b5177d65894cc64706ee8d4
22 DIST harfbuzz-2.9.1.tar.gz 19154048 BLAKE2B e6cdc3936606e3d9a4bacf385db13c54f328d5be6c20ab20f844650351dd34f8f2015954f4ac7a6e0b8a1258ed9a6e71f43871c768c892d87af5c399c4499c63 SHA512 f8bb1d75b498d1581e76c57e5a15999e2c0d745d7d73dad17bfc91daf000f96d17c4924e6fb31270c90c26693dd504a7e7b2add152a013acca2491a86256b07b
23 DIST harfbuzz-3.0.0.tar.gz 20360786 BLAKE2B acc1e4d7d59908a23ae1015700cfbf1737cdb0b26ba811d752954356baffb2ab18c3d22b5964d200c4cc7e312a79655c3437aff9f5a85b72c472e324dc3257ba SHA512 69999ad86bde56ef689392a521143b6ad14b6719860772c3d4c343358997049a48c79e8f302fe0a7f3b0d930b476ddf440def874a1269b50ae79d020bcd073b5
24 +DIST harfbuzz-3.1.0.tar.gz 24969178 BLAKE2B b9a21de7648382a104c60c135f46719c36158a766ff445de0f6038b143f5e524feb2214ebc1b3591141bcb023b79ce0d35b8b20efd69e3166685644ef2e6e0a6 SHA512 da75297bc205036d5f4374d68cb71a96f7b4db5428384bec6f9412988682301a30094643e7d33359c985b7f309f7b3f88275488137e75a5a0d2d493b11f52ae9
25
26 diff --git a/media-libs/harfbuzz/harfbuzz-3.1.0.ebuild b/media-libs/harfbuzz/harfbuzz-3.1.0.ebuild
27 new file mode 100644
28 index 00000000000..f6617befe9b
29 --- /dev/null
30 +++ b/media-libs/harfbuzz/harfbuzz-3.1.0.ebuild
31 @@ -0,0 +1,98 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit flag-o-matic meson-multilib python-any-r1 xdg-utils
40 +
41 +DESCRIPTION="An OpenType text shaping engine"
42 +HOMEPAGE="https://www.freedesktop.org/wiki/Software/HarfBuzz"
43 +
44 +if [[ ${PV} = 9999 ]] ; then
45 + EGIT_REPO_URI="https://github.com/harfbuzz/harfbuzz.git"
46 + inherit git-r3
47 +else
48 + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
49 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
50 +fi
51 +
52 +LICENSE="Old-MIT ISC icu"
53 +# 0.9.18 introduced the harfbuzz-icu split; bug #472416
54 +# 3.0.0 dropped some unstable APIs; bug #813705
55 +SLOT="0/3.0.0"
56 +
57 +IUSE="+cairo debug doc experimental +glib +graphite icu +introspection test +truetype"
58 +RESTRICT="!test? ( test )"
59 +REQUIRED_USE="introspection? ( glib )"
60 +
61 +RDEPEND="
62 + cairo? ( x11-libs/cairo:= )
63 + glib? ( >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] )
64 + graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] )
65 + icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] )
66 + introspection? ( >=dev-libs/gobject-introspection-1.34:= )
67 + truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] )
68 +"
69 +DEPEND="${RDEPEND}
70 + >=dev-libs/gobject-introspection-common-1.34
71 +"
72 +BDEPEND="
73 + ${PYTHON_DEPS}
74 + virtual/pkgconfig
75 + doc? ( dev-util/gtk-doc )
76 + introspection? ( dev-util/glib-utils )
77 +"
78 +
79 +pkg_setup() {
80 + python-any-r1_pkg_setup
81 + if ! use debug ; then
82 + append-cppflags -DHB_NDEBUG
83 + fi
84 +}
85 +
86 +src_prepare() {
87 + default
88 +
89 + xdg_environment_reset
90 +
91 + sed -i \
92 + -e '/tests\/macos\.tests/d' \
93 + test/shape/data/in-house/Makefile.sources \
94 + || die # bug 726120
95 +
96 + # bug 618772
97 + append-cxxflags -std=c++14
98 +
99 + # bug 790359
100 + filter-flags -fexceptions -fthreadsafe-statics
101 +
102 + # bug 762415
103 + local pyscript
104 + for pyscript in $(find -type f -name "*.py") ; do
105 + python_fix_shebang -q "${pyscript}"
106 + done
107 +}
108 +
109 +multilib_src_configure() {
110 + # harfbuzz-gobject only used for instrospection, bug #535852
111 + local emesonargs=(
112 + -Dcoretext="disabled"
113 + -Dchafa="disabled"
114 +
115 + $(meson_feature glib)
116 + $(meson_feature graphite graphite2)
117 + $(meson_feature icu)
118 + $(meson_feature introspection gobject)
119 + $(meson_feature test tests)
120 + $(meson_feature truetype freetype)
121 +
122 + $(meson_native_use_feature cairo)
123 + $(meson_native_use_feature doc docs)
124 + $(meson_native_use_feature introspection)
125 +
126 + $(meson_use experimental experimental_api)
127 + )
128 + meson_src_configure
129 +}