summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-02-15 10:08:25 +0100
committerJakov Smolić <jsmolic@gentoo.org>2022-02-15 10:22:31 +0100
commit6564d2d9387faa98e045b2613c1da8d466c4e41d (patch)
tree7cf4d13276983f4e7d5e8886f8cfe043c6d88823 /sys-fabric
parentsys-fabric/opensm: drop 3.3.17-r1 (diff)
downloadgentoo-6564d2d9387faa98e045b2613c1da8d466c4e41d.tar.gz
gentoo-6564d2d9387faa98e045b2613c1da8d466c4e41d.tar.bz2
gentoo-6564d2d9387faa98e045b2613c1da8d466c4e41d.zip
sys-fabric/srptools: treeclean
Closes: https://bugs.gentoo.org/698212 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sys-fabric')
-rw-r--r--sys-fabric/srptools/Manifest1
-rw-r--r--sys-fabric/srptools/files/srpd.initd41
-rw-r--r--sys-fabric/srptools/metadata.xml14
-rw-r--r--sys-fabric/srptools/srptools-1.0.2.ebuild28
4 files changed, 0 insertions, 84 deletions
diff --git a/sys-fabric/srptools/Manifest b/sys-fabric/srptools/Manifest
deleted file mode 100644
index b3649eecb827..000000000000
--- a/sys-fabric/srptools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST OFED-3.12-rc1.tgz 22055476 BLAKE2B 49e6411721392f418369a292513709f396fbb0f17001687aa15b5c0acdc91013cc67354e5978df56452178af7fbbd338a7ff408592ff9126a3045b9bb27375fe SHA512 9f834d6982ab7e8ab47a8b5c958ab2e4c238ef983e47798e7f06655f69672ea1e996297939b381f26ed8c39552f6e62156173d5ddd2f0a7b6cad6aecdd973944
diff --git a/sys-fabric/srptools/files/srpd.initd b/sys-fabric/srptools/files/srpd.initd
deleted file mode 100644
index a43d09bfb2a4..000000000000
--- a/sys-fabric/srptools/files/srpd.initd
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-description="SCSI RDMA Protoaemon daemon"
-
-depend() {
- need net
-}
-
-checkconfig() {
- if ! modinfo ib_srp > /dev/null 2>&1 ; then
- eerror "ib_srp module not found!"
- return 1
- fi
-}
-
-start() {
- checkconfig
- ebegin "Loading ib_srp module"
- modprobe ib_srp
- eend $?
- ebegin "Starting srp_daemon"
- start-stop-daemon \
- --start \
- --background \
- --make-pidfile \
- --pidfile ${SRP_DAEMON_PID:-/var/run/srpd.pid} \
- --exec /usr/sbin/srp_daemon -- ${SRP_DAEMON_OPTS:- -e -R 60}
- eend $?
-
-}
-
-stop() {
- ebegin "Stopping srp_daemon"
- start-stop-daemon --stop --pidfile ${SRP_DAEMON_PID:-/var/run/srpd.pid}
- eend $?
- ebegin "Unloading ib_srp module"
- rmmod ib_srp
- eend $?
-}
diff --git a/sys-fabric/srptools/metadata.xml b/sys-fabric/srptools/metadata.xml
deleted file mode 100644
index 08375e6c457f..000000000000
--- a/sys-fabric/srptools/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>cluster@gentoo.org</email>
- <name>Gentoo Cluster Project</name>
- </maintainer>
- <longdescription>
-srptools is a package of tools for discovering and connecting to SRP
-SCSI targets on InfiniBand fabrics. These targets can be accessed
-with the InfiniBand SRP initiator module, "ib_srp," included in Linux
-kernels 2.6.15 and newer.
-</longdescription>
-</pkgmetadata>
diff --git a/sys-fabric/srptools/srptools-1.0.2.ebuild b/sys-fabric/srptools/srptools-1.0.2.ebuild
deleted file mode 100644
index 2e610b7912ab..000000000000
--- a/sys-fabric/srptools/srptools-1.0.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-OFED_VER="3.12"
-OFED_RC="1"
-OFED_RC_VER="1"
-OFED_SUFFIX="1"
-
-inherit openib
-
-DESCRIPTION="Tools for discovering and connecting to SRP CSI targets on InfiniBand fabrics"
-
-KEYWORDS="amd64 x86 ~amd64-linux"
-IUSE=""
-
-DEPEND="
- sys-fabric/libibverbs:${SLOT}
- sys-fabric/libibumad:${SLOT}
- "
-RDEPEND="${DEPEND}"
-block_other_ofed_versions
-
-src_install() {
- default
- newinitd "${FILESDIR}/srpd.initd" srpd
-}