Gentoo Archives: gentoo-commits

From: Kurt Kanzenbach <kurt@×××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-dialup/tio/
Date: Sun, 06 Nov 2022 12:58:22
Message-Id: 1667739348.9a021267a101f6adc94c38f818147bd015757f18.KurtKanzenbach@gentoo
1 commit: 9a021267a101f6adc94c38f818147bd015757f18
2 Author: Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
3 AuthorDate: Sun Nov 6 12:55:48 2022 +0000
4 Commit: Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
5 CommitDate: Sun Nov 6 12:55:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9a021267
7
8 net-dialup/tio: add 2.3
9
10 Signed-off-by: Kurt Kanzenbach <kurt <AT> kmk-computers.de>
11
12 net-dialup/tio/Manifest | 1 +
13 net-dialup/tio/tio-2.3.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/net-dialup/tio/Manifest b/net-dialup/tio/Manifest
17 index 65507f9d9..458a9241c 100644
18 --- a/net-dialup/tio/Manifest
19 +++ b/net-dialup/tio/Manifest
20 @@ -1 +1,2 @@
21 DIST tio-2.2.tar.xz 3416172 BLAKE2B f41d8b99f770142abd471ccc98669915a9b7dbe5b98fafa84d90b1bab0fec311b1b7eb03c12d184ea83dddf28af37c91f4193ab866497b9c87c22d241feb26a5 SHA512 74f6147b219fbee498e48bec1e66755dd0ebc0506ca7bf7853eed48eabdef10cb75733dc1e4c53ce5391f4dbdae7c2b788848c25c8b428296479b748f44e54fd
22 +DIST tio-2.3.tar.xz 3416720 BLAKE2B cecca8b4c9bab7e6ece0f98e39069e70547ddba82e758a1f02f4aeb8d4310e8f3a9af1f4a968fe54929cd09d4c93bce3a3ac530f81e740d75666973b481d6794 SHA512 0f8a825c5c57bb2bc9ca83f45ee92c7d70c3c74d3684a485cde46cd9e5bb4009526d780cc78fa92e8fbd3b7a6332f1e72609e1b4f06eeb8c7b52a1d4cc177610
23
24 diff --git a/net-dialup/tio/tio-2.3.ebuild b/net-dialup/tio/tio-2.3.ebuild
25 new file mode 100644
26 index 000000000..aa1af5f4e
27 --- /dev/null
28 +++ b/net-dialup/tio/tio-2.3.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit meson bash-completion-r1
36 +
37 +DESCRIPTION="Simple TTY terminal application"
38 +HOMEPAGE="https://tio.github.io/"
39 +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz"
40 +
41 +SLOT="0"
42 +LICENSE="GPL-2+"
43 +KEYWORDS="~amd64 ~arm64 ~x86"
44 +
45 +RDEPEND="
46 + dev-libs/inih
47 +"
48 +DEPEND="
49 + ${RDEPEND}
50 +"
51 +
52 +src_configure() {
53 + local emesonargs=(
54 + -Dbashcompletiondir="$(get_bashcompdir)"
55 + )
56 +
57 + meson_src_configure
58 +}