app-misc/tasksh: new package, add 1.2.0

Signed-off-by: Alexis Praga <alexis@praga.dev>
This commit is contained in:
Alexis Praga
2026-03-10 22:58:42 +01:00
parent d3808eacad
commit f1c3c49ccb
3 changed files with 45 additions and 0 deletions

1
app-misc/tasksh/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST tasksh-1.2.0.tar.gz 449323 BLAKE2B 0e5c249d972b02459579a5a45189c463e79d440a58a21aa030b30f0beefe5acf1d924721ee83bad918321d25b06548caba85da94a84884f8b766638861a507cf SHA512 0c0a678a1cf48d1b7fcc123da5152d74bbb4334520252788ad38e3cb9bd2a5189902c066d7dbc848a23f6c7c25e53a8e1dc240dd6e57dbbdc993079a3e9fc417

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<upstream>
<remote-id type="github">GothenburgBitFactory/taskshell</remote-id>
<doc>https://github.com/GothenburgBitFactory/taskshell</doc>
<bugs-to>https://github.com/leftwm/leftwm/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
EAPI=8
inherit cmake
DESCRIPTION="Shell wrapper for Taskwarrior"
HOMEPAGE="https://gothenburgbitfactory.org/tasksh/"
SRC_URI="https://github.com/GothenburgBitFactory/taskshell/releases/download/v${PV}/tasksh-${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="sys-libs/readline:0="
RDEPEND="
${DEPEND}
app-misc/task"
BDEPEND="virtual/pkgconfig"
DOCS=(
AUTHORS
ChangeLog
NEWS
)
src_prepare() {
cmake_src_prepare
}
src_configure() {
cmake_src_configure
}
src_install(){
cmake_src_install
rm -rf "${ED}/usr/share/doc/tasksh" || die
}