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-misc/rofi-calc/
Date: Tue, 07 Jan 2020 04:08:25
Message-Id: 1578369301.ad76d4caa79d2b23bd258ea18f065e2631c73cf1.juippis@gentoo
1 commit: ad76d4caa79d2b23bd258ea18f065e2631c73cf1
2 Author: Robin Hallabro-Kokko <robin <AT> hallabro <DOT> nu>
3 AuthorDate: Mon Jan 6 13:04:41 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 7 03:55:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad76d4ca
7
8 x11-misc/rofi-calc: new ebuild
9
10 rofi-calc is a rofi (x11-misc/rofi) plugin that uses libqalculate's
11 qalc to parse natural language input and provide results.
12
13 Closes: https://bugs.gentoo.org/704864
14 Package-Manager: Portage-2.3.84, Repoman-2.3.20
15 Signed-off-by: Robin Hallabro-Kokko <robin <AT> hallabro.nu>
16 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
17
18 x11-misc/rofi-calc/Manifest | 1 +
19 x11-misc/rofi-calc/metadata.xml | 12 ++++++++++++
20 x11-misc/rofi-calc/rofi-calc-1.5.ebuild | 26 ++++++++++++++++++++++++++
21 x11-misc/rofi-calc/rofi-calc-9999.ebuild | 27 +++++++++++++++++++++++++++
22 4 files changed, 66 insertions(+)
23
24 diff --git a/x11-misc/rofi-calc/Manifest b/x11-misc/rofi-calc/Manifest
25 new file mode 100644
26 index 00000000000..10d3a9cc37b
27 --- /dev/null
28 +++ b/x11-misc/rofi-calc/Manifest
29 @@ -0,0 +1 @@
30 +DIST rofi-calc-1.5.tar.gz 1693385 BLAKE2B 7ff21873ee298c4295f2766917318796d6327959e63d99adc86857d2e05534e77062c9546ba8c6cf645a12ae46147e4583a61fc95dbc6953ee642449ff108d40 SHA512 04213b6489cd9e3c5085a88cee07ee9413819c19d4ee08f6e2eef3ad418d21b5acaf1d4ef21f1495d81694e5706f93598c91ada65f1bcc83ce94a6cf5d50ea0c
31
32 diff --git a/x11-misc/rofi-calc/metadata.xml b/x11-misc/rofi-calc/metadata.xml
33 new file mode 100644
34 index 00000000000..08400951b2b
35 --- /dev/null
36 +++ b/x11-misc/rofi-calc/metadata.xml
37 @@ -0,0 +1,12 @@
38 +<?xml version="1.0" encoding="UTF-8"?>
39 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
40 +<pkgmetadata>
41 + <maintainer type="person">
42 + <email>robin@××××××××.nu</email>
43 + <name>Robin Hallabro-Kokko</name>
44 + </maintainer>
45 + <maintainer type="project">
46 + <email>proxy-maint@g.o</email>
47 + <name>Proxy Maintainers</name>
48 + </maintainer>
49 +</pkgmetadata>
50
51 diff --git a/x11-misc/rofi-calc/rofi-calc-1.5.ebuild b/x11-misc/rofi-calc/rofi-calc-1.5.ebuild
52 new file mode 100644
53 index 00000000000..a267871cd50
54 --- /dev/null
55 +++ b/x11-misc/rofi-calc/rofi-calc-1.5.ebuild
56 @@ -0,0 +1,26 @@
57 +# Copyright 1999-2020 Gentoo Authors
58 +# Distributed under the terms of the GNU General Public License v2
59 +
60 +EAPI=7
61 +
62 +inherit autotools
63 +
64 +DESCRIPTION="Do live calculations in rofi!"
65 +HOMEPAGE="https://github.com/svenstaro/rofi-calc"
66 +SRC_URI="https://github.com/svenstaro/rofi-calc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
67 +
68 +LICENSE="MIT"
69 +SLOT="0"
70 +KEYWORDS="~amd64 ~x86"
71 +IUSE=""
72 +
73 +DEPEND="
74 + x11-misc/rofi
75 + >=sci-libs/libqalculate-2.0
76 +"
77 +RDEPEND="${DEPEND}"
78 +
79 +src_prepare() {
80 + default
81 + eautoreconf -i
82 +}
83
84 diff --git a/x11-misc/rofi-calc/rofi-calc-9999.ebuild b/x11-misc/rofi-calc/rofi-calc-9999.ebuild
85 new file mode 100644
86 index 00000000000..c70193f7e11
87 --- /dev/null
88 +++ b/x11-misc/rofi-calc/rofi-calc-9999.ebuild
89 @@ -0,0 +1,27 @@
90 +# Copyright 1999-2020 Gentoo Authors
91 +# Distributed under the terms of the GNU General Public License v2
92 +
93 +EAPI=7
94 +
95 +inherit git-r3 autotools
96 +
97 +DESCRIPTION="Do live calculations in rofi!"
98 +HOMEPAGE="https://github.com/svenstaro/rofi-calc"
99 +SRC_URI=""
100 +EGIT_REPO_URI="https://github.com/svenstaro/rofi-calc.git"
101 +
102 +LICENSE="MIT"
103 +SLOT="0"
104 +KEYWORDS=""
105 +IUSE=""
106 +
107 +DEPEND="
108 + x11-misc/rofi
109 + >=sci-libs/libqalculate-2.0
110 +"
111 +RDEPEND="${DEPEND}"
112 +
113 +src_prepare() {
114 + default
115 + eautoreconf -i
116 +}