From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2372B158094 for ; Mon, 11 Jul 2022 06:54:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 606A3E0B33; Mon, 11 Jul 2022 06:54:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4285BE0B33 for ; Mon, 11 Jul 2022 06:54:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88D223410B1 for ; Mon, 11 Jul 2022 06:54:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFB3B53B for ; Mon, 11 Jul 2022 06:54:46 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1657297749.e31c5ec23306f5c720dff4c79d870239764e52bb.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-dialup/tio/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-dialup/tio/Manifest net-dialup/tio/tio-1.42.ebuild X-VCS-Directories: net-dialup/tio/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: e31c5ec23306f5c720dff4c79d870239764e52bb X-VCS-Branch: master Date: Mon, 11 Jul 2022 06:54:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 22abbe2c-e92c-4665-a69b-1697c559618c X-Archives-Hash: ed4aec60413196fc15fcf7c6f25f977f commit: e31c5ec23306f5c720dff4c79d870239764e52bb Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Fri Jul 8 16:28:03 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Jul 8 16:29:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e31c5ec2 net-dialup/tio: add 1.42 Signed-off-by: Kurt Kanzenbach kmk-computers.de> net-dialup/tio/Manifest | 1 + net-dialup/tio/tio-1.42.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/net-dialup/tio/Manifest b/net-dialup/tio/Manifest index c01042dbe..6540afa48 100644 --- a/net-dialup/tio/Manifest +++ b/net-dialup/tio/Manifest @@ -1 +1,2 @@ DIST tio-1.40.tar.xz 3069480 BLAKE2B 5d5ef6478fa80eecf96599c6c55a77fd8e2b9259fd44fab105ee5f6c6b5494d5656599374f7ffe43741c7925a2bedac4c593ad8695abd6ba9ceca559f9272d4c SHA512 41f92d757fea3099e9974c64736aa75f69961ba5baf7b01cdb281656bcbf6490afe3748ce49c080624b5f4d3493a8398b8d702be0423f2bcbd0f0484bf76fdf6 +DIST tio-1.42.tar.xz 3070588 BLAKE2B 24ab0f72d6927a5c56b7fc73ab763aef208749bd2c5b6d91cfd346c577a7128e5f6d66596b75dff06b3189a9dfacdb53f66f1c7975b9ce6b5b116520e0cf8479 SHA512 83e9681e33962c2aeb3b4a4e80f8ee190ec087451bb570fa3655b12f2d4f2740a281ac177659627f6c5f694f1f78003881d3ec2388f9702e4da3f5999e70976d diff --git a/net-dialup/tio/tio-1.42.ebuild b/net-dialup/tio/tio-1.42.ebuild new file mode 100644 index 000000000..aa1af5f4e --- /dev/null +++ b/net-dialup/tio/tio-1.42.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 +}