mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-17 19:13:13 -04:00
sys-cluster/libyogrt: initial import
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
1
sys-cluster/libyogrt/Manifest
Normal file
1
sys-cluster/libyogrt/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST libyogrt-1.24.tar.gz 37803 BLAKE2B b79310d7a0b7f32d3bab5582640006386ea5fa15ee169b7104c4c194948a4c2282d7a4fb748e3dd98a17096d289f63f97204201533620aa5d5c0181ae40f76c6 SHA512 e761a5ff397b55da0769c7a42a03a170efe9d52102166aa6ccdb9a8949bd844f201a4a4a1e1010320a82132d0b19b468c1ee74e42af603f341232d6a5147d745
|
||||
36
sys-cluster/libyogrt/libyogrt-1.24.ebuild
Normal file
36
sys-cluster/libyogrt/libyogrt-1.24.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright 2019-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="Your One Get Remaining Time library"
|
||||
HOMEPAGE="https://github.com/LLNL/libyogrt"
|
||||
SRC_URI="https://github.com/LLNL/libyogrt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="slurm" #lsf moab lcrm
|
||||
|
||||
RDEPEND="slurm? ( sys-cluster/slurm )"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
AT_M4DIR="config" eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf
|
||||
|
||||
use slurm && myconf+=( "--with-slurm=${EPREFIX}/usr" )
|
||||
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
24
sys-cluster/libyogrt/metadata.xml
Normal file
24
sys-cluster/libyogrt/metadata.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>lssndrbarbieri@gmail.com</email>
|
||||
<name>Alessandro Barbieri</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
This library provides functions to query a resource manager for the time remaining in a job.
|
||||
It supports:
|
||||
LCRM
|
||||
LSF
|
||||
MOAB
|
||||
SLURM
|
||||
AIX w/ SLURM
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="slurm">Add support for the slurm resource manager</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/LLNL/libyogrt/issues</bugs-to>
|
||||
<remote-id type="github">LLNL/libyogrt</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user