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: Sat, 04 Jun 2022 11:50:12
Message-Id: 1654343227.48ebdf539be5c7e3181d4b3d1be44afd6a472897.KurtKanzenbach@gentoo
1 commit: 48ebdf539be5c7e3181d4b3d1be44afd6a472897
2 Author: Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
3 AuthorDate: Sat Jun 4 11:47:07 2022 +0000
4 Commit: Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
5 CommitDate: Sat Jun 4 11:47:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=48ebdf53
7
8 net-dialup/tio: add 1.38
9
10 Signed-off-by: Kurt Kanzenbach <kurt <AT> kmk-computers.de>
11
12 net-dialup/tio/Manifest | 1 +
13 net-dialup/tio/tio-1.38.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/net-dialup/tio/Manifest b/net-dialup/tio/Manifest
17 index 676a3b16a..ef23af762 100644
18 --- a/net-dialup/tio/Manifest
19 +++ b/net-dialup/tio/Manifest
20 @@ -1 +1,2 @@
21 DIST tio-1.37.tar.xz 1804236 BLAKE2B 320ab5955c80551198b24ae9f166a0d41790557755d4cc44149d0aeaabb5a75dfc3e5d29c009b5b985a6788226b63756e4e7588dbb7f658f4b8a8ce99b270bf6 SHA512 207184d297809c7f88185353b55519cf119eed26b5710b644418ef0603d003618c69e593a0f531822c0455a512397cea1b4747a453af5bbb369dad14025b0847
22 +DIST tio-1.38.tar.xz 1806556 BLAKE2B e8a02e4349b4b4ea27887031fdcce79bd99914b85710a005b1dc5328aea98ec175e6991920d85df7c9acf9c0557dfc3c31005c19c62ca7d28ac7bba08896753f SHA512 d702c907460abd3c15d051f185592d5ec9245734016e299960a4a102724e28208bb21b71cb3cba7919cd2197f338470297034401c7978bcd207195b548e8a2b9
23
24 diff --git a/net-dialup/tio/tio-1.38.ebuild b/net-dialup/tio/tio-1.38.ebuild
25 new file mode 100644
26 index 000000000..aa1af5f4e
27 --- /dev/null
28 +++ b/net-dialup/tio/tio-1.38.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 +}