repo/proj/guru:dev commit in: sys-process/task-spooler/
"Adel KARA SLIMANE" <[email protected]> Wed, 05 Aug 2026 01:32:30 +0000 (UTC)
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1785893548.415ba47b4ee2feb7733a56ae45ceeb9e9630995a.adel@gentoo> |
commit: 415ba47b4ee2feb7733a56ae45ceeb9e9630995a
Author: Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Wed Aug 5 01:31:29 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=415ba47b
sys-process/task-spooler: add 9999
Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
sys-process/task-spooler/task-spooler-9999.ebuild | 27 +++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/sys-process/task-spooler/task-spooler-9999.ebuild b/sys-process/task-spooler/task-spooler-9999.ebuild
new file mode 100644
index 0000000000..4e09d1d359
--- /dev/null
+++ b/sys-process/task-spooler/task-spooler-9999.ebuild
@@ -0,0 +1,27 @@
+# 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"
+if [[ ${PV} == 9999 ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/justanhduc/task-spooler.git"
+else
+ SRC_URI="https://github.com/justanhduc/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/task-spooler-${PV}"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+src_configure() {
+ local mycmakeargs=(
+ -DTASK_SPOOLER_COMPILE_CUDA=OFF
+ )
+ cmake_src_configure
+}