Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-light/
Date: Sun, 29 Mar 2020 17:56:16
Message-Id: 1585504554.bfd9df8625386c649a00e6cd8f6e7a26df81dcf3.leio@gentoo
1 commit: bfd9df8625386c649a00e6cd8f6e7a26df81dcf3
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 17:22:25 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 17:55:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfd9df86
7
8 gnome-base/gnome-light: bump to 3.34.4
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-base/gnome-light/gnome-light-3.34.4.ebuild | 64 ++++++++++++++++++++++++
14 1 file changed, 64 insertions(+)
15
16 diff --git a/gnome-base/gnome-light/gnome-light-3.34.4.ebuild b/gnome-base/gnome-light/gnome-light-3.34.4.ebuild
17 new file mode 100644
18 index 00000000000..ccfad03686e
19 --- /dev/null
20 +++ b/gnome-base/gnome-light/gnome-light-3.34.4.ebuild
21 @@ -0,0 +1,64 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +P_RELEASE="$(ver_cut 1-2)"
28 +
29 +DESCRIPTION="Meta package for GNOME-Light, merge this package to install"
30 +HOMEPAGE="https://www.gnome.org/"
31 +LICENSE="metapackage"
32 +SLOT="2.0"
33 +IUSE="cups +gnome-shell"
34 +
35 +# when unmasking for an arch
36 +# double check none of the deps are still masked !
37 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
38 +
39 +# XXX: Note to developers:
40 +# This is a wrapper for the 'light' GNOME 3 desktop, and should only consist of
41 +# the bare minimum of libs/apps needed. It is basically gnome-base/gnome without
42 +# any apps, but shouldn't be used by users unless they know what they are doing.
43 +# cantarell minimum version is ensured here as gnome-shell depends on it.
44 +RDEPEND="
45 + >=gnome-base/gnome-core-libs-${PV}[cups?]
46 +
47 + >=gnome-base/gnome-session-3.34.2
48 + >=gnome-base/gnome-settings-daemon-3.34.2[cups?]
49 + >=gnome-base/gnome-control-center-${PV}[cups?]
50 +
51 + >=gnome-base/nautilus-3.34.2
52 +
53 + gnome-shell? (
54 + >=x11-wm/mutter-${PV}
55 + >=dev-libs/gjs-1.58.5
56 + >=gnome-base/gnome-shell-${PV}
57 + >=media-fonts/cantarell-0.111 )
58 +
59 + >=x11-themes/adwaita-icon-theme-3.32.0
60 + >=x11-themes/gnome-themes-standard-3.28
61 + >=x11-themes/gnome-backgrounds-${P_RELEASE}
62 +
63 + >=x11-terms/gnome-terminal-3.34.2
64 +"
65 +# adwaita-icon-theme kept back on purpose due to brokenness without rust librsvg,
66 +# in the hope that the old icon package version is good enough for everything too
67 +# until librsvg gets updated. This dep should be raised to 3.34 with 3.34.5 meta.
68 +DEPEND=""
69 +PDEPEND=">=gnome-base/gvfs-1.42.2"
70 +BDEPEND=""
71 +S="${WORKDIR}"
72 +
73 +pkg_pretend() {
74 + if ! use gnome-shell; then
75 + # Users probably want to use gnome-flashback, e16, sawfish, etc
76 + ewarn "You're not installing GNOME Shell"
77 + ewarn "You will have to install and manage a window manager by yourself"
78 + fi
79 +}
80 +
81 +pkg_postinst() {
82 + # Remember people where to find our project information
83 + elog "Please remember to look at https://wiki.gentoo.org/wiki/Project:GNOME"
84 + elog "for information about the project and documentation."
85 +}