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: Thu, 15 Apr 2021 15:36:50
Message-Id: 1618500561.d73468b04028c12ff6440e280c359a54944188df.mattst88@gentoo
1 commit: d73468b04028c12ff6440e280c359a54944188df
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 15 15:29:21 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 15 15:29:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d73468b0
7
8 gnome-base/gnome-desktop: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-base/gnome-desktop/Manifest | 1 -
13 .../gnome-desktop/gnome-desktop-3.38.4.ebuild | 71 ----------------------
14 2 files changed, 72 deletions(-)
15
16 diff --git a/gnome-base/gnome-desktop/Manifest b/gnome-base/gnome-desktop/Manifest
17 index a5dc1dc8674..e4b75e006ea 100644
18 --- a/gnome-base/gnome-desktop/Manifest
19 +++ b/gnome-base/gnome-desktop/Manifest
20 @@ -1,2 +1 @@
21 DIST gnome-desktop-3.38.3.tar.xz 745372 BLAKE2B d5df6d8bead6f65f655c7fbb65ea07937250318ee1fdc3e15c7d74a6e5933389640a06d162079dfce0137db11ceb67b4d86dcff787ecee9dbbbdf750e7aaa252 SHA512 023121316d308d8d69a26bd595657f2d7471da82395c7208cdd642a5e58927d2af05b27b6a0e52eaa10f9fa5a27c1146d5496c042ae3a9cf7e134875d3b2c84f
22 -DIST gnome-desktop-3.38.4.tar.xz 745168 BLAKE2B 1d85b176acb6721fb21bc56eef552629a06b059117cc53a5dde9c2c74ae23f624701efed3849e8e7daf21c1fd7622b747b394b6c63ab974371daec14bfb8d9ce SHA512 546fd2bd25d7582ae6cc6aa2beab4221fd246d16640e7d3f0cf9b700732f67a95c4bcb3211b5cb131f151b25923d59aa1ffa114183b6fcb683ad88cb94790e1e
23
24 diff --git a/gnome-base/gnome-desktop/gnome-desktop-3.38.4.ebuild b/gnome-base/gnome-desktop/gnome-desktop-3.38.4.ebuild
25 deleted file mode 100644
26 index 706a013f6ea..00000000000
27 --- a/gnome-base/gnome-desktop/gnome-desktop-3.38.4.ebuild
28 +++ /dev/null
29 @@ -1,71 +0,0 @@
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 - app-text/iso-codes
51 - systemd? ( sys-apps/systemd:= )
52 - udev? (
53 - sys-apps/hwids
54 - virtual/libudev:= )
55 - seccomp? ( sys-libs/libseccomp )
56 -
57 - x11-libs/cairo:=
58 - introspection? ( >=dev-libs/gobject-introspection-1.54:= )
59 -"
60 -DEPEND="${COMMON_DEPEND}
61 - media-libs/fontconfig
62 -"
63 -RDEPEND="${COMMON_DEPEND}
64 - seccomp? ( sys-apps/bubblewrap )
65 -"
66 -BDEPEND="
67 - app-text/docbook-xml-dtd:4.1.2
68 - dev-util/gdbus-codegen
69 - gtk-doc? ( >=dev-util/gtk-doc-1.14 )
70 - dev-util/itstool
71 - >=sys-devel/gettext-0.19.8
72 - x11-base/xorg-proto
73 - virtual/pkgconfig
74 -"
75 -# Includes X11/Xatom.h in libgnome-desktop/gnome-bg.c which comes from xorg-proto
76 -
77 -PATCHES=(
78 - "${FILESDIR}"/3.32.2-optional-introspection.patch # add introspection meson option
79 -)
80 -
81 -src_prepare() {
82 - # Don't build manual test programs that will never get run
83 - sed -i -e "/'test-.*'/d" libgnome-desktop/meson.build || die
84 - xdg_src_prepare
85 -}
86 -
87 -src_configure() {
88 - local emesonargs=(
89 - -Dgnome_distributor=Gentoo
90 - -Ddate_in_gnome_version=true
91 - -Ddesktop_docs=true
92 - $(meson_use debug debug_tools)
93 - $(meson_use introspection)
94 - $(meson_feature udev)
95 - $(meson_feature systemd)
96 - $(meson_use gtk-doc gtk_doc)
97 - -Dinstalled_tests=false
98 - )
99 - meson_src_configure
100 -}