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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AED3C138350 for ; Mon, 13 Apr 2020 09:43:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F12B2E0946; Mon, 13 Apr 2020 09:43:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D7C81E0946 for ; Mon, 13 Apr 2020 09:43:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3EDAE34F176 for ; Mon, 13 Apr 2020 09:43:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD1471D6 for ; Mon, 13 Apr 2020 09:43:52 +0000 (UTC) From: "Kurt Kanzenbach" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kurt Kanzenbach" Message-ID: <1586770976.2100af6a7b616d536a8e0cba6f5310c1bb55e414.KurtKanzenbach@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-dialup/tio/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-dialup/tio/Manifest net-dialup/tio/metadata.xml net-dialup/tio/tio-1.32.ebuild X-VCS-Directories: net-dialup/tio/ X-VCS-Committer: KurtKanzenbach X-VCS-Committer-Name: Kurt Kanzenbach X-VCS-Revision: 2100af6a7b616d536a8e0cba6f5310c1bb55e414 X-VCS-Branch: dev Date: Mon, 13 Apr 2020 09:43:52 +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: fbe56955-3f04-42f1-9b28-45fe6788edb3 X-Archives-Hash: 1788d3f0122d411c7c7fdb746b49bbc9 commit: 2100af6a7b616d536a8e0cba6f5310c1bb55e414 Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Mon Apr 13 09:35:54 2020 +0000 Commit: Kurt Kanzenbach kmk-computers de> CommitDate: Mon Apr 13 09:42:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2100af6a net-dialup/tio: Simple TTY terminal application (new package) "tio" is a simple TTY terminal application which features a straightforward commandline interface to easily connect to TTY devices for basic input/output. Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Kurt Kanzenbach kmk-computers.de> net-dialup/tio/Manifest | 1 + net-dialup/tio/metadata.xml | 13 +++++++++++++ net-dialup/tio/tio-1.32.ebuild | 18 ++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/net-dialup/tio/Manifest b/net-dialup/tio/Manifest new file mode 100644 index 0000000..e4ef499 --- /dev/null +++ b/net-dialup/tio/Manifest @@ -0,0 +1 @@ +DIST tio-1.32.tar.xz 88976 BLAKE2B d9f97e0c37326d5db2c6a7d681569738aced6ba45dc60d320bf5dc00db1d77b72474309d0b790ba6af1360cde145cda04ddbc2ba58f69cef1e2331906d04cc89 SHA512 6ec216ea8e60fe8fb09e3bc378d8178f0d27789ba876e5a763c1eeef7de064831143270e644e64658d3b9acaf3c1b406f1e3331acc4c8bee91fd56851b99941f diff --git a/net-dialup/tio/metadata.xml b/net-dialup/tio/metadata.xml new file mode 100644 index 0000000..10c5b3e --- /dev/null +++ b/net-dialup/tio/metadata.xml @@ -0,0 +1,13 @@ + + + + + kurt@kmk-computers.de + Kurt Kanzenbach + + + "tio" is a simple TTY terminal application which features a straightforward + commandline interface to easily connect to TTY devices for basic + input/output. + + diff --git a/net-dialup/tio/tio-1.32.ebuild b/net-dialup/tio/tio-1.32.ebuild new file mode 100644 index 0000000..8fae4c4 --- /dev/null +++ b/net-dialup/tio/tio-1.32.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools bash-completion-r1 + +DESCRIPTION="Simple TTY terminal application" +HOMEPAGE="https://tio.github.io/" +SRC_URI="https://github.com/tio/${PN}/releases/download/v${PV}/${P}.tar.xz" + +SLOT="0" +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~x86" + +src_configure() { + econf --with-bash-completion-dir="$(get_bashcompdir)" +}