commit:     7cb793d5c29caa23b1945d2a86e382db5d6ed3aa
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 24 10:32:56 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Dec 24 10:33:32 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cb793d5

dev-build/steve: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-build/steve/Manifest           |   3 -
 dev-build/steve/steve-1.1.0.ebuild |  74 -------------------------
 dev-build/steve/steve-1.2.0.ebuild | 106 ------------------------------------
 dev-build/steve/steve-1.3.0.ebuild | 109 -------------------------------------
 4 files changed, 292 deletions(-)

diff --git a/dev-build/steve/Manifest b/dev-build/steve/Manifest
index 3903e83bd01a..2ce28a175364 100644
--- a/dev-build/steve/Manifest
+++ b/dev-build/steve/Manifest
@@ -1,4 +1 @@
-DIST steve-1.1.0.tar.xz 17132 BLAKE2B 
3f415d007eb808180499b541cf79684ec62807ba3e60e41466c829ac5a073b6b349d55a90dd75111054bcfd33398de72dd283fef8e3654bb57cbcfeab66ffb94
 SHA512 
516e7523864de0a13242456a5b3a4b6ba8ea36caf90e61842acb2d56461aa1441c1ad5f2b04d3bbd3d649d9f3622e88726cbbb5b7e15c7ccbb16e179fbac4c11
-DIST steve-1.2.0.tar.xz 18940 BLAKE2B 
88f04479ea92104a678a23032f81fd25f96c679ec38e376aa57f1baae2e26528cc8d965e958597de30ada07965d4301199defce5e77c7984ef6deba3ef11f64c
 SHA512 
18fc62afb65599e01a79d50351dde0a3ac842fe9bab585672c9bf7fff00d96be4b916adbf92f3d9246750087c4462692440b00e73486ad54b2c63a61349d9338
-DIST steve-1.3.0.tar.xz 19872 BLAKE2B 
996233e2d3c651b5a3e1b1f744bf18dbf6bfb977e5a962d30d28336169be13f599c62fd605ddb738f8e458977630a00eaa2453d96eab6d8a362dd5202b6fcd2f
 SHA512 
6c4ba750cc474adb9f20a5bdf03b145eef83d4969019745292f694d24f5ef15db2688859d3d47b7be4e19263b54ec7c73fa816f40d35a3390775c7cbeb8766b3
 DIST steve-1.3.1.tar.xz 21416 BLAKE2B 
30dc52eb35eb05a33bc9dc0430897447627878743f98d67481e7c77af6db160bdef58fae9f8d29abe16ed043e2badb2f74fe4e6e39140d441510cc37cf74641c
 SHA512 
224549ae9ae5d9e3f0529bf6a361ae9339a4553bc5c40641dd16c28a6efec3b889dd1bd1399e8330461d9d2b9a9c496929d718d2f34fb9abc7a95ccdabbee037

diff --git a/dev-build/steve/steve-1.1.0.ebuild 
b/dev-build/steve/steve-1.1.0.ebuild
deleted file mode 100644
index 20fdc5f18363..000000000000
--- a/dev-build/steve/steve-1.1.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info meson systemd udev
-
-DESCRIPTION="A simple jobserver for Gentoo"
-HOMEPAGE="https://gitweb.gentoo.org/proj/steve.git/";
-SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
-IUSE="debug"
-
-DEPEND="
-       dev-libs/libevent:=
-       sys-fs/fuse:3=
-"
-RDEPEND="
-       ${DEPEND}
-"
-BDEPEND="
-       virtual/pkgconfig
-"
-
-pkg_pretend() {
-       local CONFIG_CHECK="~CUSE"
-       check_extra_config
-}
-
-src_configure() {
-       local emesonargs=(
-               $(meson_use !debug b_ndebug)
-       )
-
-       meson_src_configure
-}
-
-src_install() {
-       meson_src_install
-
-       # TODO: move these to meson
-       systemd_dounit data/steve.service
-       newconfd data/steve.confd steve
-       newinitd data/steve.initd steve
-       insinto /etc/sandbox.d
-       newins data/sandbox.conf 90steve
-       udev_newrules data/steve.udev 90-steve.rules
-}
-
-pkg_postinst() {
-       udev_reload
-
-       if ! grep -q -s -R -- '--jobserver-auth=fifo:/dev/steve' 
"${EROOT}"/etc/portage/make.conf
-       then
-               elog "In order to use the system-wide steve instance, enable 
the service:"
-               elog
-               elog "  systemctl enable --now steve"
-               elog
-               elog "Then add to your make.conf:"
-               elog
-               elog '  MAKEFLAGS="--jobserver-auth=fifo:/dev/steve"'
-               elog '  NINJAOPTS=""'
-               elog
-               elog "You can use -l in NINJAOPTS but *do not* use -j, as it 
disables"
-               elog "jobserver support."
-       fi
-}
-
-pkg_postrm() {
-       udev_reload
-}

