gentoo/app-misc/asciicast-tools/asciicast-tools-0.0_pre20220524-r1.ebuild
Ian Jordan 1d15c2edd5
app-misc/asciicast-tools: enable py3.13
NO test suite, passed a runtime with no issues found.

Closes: https://bugs.gentoo.org/952213
Signed-off-by: Ian Jordan <immoloism@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/41834
Closes: https://github.com/gentoo/gentoo/pull/41834
Signed-off-by: Sam James <sam@gentoo.org>
2025-04-29 20:14:36 +01:00

32 lines
706 B
Bash

# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
inherit python-r1
COMMIT_HASH="056f17f27ea37c49505dc6031ddf60cbfb73c265"
DESCRIPTION="Tools for creating recordings of console sessions"
HOMEPAGE="https://github.com/dcoles/asciicast-tools"
SRC_URI="https://github.com/dcoles/${PN}/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT_HASH}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
${PYTHON_DEPS}
app-misc/tmux
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_install() {
default
python_foreach_impl python_doscript ${PN%-tools}-pipe
dobin tmux-${PN%-tools}-pane
}