repo/proj/guru:dev commit in: sys-process/task-spooler/

"Adel KARA SLIMANE" <[email protected]> Wed, 05 Aug 2026 01:32:31 +0000 (UTC)
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1785893548.44d43931266ba4b9df93a48816690f2d74b64849.adel@gentoo>
commit:     44d43931266ba4b9df93a48816690f2d74b64849
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Wed Aug  5 01:31:57 2026 +0000
Commit:     Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
CommitDate: Wed Aug  5 01:32:28 2026 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=44d43931

sys-process/task-spooler: drop 1.3.0

Closes: https://bugs.gentoo.org/975663

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>

 sys-process/task-spooler/task-spooler-1.3.0.ebuild | 39 ----------------------
 1 file changed, 39 deletions(-)

diff --git a/sys-process/task-spooler/task-spooler-1.3.0.ebuild b/sys-process/task-spooler/task-spooler-1.3.0.ebuild
deleted file mode 100644
index 5a3ecd4a85..0000000000
--- a/sys-process/task-spooler/task-spooler-1.3.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A scheduler for CPU tasks"
-HOMEPAGE="https://github.com/justanhduc/task-spooler"
-SRC_URI="https://github.com/justanhduc/${PN}/archive/refs/tags/v${PV}-cpu.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/task-spooler-${PV}-cpu"
-
-# A GPU version does exist, if anyone needs it, it can be added through a use flag
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc"
-DOCS="Changelog OBJECTIVES PORTABILITY PROTOCOL README.md TRICKS"
-HTML_DOCS=( web/index.html web/ts-0.2.1.png web/ts-0.5.4.ebuild web/article_linux_com.html )
-
-PATCHES=( "${FILESDIR}"/var-redefinition.patch )
-
-src_test() {
-	cp "${BUILD_DIR}/ts" "${S}"/ || die "failed to copy ts executable to source folder for tests"
-	sh testbench.sh || die "tests failed"
-}
-
-src_install() {
-	cd "${WORKDIR}/${P}-cpu_build" || die
-	mv ts tsp || die "Failed renaming ts executable into tsp"
-	dobin tsp
-
-	# When the use flag doc is enabled.
-	if use doc; then
-		cd "${S}" || die
-		einstalldocs
-	fi
-}