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