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 D011A15810F for ; Sun, 11 Jun 2023 11:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1089BE090E; Sun, 11 Jun 2023 11:47:31 +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 EDF30E090E for ; Sun, 11 Jun 2023 11:47:30 +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 3F2C73412BD for ; Sun, 11 Jun 2023 11:47:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2313A9D for ; Sun, 11 Jun 2023 11:47:26 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1686474671.6ed82a57c9d4484fd55be3991bd9b31b57ec19e5.ceamac@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-2.6.ebuild X-VCS-Directories: net-dialup/tio/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 6ed82a57c9d4484fd55be3991bd9b31b57ec19e5 X-VCS-Branch: master Date: Sun, 11 Jun 2023 11:47:26 +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: 46ba785a-cbbf-4cd9-b39f-a2cef713dffd X-Archives-Hash: 049513b644b081a53445365270962607 commit: 6ed82a57c9d4484fd55be3991bd9b31b57ec19e5 Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Sun Jun 11 09:11:11 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sun Jun 11 09:11:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6ed82a57 net-dialup/tio: add 2.6 Signed-off-by: Kurt Kanzenbach kmk-computers.de> net-dialup/tio/Manifest | 1 + net-dialup/tio/tio-2.6.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/net-dialup/tio/Manifest b/net-dialup/tio/Manifest index 32a4ce46e..5231b62a8 100644 --- a/net-dialup/tio/Manifest +++ b/net-dialup/tio/Manifest @@ -1 +1,2 @@ DIST tio-2.5.tar.xz 3418016 BLAKE2B c89765e568122657ee6da1b7a7cc5cfecd4cb44dd1072b79eab1170eba8ff9de5a4797beef122a69e1df46d733ff96973a3ccc0a84b74111e8d528ec50c95d0d SHA512 874fcaa82a182202da0a58ecd41402bb12f3ccb247a21fa77d08283796fd89cf10d8163399f53edd8d675d6c3b21842016066ed976e1855f3e94bf315a686bd1 +DIST tio-2.6.tar.xz 3429792 BLAKE2B d0aa262e663eea416c696511e2441ce4b59ff3449ff4a743ffa21653442305c7417e941640239f21717c57d5a2a63d08959cfd3d3f7119f9263a8c0bfc75bf1c SHA512 6ff7a0492ea2bffd6f4cfb2745e0a3be2825e2a5c78fb0a35887cbe461472ffe0707c91a7eabd8744f7b52a8ee059b2e9a51e81fa426be2ffab6cf546e5ddd23 diff --git a/net-dialup/tio/tio-2.6.ebuild b/net-dialup/tio/tio-2.6.ebuild new file mode 100644 index 000000000..aa1af5f4e --- /dev/null +++ b/net-dialup/tio/tio-2.6.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 +}