Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/graphene/
Date: Sun, 29 Mar 2020 09:20:01
Message-Id: 1585473578.e3a9e46ea049e6de2831fad41c1948c5f9b3e538.leio@gentoo
1 commit: e3a9e46ea049e6de2831fad41c1948c5f9b3e538
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 09:02:13 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 09:19:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3a9e46e
7
8 media-libs/graphene: bump to 1.10.0
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 media-libs/graphene/Manifest | 1 +
14 media-libs/graphene/graphene-1.10.0.ebuild | 56 ++++++++++++++++++++++++++++++
15 2 files changed, 57 insertions(+)
16
17 diff --git a/media-libs/graphene/Manifest b/media-libs/graphene/Manifest
18 index 8b720d563f0..822338fa4ca 100644
19 --- a/media-libs/graphene/Manifest
20 +++ b/media-libs/graphene/Manifest
21 @@ -1 +1,2 @@
22 +DIST graphene-1.10.0.tar.xz 289452 BLAKE2B 41af96ffcdb2d8ad2fce7a242cef74cead09ce444514f85a97ac609c6518c60cbd5fb44b58b24973fe9a372f898ca99b79cfd776c968d53b72fc20c5d076a230 SHA512 842ac2c9c2046f07f8421b99292cac348276bb1e025250c7e0dc3ec7f90cb33094b765034862f325dd78f93aa5484ad75a4ad6139fe13330d9e41e3a7cb830d0
23 DIST graphene-1.8.6.tar.xz 127984 BLAKE2B 7f67b99796cca1a47324674b1871ddfbcce1193ded5f0a37c8c2894d52b6b5823b0fb1909018ea6adb90f7ed53ad6b09eeda9b1606a22a8b85cd0d661d500195 SHA512 ef6e9b5587bd540099216a7e3f7c86eb62368d49876dcd380c9767c6740c8267c9d510c5025dbe56402f3cd15084ef8fc634d3abe486b516f4f5328b87df277c
24
25 diff --git a/media-libs/graphene/graphene-1.10.0.ebuild b/media-libs/graphene/graphene-1.10.0.ebuild
26 new file mode 100644
27 index 00000000000..a780160a97c
28 --- /dev/null
29 +++ b/media-libs/graphene/graphene-1.10.0.ebuild
30 @@ -0,0 +1,56 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{6,7} )
36 +inherit xdg-utils meson multilib-minimal python-any-r1
37 +
38 +DESCRIPTION="A thin layer of types for graphic libraries"
39 +HOMEPAGE="https://ebassi.github.io/graphene/"
40 +SRC_URI="https://github.com/ebassi/graphene/releases/download/${PV}/${P}.tar.xz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="cpu_flags_arm_neon cpu_flags_x86_sse2 doc +introspection test"
46 +RESTRICT="!test? ( test )"
47 +
48 +RDEPEND="
49 + >=dev-libs/glib-2.30.0:2[${MULTILIB_USEDEP}]
50 + introspection? ( dev-libs/gobject-introspection:= )
51 +"
52 +DEPEND="${RDEPEND}"
53 +# Python is only needed with USE=introspection or FEATURES=test, but not bothering with conditional python_setup, as meson uses it too anyway
54 +BDEPEND="
55 + ${PYTHON_DEPS}
56 + doc? ( dev-util/gtk-doc
57 + app-text/docbook-xml-dtd:4.3 )
58 + virtual/pkgconfig
59 +"
60 +
61 +multilib_src_configure() {
62 + # TODO: Do we want G_DISABLE_ASSERT as buildtype=release would do upstream?
63 + local emesonargs=(
64 + -Dgtk_doc=$(multilib_native_usex doc true false)
65 + -Dgobject_types=true
66 + -Dintrospection=$(multilib_native_usex introspection true false)
67 + -Dgcc_vector=true # if built-in support tests fail, it'll just not enable vector intrinsics; unfortunately this probably means disabled on clang too, due to it claiming to be <gcc-4.9
68 + $(meson_use cpu_flags_x86_sse2 sse2)
69 + $(meson_use cpu_flags_arm_neon arm_neon)
70 + $(meson_use test tests)
71 + -Dinstalled_tests=false
72 + )
73 + meson_src_configure
74 +}
75 +
76 +multilib_src_compile() {
77 + meson_src_compile
78 +}
79 +
80 +multilib_src_test() {
81 + meson_src_test
82 +}
83 +
84 +multilib_src_install() {
85 + meson_src_install
86 +}