Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdazzle/
Date: Mon, 23 Dec 2019 21:26:59
Message-Id: 1577136343.78d8c6c4599f9c55075547902984080c420fbd42.leio@gentoo
1 commit: 78d8c6c4599f9c55075547902984080c420fbd42
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 23 21:06:23 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 23 21:25:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78d8c6c4
7
8 dev-libs/libdazzle: remove old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 dev-libs/libdazzle/Manifest | 1 -
14 dev-libs/libdazzle/libdazzle-3.30.2.ebuild | 58 ------------------------------
15 2 files changed, 59 deletions(-)
16
17 diff --git a/dev-libs/libdazzle/Manifest b/dev-libs/libdazzle/Manifest
18 index 5ac528fa74b..4f52308191e 100644
19 --- a/dev-libs/libdazzle/Manifest
20 +++ b/dev-libs/libdazzle/Manifest
21 @@ -1,2 +1 @@
22 -DIST libdazzle-3.30.2.tar.xz 432192 BLAKE2B 4c31b74b0a5c972b5c86bbacf50862a0c2db5c9ed1e67124671e2ece75d72de4c3605c6ecc81bde10cf2566ae06cbd7f14fccaff5d154c1bd9e53a9f8b2dc2eb SHA512 591c3bb9dd65ae02e6234a1599497dce78d843ee6ca47e8d50656b9f98bab91c7b89424c23eb387184bdb28132e1fbe11ee7c01d4a7f0598bcef92739aa8bff6
23 DIST libdazzle-3.32.3.tar.xz 439492 BLAKE2B 7a8cf5a4ad29ca11b489553785e66d49a2ba7998f6791bb392ca37740441ff0e72f59ced192dc681ab20da79cb9183621a7d73baf57c9f045ae917fc993d1205 SHA512 e82d5f04706ec2003db27ece490255264828334d1e1c2076485660539664fd382c1289b9d8d4a6cc2dc31c65db270207e7d51105ffd1cadb7c384cd91199ceaa
24
25 diff --git a/dev-libs/libdazzle/libdazzle-3.30.2.ebuild b/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
26 deleted file mode 100644
27 index 3fd594c2511..00000000000
28 --- a/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
29 +++ /dev/null
30 @@ -1,58 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit gnome.org meson xdg vala virtualx
37 -
38 -DESCRIPTION="Experimental new features for GTK+ and GLib"
39 -HOMEPAGE="https://gitlab.gnome.org/GNOME/libdazzle"
40 -
41 -LICENSE="GPL-3+"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
44 -
45 -IUSE="gtk-doc +introspection test vala"
46 -REQUIRED_USE="vala? ( introspection )"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - >=dev-libs/glib-2.56.0:2
51 - >=x11-libs/gtk+-3.24.0:3[introspection?]
52 - introspection? ( dev-libs/gobject-introspection:= )
53 -"
54 -# libxml2 required for glib-compile-resources; glib-utils for glib-mkenums
55 -DEPEND="${RDEPEND}
56 - vala? ( $(vala_depend) )
57 - dev-libs/libxml2:2
58 - dev-util/glib-utils
59 - virtual/pkgconfig
60 - gtk-doc? ( dev-util/gtk-doc )
61 -"
62 -
63 -PATCHES=(
64 - "${FILESDIR}"/${PV}-leak-fix.patch # from libdazzle-3-30 branch
65 -)
66 -
67 -src_prepare() {
68 - use vala && vala_src_prepare
69 - xdg_src_prepare
70 -}
71 -
72 -src_configure() {
73 - local emesonargs=(
74 - -Denable_tracing=false # extra trace debugging that would make things slower
75 - -Denable_profiling=false # -pg passing
76 - # -Denable_rdtscp=false # TODO: CPU_FLAGS_X86 for it?
77 - -Denable_tools=true # /usr/bin/dazzle-list-counters
78 - $(meson_use introspection with_introspection)
79 - $(meson_use vala with_vapi)
80 - $(meson_use gtk-doc enable_gtk_doc)
81 - $(meson_use test enable_tests)
82 - )
83 - meson_src_configure
84 -}
85 -
86 -src_test() {
87 - virtx meson_src_test
88 -}