diff --git a/dev-build/steve/steve-1.2.0.ebuild 
b/dev-build/steve/steve-1.2.0.ebuild
deleted file mode 100644
index d014f7e56735..000000000000
--- a/dev-build/steve/steve-1.2.0.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..14} )
-
-inherit linux-info meson python-any-r1 systemd udev
-
-DESCRIPTION="A load-balancing jobserver for Gentoo"
-HOMEPAGE="https://gitweb.gentoo.org/proj/steve.git/";
-SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86"
-IUSE="debug test"
-RESTRICT="test"
-PROPERTIES="test? ( test_privileged )"
-
-DEPEND="
-       dev-libs/libevent:=
-       sys-fs/fuse:3=
-"
-RDEPEND="
-       ${DEPEND}
-"
-BDEPEND="
-       virtual/pkgconfig
-       test? (
-               $(python_gen_any_dep '
-                       dev-python/pytest[${PYTHON_USEDEP}]
-                       dev-python/pytest-timeout[${PYTHON_USEDEP}]
-               ')
-       )
-"
-
-python_check_deps() {
-       python_has_version "dev-python/pytest[${PYTHON_USEDEP}]" &&
-               python_has_version "dev-python/pytest-timeout[${PYTHON_USEDEP}]"
-}
-
-pkg_pretend() {
-       local CONFIG_CHECK="~CUSE"
-       check_extra_config
-}
-
-pkg_setup() {
-       use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-       local emesonargs=(
-               $(meson_use !debug b_ndebug)
-               $(meson_use test)
-       )
-
-       meson_src_configure
-}
-
-src_test() {
-       addwrite /dev/cuse
-       addwrite /dev/steve.test
-       if [[ ! -w /dev/cuse ]]; then
-               die "Testing steve requires /dev/cuse"
-       fi
-
-       local -x STEVE=${BUILD_DIR}/steve
-       local EPYTEST_PLUGINS=( pytest-timeout )
-       epytest
-}
-
-src_install() {
-       meson_src_install
-
-       # TODO: move these to meson
-       systemd_dounit data/steve.service
-       newconfd data/steve.confd steve
-       newinitd data/steve.initd steve
-       insinto /etc/sandbox.d
-       newins data/sandbox.conf 90steve
-       udev_newrules data/steve.udev 90-steve.rules
-}
-
-pkg_postinst() {
-       udev_reload
-
-       if ! grep -q -s -R -- '--jobserver-auth=fifo:/dev/steve' 
"${EROOT}"/etc/portage/make.conf
-       then
-               elog "In order to use the system-wide steve instance, enable 
the service:"
-               elog
-               elog "  systemctl enable --now steve"
-               elog
-               elog "Then add to your make.conf:"
-               elog
-               elog '  MAKEFLAGS="--jobserver-auth=fifo:/dev/steve"'
-               elog '  NINJAOPTS=""'
-               elog
-               elog "You can use -l in NINJAOPTS but *do not* use -j, as it 
disables"
-               elog "jobserver support."
-       fi
-}
-
-pkg_postrm() {
-       udev_reload
-}

diff --git a/dev-build/steve/steve-1.3.0.ebuild 
b/dev-build/steve/steve-1.3.0.ebuild
deleted file mode 100644
index ee2230a8fa1a..000000000000
--- a/dev-build/steve/steve-1.3.0.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..14} )
-
-inherit linux-info meson python-any-r1 systemd udev
-
-DESCRIPTION="A load-balancing jobserver for Gentoo"
-HOMEPAGE="https://gitweb.gentoo.org/proj/steve.git/";
-SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86"
-IUSE="debug test"
-RESTRICT="test"
-PROPERTIES="test? ( test_privileged )"
-
-DEPEND="
-       dev-libs/libevent:=
-       sys-fs/fuse:3=
-"
-RDEPEND="
-       ${DEPEND}
-       acct-group/jobserver
-       acct-user/steve
-       >=sys-fs/fuse-common-3.10.4-r2
-"
-BDEPEND="
-       virtual/pkgconfig
-       test? (
-               $(python_gen_any_dep '
-                       dev-python/pytest[${PYTHON_USEDEP}]
-                       dev-python/pytest-timeout[${PYTHON_USEDEP}]
-               ')
-       )
-"
-
-python_check_deps() {
-       python_has_version "dev-python/pytest[${PYTHON_USEDEP}]" &&
-               python_has_version "dev-python/pytest-timeout[${PYTHON_USEDEP}]"
-}
-
-pkg_pretend() {
-       local CONFIG_CHECK="~CUSE"
-       check_extra_config
-}
-
-pkg_setup() {
-       use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-       local emesonargs=(
-               $(meson_use !debug b_ndebug)
-               $(meson_use test)
-       )
-
-       meson_src_configure
-}
-
-src_test() {
-       addwrite /dev/cuse
-       addwrite /dev/steve.test
-       if [[ ! -w /dev/cuse ]]; then
-               die "Testing steve requires /dev/cuse"
-       fi
-
-       local -x STEVE=${BUILD_DIR}/steve
-       local EPYTEST_PLUGINS=( pytest-timeout )
-       epytest
-}
-
-src_install() {
-       meson_src_install
-
-       # TODO: move these to meson
-       systemd_dounit data/steve.service
-       newconfd data/steve.confd steve
-       newinitd data/steve.initd steve
-       insinto /etc/sandbox.d
-       newins data/sandbox.conf 90steve
-       udev_newrules data/steve.udev 90-steve.rules
-}
-
-pkg_postinst() {
-       udev_reload
-
-       if ! grep -q -s -R -- '--jobserver-auth=fifo:/dev/steve' 
"${EROOT}"/etc/portage/make.conf
-       then
-               elog "In order to use the system-wide steve instance, enable 
the service:"
-               elog
-               elog "  systemctl enable --now steve"
-               elog
-               elog "Then add to your make.conf:"
-               elog
-               elog '  MAKEFLAGS="--jobserver-auth=fifo:/dev/steve"'
-               elog '  NINJAOPTS=""'
-               elog
-               elog "You can use -l in NINJAOPTS but *do not* use -j, as it 
disables"
-               elog "jobserver support."
-       fi
-}
-
-pkg_postrm() {
-       udev_reload
-}

Reply via email to