Gentoo Archives: gentoo-commits

From: "Martin Matouš" <m@××××××.dev>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: x11-themes/neonly-cursor/
Date: Sun, 03 Apr 2022 00:13:57
Message-Id: 1648944757.6bec5c2f8a78f2c79dca2400c9dc7970dab8b6ba.martinmatous@gentoo
1 commit: 6bec5c2f8a78f2c79dca2400c9dc7970dab8b6ba
2 Author: Martin Matous <m <AT> matous <DOT> dev>
3 AuthorDate: Sun Apr 3 00:10:11 2022 +0000
4 Commit: Martin Matouš <m <AT> matous <DOT> dev>
5 CommitDate: Sun Apr 3 00:12:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6bec5c2f
7
8 x11-themes/neonly-cursor: new package
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Martin Matouš <m <AT> matous.dev>
12
13 x11-themes/neonly-cursor/Manifest | 1 +
14 x11-themes/neonly-cursor/metadata.xml | 12 +++++++++++
15 .../neonly-cursor/neonly-cursor-1.0.0.ebuild | 24 ++++++++++++++++++++++
16 3 files changed, 37 insertions(+)
17
18 diff --git a/x11-themes/neonly-cursor/Manifest b/x11-themes/neonly-cursor/Manifest
19 new file mode 100644
20 index 000000000..543b3bdbd
21 --- /dev/null
22 +++ b/x11-themes/neonly-cursor/Manifest
23 @@ -0,0 +1 @@
24 +DIST neonly-cursor-1.0.0.tar.gz 1023663 BLAKE2B d0b1df6777f1181c8523469b518318415fa5f093b32a288bdf12f6643860062d8202ec4d715a01fe2766827f5c1a504be17148bc6dca2ae6c438be53e463d686 SHA512 4178c29e80af0a7aacfb6c4026fd9a832f4c28722bb0d9e5106dd2acfe09a3fb2e126f1c2f4c5558dcd6f677b5d16782d5317809afcf2bffd3a6c00a00c25afa
25
26 diff --git a/x11-themes/neonly-cursor/metadata.xml b/x11-themes/neonly-cursor/metadata.xml
27 new file mode 100644
28 index 000000000..6d7c34cf0
29 --- /dev/null
30 +++ b/x11-themes/neonly-cursor/metadata.xml
31 @@ -0,0 +1,12 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>m@××××××.dev</email>
37 + <name>Martin Matouš</name>
38 + </maintainer>
39 + <upstream>
40 + <bugs-to>https://github.com/alvatip/Neonly/issues</bugs-to>
41 + <remote-id type="github">alvatip/Neonly</remote-id>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/x11-themes/neonly-cursor/neonly-cursor-1.0.0.ebuild b/x11-themes/neonly-cursor/neonly-cursor-1.0.0.ebuild
46 new file mode 100644
47 index 000000000..f323dd70f
48 --- /dev/null
49 +++ b/x11-themes/neonly-cursor/neonly-cursor-1.0.0.ebuild
50 @@ -0,0 +1,24 @@
51 +# Copyright 1999-2022 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=8
55 +
56 +inherit xdg
57 +
58 +MY_PV="v$(ver_cut 1-2)"
59 +
60 +DESCRIPTION="Cursor theme using a custom color palette inspired by boreal colors"
61 +HOMEPAGE="https://github.com/alvatip/Neonly"
62 +SRC_URI="https://github.com/alvatip/Neonly/releases/download/${MY_PV}/Neonly.tar.gz -> ${P}.tar.gz"
63 +LICENSE="GPL-3"
64 +
65 +KEYWORDS="~amd64"
66 +SLOT="0"
67 +RESTRICT="mirror"
68 +
69 +S="${WORKDIR}"
70 +
71 +src_install() {
72 + insinto "/usr/share/icons/${PN}"
73 + doins -r cursors index.theme
74 +}