From 06aa9bbd198f98c6907bfbc083130589891b4759 Mon Sep 17 00:00:00 2001 From: Kurt Kanzenbach Date: Wed, 27 Jul 2022 19:02:55 +0200 Subject: [PATCH] net-dialup/tio: add 1.47 Signed-off-by: Kurt Kanzenbach --- net-dialup/tio/Manifest | 1 + net-dialup/tio/tio-1.47.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 net-dialup/tio/tio-1.47.ebuild diff --git a/net-dialup/tio/Manifest b/net-dialup/tio/Manifest index 1540748622..b3e2ac22d8 100644 --- a/net-dialup/tio/Manifest +++ b/net-dialup/tio/Manifest @@ -1 +1,2 @@ DIST tio-1.44.tar.xz 3402220 BLAKE2B e1d0064291587d3c42e8000f0af568c040189e4d3292dfc078b3a8b6caeed16896f4511bb28faaeefeead8b2ae25d9a218fa1953d64181e016879580b95e0c75 SHA512 d4ce4e4dee221a06e8627ac09ff139f81668808ed9ab60bb77b95c7d68b92577aafd3fa7317f34a0386b8d95364fe9198c8d46f7d449e0ee2844fcbdb1b285fa +DIST tio-1.47.tar.xz 3411172 BLAKE2B b98e50739688fd96ec1b3ec0d58c4c609819c1f7ec56b2ed0ebf2517909070e390f4f69ae344609a4e2e2b6ea61026507bc9fbde4b10b977d5bbe7d4452d4adf SHA512 0fe95f950ab07ff19d7f70bab8ae6474eb0e2e7b6d22dec529450a7c5f02ca746253bee55c35e63b36509c01403c4b92e383b2544959b086e7ce12bb589449ef diff --git a/net-dialup/tio/tio-1.47.ebuild b/net-dialup/tio/tio-1.47.ebuild new file mode 100644 index 0000000000..aa1af5f4e3 --- /dev/null +++ b/net-dialup/tio/tio-1.47.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson bash-completion-r1 + +DESCRIPTION="Simple TTY terminal application" +HOMEPAGE="https://tio.github.io/" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz" + +SLOT="0" +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + dev-libs/inih +" +DEPEND=" + ${RDEPEND} +" + +src_configure() { + local emesonargs=( + -Dbashcompletiondir="$(get_bashcompdir)" + ) + + meson_src_configure +}