diff options
author | David Seifert <soap@gentoo.org> | 2020-11-22 15:54:12 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-22 15:54:12 +0100 |
commit | 23c2fcae268d01a7bcb593febcd963875a822b7c (patch) | |
tree | f145148147ebee190be018ff7edf1b1512df14da /sys-cluster/maui/files | |
parent | sys-cluster/mvapich2: Remove last-rited package (diff) | |
download | gentoo-23c2fcae268d01a7bcb593febcd963875a822b7c.tar.gz gentoo-23c2fcae268d01a7bcb593febcd963875a822b7c.tar.bz2 gentoo-23c2fcae268d01a7bcb593febcd963875a822b7c.zip |
sys-cluster/maui: Remove last-rited package
Closes: https://bugs.gentoo.org/365713
Closes: https://bugs.gentoo.org/405277
Closes: https://bugs.gentoo.org/405437
Closes: https://bugs.gentoo.org/414793
Closes: https://bugs.gentoo.org/415699
Closes: https://bugs.gentoo.org/422799
Closes: https://bugs.gentoo.org/479288
Closes: https://bugs.gentoo.org/740928
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sys-cluster/maui/files')
-rw-r--r-- | sys-cluster/maui/files/maui-3.3.1-torque_4.patch | 14 | ||||
-rw-r--r-- | sys-cluster/maui/files/maui.initd | 23 |
2 files changed, 0 insertions, 37 deletions
diff --git a/sys-cluster/maui/files/maui-3.3.1-torque_4.patch b/sys-cluster/maui/files/maui-3.3.1-torque_4.patch deleted file mode 100644 index 1e0631555736..000000000000 --- a/sys-cluster/maui/files/maui-3.3.1-torque_4.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -ur maui-3.3.1.orig/src/moab/MPBSI.c maui-3.3.1/src/moab/MPBSI.c ---- maui-3.3.1.orig/src/moab/MPBSI.c 2013-07-31 09:36:31.831849229 -0700 -+++ maui-3.3.1/src/moab/MPBSI.c 2013-07-31 09:37:12.951107957 -0700 -@@ -174,8 +174,8 @@ - - extern int pbs_errno; - --extern int get_svrport(const char *,char *,int); --extern int openrm(char *,int); -+extern unsigned int get_svrport(char *,char *,unsigned int); -+extern int openrm(char *,unsigned int); - extern int addreq(int,char *); - extern int closerm(int); - extern int pbs_stagein(int,char *,char *,char *); diff --git a/sys-cluster/maui/files/maui.initd b/sys-cluster/maui/files/maui.initd deleted file mode 100644 index df4f64474f1f..000000000000 --- a/sys-cluster/maui/files/maui.initd +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net - after pbs_server slurmctld - before pbs_mom slurmd - after logger -} - -start() { - ebegin "Starting Maui scheduler" - start-stop-daemon --start --exec /usr/sbin/maui - eend ${?} -} - -stop() { - ebegin "Stopping Maui scheduler" - start-stop-daemon --stop -p /var/spool/maui/maui.pid - eend ${?} -} -# vim:ts=4 |