Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-desktop/
Date: Wed, 09 Jun 2021 22:44:52
Message-Id: 1623278680.bbdbbebfa74f13880d773e2091c834ffb5380f83.mattst88@gentoo
1 commit: bbdbbebfa74f13880d773e2091c834ffb5380f83
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 9 22:34:13 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 9 22:44:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbdbbebf
7
8 gnome-base/gnome-desktop: Version bump to 40.2
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-base/gnome-desktop/Manifest | 1 +
13 gnome-base/gnome-desktop/gnome-desktop-40.2.ebuild | 72 ++++++++++++++++++++++
14 2 files changed, 73 insertions(+)
15
16 diff --git a/gnome-base/gnome-desktop/Manifest b/gnome-base/gnome-desktop/Manifest
17 index d63b6df7d17..2a0f45ca462 100644
18 --- a/gnome-base/gnome-desktop/Manifest
19 +++ b/gnome-base/gnome-desktop/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-desktop-40.1.tar.xz 721416 BLAKE2B de1432a9ee61fa0545ce09c1228a133555d732ea58b9550a1f218726342d4c4e1c9d30f402b62a6a370cd281302c47f820f8bccbd69f8b8651f77e4b0e8d4f66 SHA512 ff9da5d0c805a7d42339a9174b907dd0cc4845c8eeb5a004a13f001dbe449f28a6360ed9dc1951376be4a48271908990052ca0e8d6e4339214cafcb80d204b57
22 +DIST gnome-desktop-40.2.tar.xz 721852 BLAKE2B a7258d0465b17c5c9c78a066acd72571c002054f196d847e07b10055b1d72900d6efc80ac623f118ff11a87a4d5042ac9902f7f3f9d5a181ad3d80429cf9f904 SHA512 2fd3ba5eb0263aecc43978d84070619c16af4de998b344bc2aaac16aa0e734d93235aa218c2684ad993b471136434b97dffae52f183798daaa4ec47574cc51b3
23
24 diff --git a/gnome-base/gnome-desktop/gnome-desktop-40.2.ebuild b/gnome-base/gnome-desktop/gnome-desktop-40.2.ebuild
25 new file mode 100644
26 index 00000000000..b42b6b81c1b
27 --- /dev/null
28 +++ b/gnome-base/gnome-desktop/gnome-desktop-40.2.ebuild
29 @@ -0,0 +1,72 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +inherit gnome.org gnome2-utils meson xdg
35 +
36 +DESCRIPTION="Library with common API for various GNOME modules"
37 +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-desktop/"
38 +
39 +LICENSE="GPL-2+ LGPL-2+ FDL-1.1+"
40 +SLOT="3/19" # subslot = libgnome-desktop-3 soname version
41 +IUSE="debug gtk-doc +introspection seccomp systemd udev"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
43 +
44 +COMMON_DEPEND="
45 + >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?]
46 + >=x11-libs/gtk+-3.3.6:3[X,introspection?]
47 + >=dev-libs/glib-2.53.0:2
48 + >=gnome-base/gsettings-desktop-schemas-3.27.0[introspection?]
49 + x11-misc/xkeyboard-config
50 + x11-libs/libxkbcommon
51 + app-text/iso-codes
52 + systemd? ( sys-apps/systemd:= )
53 + udev? (
54 + sys-apps/hwids
55 + virtual/libudev:= )
56 + seccomp? ( sys-libs/libseccomp )
57 +
58 + x11-libs/cairo:=
59 + introspection? ( >=dev-libs/gobject-introspection-1.54:= )
60 +"
61 +DEPEND="${COMMON_DEPEND}
62 + media-libs/fontconfig
63 +"
64 +RDEPEND="${COMMON_DEPEND}
65 + seccomp? ( sys-apps/bubblewrap )
66 +"
67 +BDEPEND="
68 + app-text/docbook-xml-dtd:4.1.2
69 + dev-util/gdbus-codegen
70 + gtk-doc? ( >=dev-util/gtk-doc-1.14 )
71 + dev-util/itstool
72 + >=sys-devel/gettext-0.19.8
73 + x11-base/xorg-proto
74 + virtual/pkgconfig
75 +"
76 +# Includes X11/Xatom.h in libgnome-desktop/gnome-bg.c which comes from xorg-proto
77 +
78 +PATCHES=(
79 + "${FILESDIR}"/3.32.2-optional-introspection.patch # add introspection meson option
80 +)
81 +
82 +src_prepare() {
83 + # Don't build manual test programs that will never get run
84 + sed -i -e "/'test-.*'/d" libgnome-desktop/meson.build || die
85 + xdg_src_prepare
86 +}
87 +
88 +src_configure() {
89 + local emesonargs=(
90 + -Dgnome_distributor=Gentoo
91 + -Ddate_in_gnome_version=true
92 + -Ddesktop_docs=true
93 + $(meson_use debug debug_tools)
94 + $(meson_use introspection)
95 + $(meson_feature udev)
96 + $(meson_feature systemd)
97 + $(meson_use gtk-doc gtk_doc)
98 + -Dinstalled_tests=false
99 + )
100 + meson_src_configure
101 +}