Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-themes/obsidian-icon-theme/
Date: Tue, 06 Oct 2020 09:10:34
Message-Id: 1601904335.9580169f8577d3f13d7d4fbd8bd2e2ca37b1f3c0.andrewammerlaan@gentoo
1 commit: 9580169f8577d3f13d7d4fbd8bd2e2ca37b1f3c0
2 Author: Huang Rui <vowstar <AT> gmail <DOT> com>
3 AuthorDate: Mon Oct 5 13:25:35 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Mon Oct 5 13:25:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9580169f
7
8 x11-themes/obsidian-icon-theme: bump to 4.13
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Huang Rui <vowstar <AT> gmail.com>
12
13 x11-themes/obsidian-icon-theme/Manifest | 1 +
14 .../obsidian-icon-theme-4.13.ebuild | 40 ++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/x11-themes/obsidian-icon-theme/Manifest b/x11-themes/obsidian-icon-theme/Manifest
18 index d191a2cb..61370e60 100644
19 --- a/x11-themes/obsidian-icon-theme/Manifest
20 +++ b/x11-themes/obsidian-icon-theme/Manifest
21 @@ -1 +1,2 @@
22 DIST obsidian-icon-theme-4.12.tar.gz 70303616 BLAKE2B e10370c09364d3d2784fa55811189f2ef3969ee1e633bea213461f5d4387ea26a9978c2b7956d02ed472e849a45a16e4346f81b6c65de2a9e1a860d82baffb7c SHA512 b041e688cbd1a247c81251f58494f701ded5cf5adaebb9f76383330fbc8a82d9a50ca67497c4743f6e95739c995c447913e9384a8dde1a72fb39ee20aa355b8a
23 +DIST obsidian-icon-theme-4.13.tar.gz 70927780 BLAKE2B 001c40ae73d5e31b85343257d383f086072c72ac6d2452070361ca8853ae60f48ab3b853020519247052f9a22d18ec8c008d46dd67b3c4a2b24b14462644e644 SHA512 fecd0cbb921fef630dafe151ab8d7fa551dbd22e77e65cf602f97765fdb701739e812cabc664de3a0f2283938666b93af07090ea658dc41b6424495d423beeed
24
25 diff --git a/x11-themes/obsidian-icon-theme/obsidian-icon-theme-4.13.ebuild b/x11-themes/obsidian-icon-theme/obsidian-icon-theme-4.13.ebuild
26 new file mode 100644
27 index 00000000..63e6ecff
28 --- /dev/null
29 +++ b/x11-themes/obsidian-icon-theme/obsidian-icon-theme-4.13.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +
36 +GIT_PN="iconpack-obsidian"
37 +
38 +inherit xdg
39 +
40 +DESCRIPTION="Obsidian Icon Theme is intuitive Faenza-like icon theme"
41 +
42 +HOMEPAGE="https://github.com/madmaxms/iconpack-obsidian"
43 +
44 +if [[ "${PV}" == "9999" ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://github.com/madmaxms/${GIT_PN}.git"
47 +else
48 + SRC_URI="https://github.com/madmaxms/${GIT_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
50 + S="${WORKDIR}/${GIT_PN}-${PV}"
51 +fi
52 +
53 +LICENSE="GPL-3"
54 +SLOT="0"
55 +
56 +RDEPEND="
57 + x11-themes/adwaita-icon-theme
58 +"
59 +
60 +DEPEND="${RDEPEND}"
61 +
62 +DOCS=( README.md )
63 +
64 +src_install() {
65 + # Remove dead links to fix symbolic link does not exist QA.
66 + find . -xtype l -exec rm {} + || die
67 + # Install the icons
68 + insinto /usr/share/icons
69 + doins -r Obsidian*
70 +}