commit:     cdee5b65275cdba20e709b9796ac67d52d13f19a
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  5 11:57:48 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Oct  5 11:59:59 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdee5b65

app-misc/task: drop 2.6.2

Closes: https://bugs.gentoo.org/957231
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 app-misc/task/task-2.6.2.ebuild | 74 -----------------------------------------
 1 file changed, 74 deletions(-)

diff --git a/app-misc/task/task-2.6.2.ebuild b/app-misc/task/task-2.6.2.ebuild
deleted file mode 100644
index e06efb8d2e5e..000000000000
--- a/app-misc/task/task-2.6.2.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR="emake"
-inherit bash-completion-r1 cmake
-
-DESCRIPTION="Taskwarrior is a command-line todo list manager"
-HOMEPAGE="https://taskwarrior.org/";
-SRC_URI="https://github.com/GothenburgBitFactory/taskwarrior/releases/download/v${PV}/${P}.tar.gz
-       
https://github.com/GothenburgBitFactory/taskwarrior/releases/download/v${PV}/tests-${PV}.tar.gz";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86 ~x64-macos"
-IUSE="+sync"
-
-DEPEND="
-       sync? ( net-libs/gnutls )
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-       "${FILESDIR}/task-2.6.2-gcc15-cstdint-include.patch"
-)
-
-src_prepare() {
-       # move test directory into source directory
-       mv "${WORKDIR}"/test "${WORKDIR}"/${P} || die
-
-       cmake_src_prepare
-
-       # don't automatically install scripts
-       sed -i '/scripts/d' CMakeLists.txt || die
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DENABLE_SYNC=$(usex sync)
-               -DTASK_DOCDIR=share/doc/${PF}
-               -DTASK_RCDIR=share/${PN}/rc
-       )
-
-       cmake_src_configure
-}
-
-src_test() {
-       cd "${WORKDIR}"/"${P}"_build || die
-
-       emake test
-}
-
-src_install() {
-       cmake_src_install
-
-       newbashcomp scripts/bash/task.sh task
-
-       # vim syntax
-       rm scripts/vim/README || die
-       insinto /usr/share/vim/vimfiles
-       doins -r scripts/vim/*
-
-       # zsh-completions
-       insinto /usr/share/zsh/site-functions
-       doins scripts/zsh/*
-
-       # fish-completions
-       insinto /usr/share/fish/vendor_completions.d
-       doins scripts/fish/*
-
-       exeinto "/usr/share/${PN}/scripts"
-       doexe scripts/add-ons/*
-}

Reply via email to