void-packages/srcpkgs/slurm-wlm/template
Đoàn Trần Công Danh 4b97cd2fb4 srcpkgs/s*: convert patches to -Np1
```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.-][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.-][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

42 lines
1.4 KiB
Bash

# Template file for 'slurm-wlm'
pkgname=slurm-wlm
version=19.05.5.1
revision=4
_distver="${version//./-}"
wrksrc="slurm-slurm-${_distver}"
build_style=gnu-configure
configure_args="--disable-static"
hostmakedepends="perl cgit python pkg-config"
# XXX: ofed, DataWarp, netloc, blcr
makedepends="munge-devel lua53-devel pam-devel openssl-devel gtk+-devel
ncurses-devel readline-devel libmariadbclient-devel json-c-devel libhwloc-devel
freeipmi-devel"
short_desc="Workload manager for Linux clusters of all sizes"
maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="http://slurm.schedmd.com/slurm.html"
distfiles="https://github.com/SchedMD/slurm/archive/slurm-${_distver}.tar.gz"
checksum=e53e67bd0bb4c37a9c481998764a746467a96bc41d6527569080514f36452c07
CFLAGS="-fcommon"
# Fix plugin loading. Yes, this disables hardening, this is on purpose
# https://bugs.schedmd.com/show_bug.cgi?id=2443
LDFLAGS="-Wl,-z,lazy"
if [ "$XBPS_TARGET_WORDSIZE" = "32" ]; then
# configure: error: 32-bit support is deprecated, and not tested
# regularly. Use at your own risk.
broken="32-bit support is deprecated by upstream"
fi
if [ -z "${CROSS_BUILD}" ]; then
# The below at time of writing can not be cross compiled
makedepends+=" rrdtool-devel hdf5-devel libnuma-devel"
fi
post_install() {
# Rename slurm(1) manpage to avoid conflict with slurm
mv ${DESTDIR}/usr/share/man/man1/slurm.1 ${DESTDIR}/usr/share/man/man1/slurm-wlm.1
}