net-dialup/tio: add 3.5

Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
This commit is contained in:
Kurt Kanzenbach 2024-07-02 19:47:32 +02:00
parent f781e9aca6
commit 6ebad3b70e
No known key found for this signature in database
GPG Key ID: DB8F6A82BDCE20B9
2 changed files with 34 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST tio-3.3.tar.xz 3453004 BLAKE2B 3cd9da5f69b8e9b0028846cc5b9ea8110df6a592c53f13aa64bd144aec9fb20ace56d5ee750a0b4ee589e389feb4bcb0cba7a11fe7193f4ced40d3251b47b2d7 SHA512 f4eeb274cd74fdd22f22cf5024966268f656fd7bb9a413eb26fdb886f0b783540ffc1e5ddd740952e09c0a630d3cae2f72054c5edd705a6e272a2634b4a42498 DIST tio-3.3.tar.xz 3453004 BLAKE2B 3cd9da5f69b8e9b0028846cc5b9ea8110df6a592c53f13aa64bd144aec9fb20ace56d5ee750a0b4ee589e389feb4bcb0cba7a11fe7193f4ced40d3251b47b2d7 SHA512 f4eeb274cd74fdd22f22cf5024966268f656fd7bb9a413eb26fdb886f0b783540ffc1e5ddd740952e09c0a630d3cae2f72054c5edd705a6e272a2634b4a42498
DIST tio-3.5.tar.xz 3456676 BLAKE2B 47423adff5be1cb15fcb0312ded179f3e1b3e872d927f5c81ad623ef708f593ff445617605b531360e5bc3310c66f43b6f45c3b05bba825cf8a9e85642cd7fd5 SHA512 060d94b9a643ac3aea71003bd5e5a3f3a145c0c5532d5308d30375abf7b64e39a0e80011af89cd01df945c981941506fefa5c48c72783e5f4f02a77c5ba3bc02

View File

@ -0,0 +1,33 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LUA_COMPAT=( lua5-{1..4} )
inherit lua-single 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"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RDEPEND="
${LUA_DEPS}
dev-libs/glib
"
DEPEND="
${RDEPEND}
"
src_configure() {
local emesonargs=(
-Dbashcompletiondir="$(get_bashcompdir)"
)
meson_src_configure
}