Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/gnome-colors-common/
Date: Sun, 18 Jul 2021 04:02:31
Message-Id: 1626580937.505fd180e97562c9b68495ad0a6bd24d44e233cf.sam@gentoo
1 commit: 505fd180e97562c9b68495ad0a6bd24d44e233cf
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 18 04:01:39 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 18 04:02:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=505fd180
7
8 x11-themes/gnome-colors-common: update EAPI 6 -> 7
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 .../gnome-colors-common-5.5.1-r1.ebuild | 25 +++++++++-------------
13 1 file changed, 10 insertions(+), 15 deletions(-)
14
15 diff --git a/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1-r1.ebuild b/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1-r1.ebuild
16 index 6d9348d2499..2370f83c992 100644
17 --- a/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1-r1.ebuild
18 +++ b/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1-r1.ebuild
19 @@ -1,15 +1,15 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI=7
26 +
27 inherit gnome2-utils
28
29 DESCRIPTION="Colorized icons shared between all gnome-colors iconsets"
30 HOMEPAGE="https://code.google.com/p/gnome-colors/"
31 -
32 SRC_URI="https://gnome-colors.googlecode.com/files/gnome-colors-${PV}.tar.gz
33 - branding? ( https://www.mail-archive.com/tango-artists@×××××××××××××××××.org/msg00043/tango-gentoo-v1.1.tar.gz )
34 -"
35 + branding? ( https://www.mail-archive.com/tango-artists@×××××××××××××××××.org/msg00043/tango-gentoo-v1.1.tar.gz )"
36 +S="${WORKDIR}"
37
38 LICENSE="
39 GPL-2
40 @@ -20,33 +20,28 @@ KEYWORDS="amd64 x86"
41 IUSE="+branding"
42
43 RDEPEND="x11-themes/adwaita-icon-theme"
44 -DEPEND=""
45 RESTRICT="binchecks strip"
46
47 -S="${WORKDIR}"
48 -
49 src_prepare() {
50 default
51 +
52 if use branding; then
53 for i in 16 22 24 32 ; do
54 cp tango-gentoo-v1.1/${i}x${i}/gentoo.png \
55 - gnome-colors-common/${i}x${i}/places/start-here.png \
56 + gnome-colors-common/${i}x${i}/places/start-here.png \
57 || die "Copying gentoo logos failed"
58 done
59 +
60 cp tango-gentoo-v1.1/scalable/gentoo.svg \
61 - gnome-colors-common/scalable/places/start-here.svg \
62 + gnome-colors-common/scalable/places/start-here.svg \
63 || die "Copying scalable logo failed"
64 fi
65 }
66
67 -src_compile() {
68 - einfo "Nothing to compile"
69 -}
70 -
71 src_install() {
72 - dodir /usr/share/icons
73 insinto /usr/share/icons
74 doins -r "${WORKDIR}/${PN}"
75 +
76 einstalldocs
77 }