Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/papirus-icon-theme/
Date: Tue, 01 Nov 2022 18:30:46
Message-Id: 1667327429.ea42e1953f0037a27785ba83f79f44d2c9620275.pacho@gentoo
1 commit: ea42e1953f0037a27785ba83f79f44d2c9620275
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 18:30:29 2022 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 18:30:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea42e195
7
8 x11-themes/papirus-icon-theme: add 20221101
9
10 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
11
12 x11-themes/papirus-icon-theme/Manifest | 1 +
13 .../papirus-icon-theme-20221101.ebuild | 30 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/x11-themes/papirus-icon-theme/Manifest b/x11-themes/papirus-icon-theme/Manifest
17 index 72b72bc221df..73211c2983c2 100644
18 --- a/x11-themes/papirus-icon-theme/Manifest
19 +++ b/x11-themes/papirus-icon-theme/Manifest
20 @@ -1,2 +1,3 @@
21 DIST papirus-icon-theme-20220808.tar.gz 33262401 BLAKE2B b94d6a272613d443bd540e0899829a0d932402e7b2d529e8f6b0785d1e812624dca4e21e04fa7ee94a37a9313e85cdc5398ee42e0c110d74246cc31682dc6897 SHA512 4233ec11fad43901fca346bb3db94ec68466b91740b1a25c3eed5772a2ccef086500443af96373d19b172923f8dd8b6814859fe402d78f44b31ac7d555b598bd
22 DIST papirus-icon-theme-20220910.tar.gz 33346351 BLAKE2B ad490854657471b7b811a01996014fea7364da5ab71f06f226b9f896160a8b475f165a2b4f1766ce7a68ab77628294258bae13bdad5560ab9262546603b47a75 SHA512 0a60e50409438bd25f3081f148761d50f3941da647f14a93bcb7bcd1e104044c65fb7d6758b30ddfe903dd6d17b9b0b044b29b742998c7293c5d6b7745aad7aa
23 +DIST papirus-icon-theme-20221101.tar.gz 33431117 BLAKE2B 8829b50882d1882b2483b95594a301bf2085a5d3043a6e9a9c28dc135a5eeaeb37154b7dab8824cbb77dd9d5017f9fdcc0d719e817cd38d4643f1a05aacb92e9 SHA512 f1266cb5092b14c4f5ba94c2bfc6d53c14e71fe737d4d96661b11af33077d810c3c609524288249d310be5d8f18eb061eb13c53f637636ada70a9ac18493c9b3
24
25 diff --git a/x11-themes/papirus-icon-theme/papirus-icon-theme-20221101.ebuild b/x11-themes/papirus-icon-theme/papirus-icon-theme-20221101.ebuild
26 new file mode 100644
27 index 000000000000..3e2aea8c31f5
28 --- /dev/null
29 +++ b/x11-themes/papirus-icon-theme/papirus-icon-theme-20221101.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +inherit xdg
36 +
37 +DESCRIPTION="Free and open source SVG icon theme"
38 +HOMEPAGE="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme"
39 +SRC_URI="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
44 +
45 +src_prepare() {
46 + default
47 + # https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/issues/3241
48 + cd Papirus/128x128/apps/ || die
49 + ln -s beneath-a-steel-sky.svg bass.svg || die
50 +}
51 +
52 +src_compile() { :; }
53 +
54 +src_install() {
55 + insinto /usr/share/icons
56 + doins -r Papirus{,-Dark,-Light}
57 +
58 + # Install variants designed for elementary OS and Pantheon Desktop only
59 + doins -r ePapirus{,-Dark}
60 +}