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