diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /sys-fabric/opensm | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'sys-fabric/opensm')
| -rw-r--r-- | sys-fabric/opensm/Manifest | 2 | ||||
| -rw-r--r-- | sys-fabric/opensm/files/opensm-3.3.17-sldd.patch | 20 | ||||
| -rw-r--r-- | sys-fabric/opensm/files/opensm.conf.d | 3 | ||||
| -rw-r--r-- | sys-fabric/opensm/files/opensm.init.d | 23 | ||||
| -rw-r--r-- | sys-fabric/opensm/files/opensm.init.d.2 | 22 | ||||
| -rw-r--r-- | sys-fabric/opensm/files/sldd.conf.d | 21 | ||||
| -rw-r--r-- | sys-fabric/opensm/files/sldd.init.d | 25 | ||||
| -rw-r--r-- | sys-fabric/opensm/metadata.xml | 19 | ||||
| -rw-r--r-- | sys-fabric/opensm/opensm-3.3.23-r2.ebuild | 59 | ||||
| -rw-r--r-- | sys-fabric/opensm/opensm-3.3.24-r1.ebuild | 63 |
10 files changed, 0 insertions, 257 deletions
diff --git a/sys-fabric/opensm/Manifest b/sys-fabric/opensm/Manifest deleted file mode 100644 index b838c0f936a1..000000000000 --- a/sys-fabric/opensm/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST opensm-3.3.23.tar.gz 1357906 BLAKE2B 7f085dc1e0a1f284baf1410661aa247ef7e48cdaa696c38ef8a38d5a214e03966b54fb75c035103ac0d6ab9e0a37500d5fad51b0b52c7f5edffb3c3ddfa86eb4 SHA512 249143fcf2cac0504923992d46dfbd6821aad3da55ecc12c92b273b4e59196f88d9d1802d9f58ae6f1ace49958e0222424aea9b48e5aba519e5a5736fc51c3fe -DIST opensm-3.3.24.tar.gz 1359599 BLAKE2B 0498ea95e83f47d2a60696bbec7242ecd5f538fa3bcdeb083a5473c3f0fd660382cd661b8bce0ac152f64bf7bcd934ca8007e7a9f528b7bd15c25af963780b85 SHA512 292449b1282008589ce6cf6a649bb64afabf359d23a8fa4afa38217801256a6a5f06912c9e463c0fdac30039aff9eceb212e8560bf05c7253c4e73080e16072e diff --git a/sys-fabric/opensm/files/opensm-3.3.17-sldd.patch b/sys-fabric/opensm/files/opensm-3.3.17-sldd.patch deleted file mode 100644 index d7eb3ec24b9b..000000000000 --- a/sys-fabric/opensm/files/opensm-3.3.17-sldd.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- opensm-3.3.17/scripts/sldd.sh.in.orig 2013-02-07 11:46:29.000000000 +0400 -+++ opensm-3.3.17/scripts/sldd.sh.in 2014-12-27 04:47:24.488636743 +0300 -@@ -42,7 +42,7 @@ - prefix=@prefix@ - exec_prefix=@exec_prefix@ - --CONFIG=@sysconfdir@/sysconfig/opensm -+CONFIG=@sysconfdir@/conf.d/sldd - if [ -f $CONFIG ]; then - . $CONFIG - fi -@@ -57,7 +57,7 @@ - - RCP=${RCP:-/usr/bin/scp} - RSH=${RSH:-/usr/bin/ssh} --IFCONFIG=${IFCONFIG:-'/sbin/ifconfig -a'} -+IFCONFIG=${IFCONFIG:-'/bin/ifconfig -a'} - - declare -i SLDD_DEBUG - RESCAN_TIME=${RESCAN_TIME:-60} diff --git a/sys-fabric/opensm/files/opensm.conf.d b/sys-fabric/opensm/files/opensm.conf.d deleted file mode 100644 index 4f0cd49a4bc5..000000000000 --- a/sys-fabric/opensm/files/opensm.conf.d +++ /dev/null @@ -1,3 +0,0 @@ -# Provide OpenSM options here. -# See man opensm for details -OSM_OPTIONS="" diff --git a/sys-fabric/opensm/files/opensm.init.d b/sys-fabric/opensm/files/opensm.init.d deleted file mode 100644 index fe2bef134bbe..000000000000 --- a/sys-fabric/opensm/files/opensm.init.d +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need openib - after net # ip net seems to be needed to perform management. -} - -prog=/usr/sbin/opensm - -start() { - ebegin "Starting OpenSM Infiniband Subnet Manager" - start-stop-daemon --start --background --exec $prog -- $OSM_OPTIONS - eend $? -} - -stop() { - ebegin "Stopping OpenSM Infiniband Subnet Manager" - start-stop-daemon --stop --exec $prog - eend $? -} - diff --git a/sys-fabric/opensm/files/opensm.init.d.2 b/sys-fabric/opensm/files/opensm.init.d.2 deleted file mode 100644 index 238449cb3f40..000000000000 --- a/sys-fabric/opensm/files/opensm.init.d.2 +++ /dev/null @@ -1,22 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -depend() { - after net # ip net seems to be needed to perform management. -} - -prog=/usr/sbin/opensm - -start() { - ebegin "Starting OpenSM Infiniband Subnet Manager" - start-stop-daemon --start --background --exec $prog -- $OSM_OPTIONS - eend $? -} - -stop() { - ebegin "Stopping OpenSM Infiniband Subnet Manager" - start-stop-daemon --stop --exec $prog - eend $? -} - diff --git a/sys-fabric/opensm/files/sldd.conf.d b/sys-fabric/opensm/files/sldd.conf.d deleted file mode 100644 index ee0e88750310..000000000000 --- a/sys-fabric/opensm/files/sldd.conf.d +++ /dev/null @@ -1,21 +0,0 @@ -# Tho following variables will used for sldd.sh -# -# You must setup this for sldd to work -OSM_HOSTS="" - -### Optional variables (defaults are commented out) - -# Debug level -#SLDD_DEBUG="0" - -# OpenSM cache files -#CACHE_FILE="/var/cache/opensm/guid2lid:/var/cache/opensm/guid2mkey:/var/cache/opensm/neighbors" - -# System calls -#PING="ping -w 1 -c 1" -#RCP="/usr/bin/scp" -#SSH="/usr/bin/ssh" -#IFCONFIG="/bin/ifconfig -a" - -# Delay between hosts scan -#RESCAN_TIME="60" diff --git a/sys-fabric/opensm/files/sldd.init.d b/sys-fabric/opensm/files/sldd.init.d deleted file mode 100644 index fce2995d2c38..000000000000 --- a/sys-fabric/opensm/files/sldd.init.d +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need opensm - after net # ip net seems to be needed to perform management. -} - -prog=/usr/sbin/sldd.sh -pidfile=/var/run/sldd.pid - -start() { - ebegin "Starting Semi-static LID OpenSM Distribution Manager" - start-stop-daemon --start --background --pidfile "${pidfile}" \ - --make-pidfile --wait 500 --exec $prog - eend $? -} - -stop() { - ebegin "Stopping OpenSM Infiniband Subnet Manager" - start-stop-daemon --stop --pidfile "${pidfile}" - eend $? -} - diff --git a/sys-fabric/opensm/metadata.xml b/sys-fabric/opensm/metadata.xml deleted file mode 100644 index 40c1097b0989..000000000000 --- a/sys-fabric/opensm/metadata.xml +++ /dev/null @@ -1,19 +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> - OpenSM provides an implementation for an InfiniBand Subnet Manager and - Administrator. Such a software entity is required to run for in order to - initialize the InfiniBand hardware (at least one per each InfiniBand subnet). - </longdescription> - <use> - <flag name="tools">Install ssld extra tool</flag> - </use> - <upstream> - <remote-id type="github">linux-rdma/opensm</remote-id> - </upstream> -</pkgmetadata> diff --git a/sys-fabric/opensm/opensm-3.3.23-r2.ebuild b/sys-fabric/opensm/opensm-3.3.23-r2.ebuild deleted file mode 100644 index ce4c2e77f6ef..000000000000 --- a/sys-fabric/opensm/opensm-3.3.23-r2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit autotools - -HOMEPAGE="https://github.com/linux-rdma/opensm/" -DESCRIPTION="OpenSM - InfiniBand Subnet Manager and Administration for OpenIB" - -SRC_URI="https://github.com/linux-rdma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="amd64 x86" -IUSE="selinux tools" -SLOT="0" -LICENSE="|| ( GPL-2 BSD-2 )" - -DEPEND="sys-cluster/rdma-core" -RDEPEND="${DEPEND} - selinux? ( sec-policy/selinux-opensm ) - tools? ( - net-misc/iputils - virtual/openssh - )" - -PATCHES=( "${FILESDIR}/${PN}-3.3.17-sldd.patch" ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --enable-perf-mgr \ - --enable-default-event-plugin \ - --with-osmv="openib" -} - -src_install() { - default - newconfd "${FILESDIR}/opensm.conf.d" opensm - newinitd "${FILESDIR}/opensm.init.d.2" opensm - insinto /etc/logrotate.d - newins "${S}/scripts/opensm.logrotate" opensm - # we dont need this int script - rm "${ED}/etc/init.d/opensmd" || die "Dropping of upstream initscript failed" - - if use tools; then - dosbin scripts/sldd.sh - newconfd "${FILESDIR}/sldd.conf.d" sldd - newinitd "${FILESDIR}/sldd.init.d" sldd - fi -} - -pkg_postinst() { - einfo "To automatically configure the infiniband subnet manager on boot," - einfo "edit /etc/opensm.conf and add opensm to your start-up scripts:" - einfo "\`rc-update add opensm default\`" -} diff --git a/sys-fabric/opensm/opensm-3.3.24-r1.ebuild b/sys-fabric/opensm/opensm-3.3.24-r1.ebuild deleted file mode 100644 index 6536ed357409..000000000000 --- a/sys-fabric/opensm/opensm-3.3.24-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="OpenSM - InfiniBand Subnet Manager and Administration for OpenIB" -HOMEPAGE="https://github.com/linux-rdma/opensm/" -SRC_URI="https://github.com/linux-rdma/opensm/releases/download/${PV}/${P}.tar.gz" - -LICENSE="|| ( GPL-2 BSD-2 )" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="selinux tools" - -DEPEND="sys-cluster/rdma-core" -RDEPEND="${DEPEND} - selinux? ( sec-policy/selinux-opensm ) - tools? ( - net-misc/iputils - virtual/openssh - )" - -PATCHES=( "${FILESDIR}"/${PN}-3.3.17-sldd.patch ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --enable-perf-mgr \ - --enable-default-event-plugin \ - --with-osmv="openib" -} - -src_install() { - default - - newconfd "${FILESDIR}"/opensm.conf.d opensm - newinitd "${FILESDIR}"/opensm.init.d.2 opensm - - insinto /etc/logrotate.d - newins scripts/opensm.logrotate opensm - # we dont need this int script - rm "${ED}"/etc/init.d/opensmd || die "Dropping of upstream initscript failed" - - if use tools; then - dosbin scripts/sldd.sh - newconfd "${FILESDIR}"/sldd.conf.d sldd - newinitd "${FILESDIR}"/sldd.init.d sldd - fi - - find "${ED}" -name '*.la' -delete || die -} - -pkg_postinst() { - einfo "To automatically configure the infiniband subnet manager on boot," - einfo "edit /etc/opensm.conf and add opensm to your start-up scripts:" - einfo "\`rc-update add opensm default\`" -} |
