Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/e-flat-theme/
Date: Mon, 30 Dec 2019 11:54:46
Message-Id: 1577706828.6b85e5ba5ffb4561bc28f506edbc1782b03e6246.juippis@gentoo
1 commit: 6b85e5ba5ffb4561bc28f506edbc1782b03e6246
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 30 08:14:39 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 30 11:53:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b85e5ba
7
8 x11-themes/e-flat-theme: bump to 2019.12.30 snapshot
9
10 - naming scheme changed, from now on updating won't require manually
11 changing theme.
12
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 x11-themes/e-flat-theme/Manifest | 1 +
16 .../e-flat-theme/e-flat-theme-0_pre20191230.ebuild | 37 ++++++++++++++++++++++
17 2 files changed, 38 insertions(+)
18
19 diff --git a/x11-themes/e-flat-theme/Manifest b/x11-themes/e-flat-theme/Manifest
20 index 1f04151e0d9..876d4c54d3d 100644
21 --- a/x11-themes/e-flat-theme/Manifest
22 +++ b/x11-themes/e-flat-theme/Manifest
23 @@ -1 +1,2 @@
24 DIST e-flat-theme-0_pre20191220.edj 44123473 BLAKE2B f0c0f1aa127c228c174bf72ed6f126f5ec0562b7a3d3866140d08256afda68d9395efd0a6db62ddd8a7b7d97012f7e602485692c4e33be68f23bf1f0e3038e7e SHA512 a4b60d70efa2d2ee59aa1cf130e13855687af8a1f9689d905a547ca06b9d2d6c15068a267553d568f18cbfe77a5685b889a1c7b8afe3b97a8d8771c29502e681
25 +DIST e-flat-theme-0_pre20191230.edj 44142224 BLAKE2B 95d7431720f5b0ae3b2c1c96fd83264a02c5ee6758116ea44b0ae8260e79c73c06ad0d9461647f80b45caae6098b49b9152ac5a4f6fb7cf6f17119ed21ba7699 SHA512 6dfb1e1f6faaab7071829994c2ca82f68ff09a2a4c76a14311f55fe3238cb69c4563647c0434d880407e3d5eabbff3395591b3e3eeee8ac890a30bcfe281335b
26
27 diff --git a/x11-themes/e-flat-theme/e-flat-theme-0_pre20191230.ebuild b/x11-themes/e-flat-theme/e-flat-theme-0_pre20191230.ebuild
28 new file mode 100644
29 index 00000000000..3c25a459c4b
30 --- /dev/null
31 +++ b/x11-themes/e-flat-theme/e-flat-theme-0_pre20191230.ebuild
32 @@ -0,0 +1,37 @@
33 +# Copyright 2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DESCRIPTION="A modern, flat theme for Enlightenment WM"
39 +HOMEPAGE="https://www.enlightenment.org/ https://phab.enlightenment.org/T6726"
40 +SRC_URI="https://dev.gentoo.org/~juippis/distfiles/${P}.edj"
41 +
42 +LICENSE="LGPL-2.1"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~x86"
45 +IUSE=""
46 +
47 +DEPEND=""
48 +RDEPEND="x11-wm/enlightenment"
49 +
50 +S="${WORKDIR}"
51 +
52 +src_prepare() {
53 + default
54 +
55 + # doins doesn't allow installing straight from DISTDIR.
56 + cp "${DISTDIR}"/${P}.edj . || die "Failed to prepare theme file."
57 +}
58 +
59 +src_configure() { :; }
60 +src_compile() { :; }
61 +
62 +src_install() {
63 + insinto /usr/share/elementary/themes/
64 + newins ${P}.edj flat-0.edj
65 +}
66 +
67 +pkg_postinst() {
68 + elog "You'll find e-flat-theme under System themes in theme selector."
69 +}