Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/indicators/
Date: Sun, 30 May 2021 14:47:15
Message-Id: 1622300667.5d12c34512e0721178652f51a5288f729a996e58.andrewammerlaan@gentoo
1 commit: 5d12c34512e0721178652f51a5288f729a996e58
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Fri May 28 17:38:21 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sat May 29 15:04:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5d12c345
7
8 dev-cpp/indicators: initial import
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-cpp/indicators/Manifest | 1 +
13 dev-cpp/indicators/indicators-2.2.ebuild | 23 +++++++++++++++++++++++
14 dev-cpp/indicators/metadata.xml | 12 ++++++++++++
15 3 files changed, 36 insertions(+)
16
17 diff --git a/dev-cpp/indicators/Manifest b/dev-cpp/indicators/Manifest
18 new file mode 100644
19 index 000000000..0982bfae1
20 --- /dev/null
21 +++ b/dev-cpp/indicators/Manifest
22 @@ -0,0 +1 @@
23 +DIST indicators-2.2.tar.gz 8974714 BLAKE2B 538e9d77c7d4f19cc81d4476288ce7f78198a61252885a78e166f39137e8653082d02861cbf2469b08cc3af5f6ed4e76c343ca1d95aec67d35f2dbcde4ba72c2 SHA512 7ced2d3c320d51c7e0569104744730c8e2f952350bcae214a9781eb43ef4002c8314937db78461351741fc4c3aee7a1364582b1274991e95eb30006a5f2a7ef9
24
25 diff --git a/dev-cpp/indicators/indicators-2.2.ebuild b/dev-cpp/indicators/indicators-2.2.ebuild
26 new file mode 100644
27 index 000000000..5d23e2b88
28 --- /dev/null
29 +++ b/dev-cpp/indicators/indicators-2.2.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="Activity indicators for modern C++"
39 +HOMEPAGE="https://github.com/p-ranav/indicators"
40 +SRC_URI="https://github.com/p-ranav/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="examples"
46 +
47 +src_install() {
48 + cmake_src_install
49 + rm -r "${ED}"/usr/share/licenses || die
50 +
51 + docompress -x /usr/share/doc/${PF}/samples
52 + use examples && dodoc -r demo samples
53 +}
54
55 diff --git a/dev-cpp/indicators/metadata.xml b/dev-cpp/indicators/metadata.xml
56 new file mode 100644
57 index 000000000..e4abb6a2f
58 --- /dev/null
59 +++ b/dev-cpp/indicators/metadata.xml
60 @@ -0,0 +1,12 @@
61 +<?xml version="1.0" encoding="UTF-8"?>
62 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
63 +<pkgmetadata>
64 + <upstream>
65 + <remote-id type="github">p-ranav/indicators</remote-id>
66 + <bugs-to>https://github.com/p-ranav/indicators/issues</bugs-to>
67 + </upstream>
68 + <maintainer type="person">
69 + <email>cyber+gentoo@×××××.in</email>
70 + <name>Anna</name>
71 + </maintainer>
72 +</pkgmetadata>