mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
sys-block/vblade: bump to v24
Package-Manager: Portage-2.3.48, Repoman-2.3.10
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST vblade-20.tgz 26689 BLAKE2B 854b42535c884b670ae94ff3b27272664f6470dd1cb1993665fd64604a556700b05785de6bf5d2dd3c79f6bbf867248c77e4aa6218240e0a3c43535fdc556568 SHA512 b6c10ff9d75a2fc99c93af6b6de8f23c8b17ab70e2d5ed7049389ee8752ad001b3940764af16ff06f7f38c7bc528065edb0f285663af6fdd00fe58f022c26f02
|
||||
DIST vblade-23.tar.gz 27432 BLAKE2B 2151656f593771e44fe17a60216dceb4286a3a8d20cb88112c745213fb9c480542330dc67b0936e02cafd8c8de2f43e5ce942575f8508ba80ffde9676c75d264 SHA512 a27379933b5c0fc84966f47e0ee0089fe978fe77ea38d91c21fb6bb6bc4fa7f393b8b4c57f84c6840b549908eb8666847f121b836e3a076895e038e8096c0cfa
|
||||
DIST vblade-24.tar.gz 27638 BLAKE2B 8a99d571b3b97d47ce9c81ef8141e0d6477181e88aa56e3ea7d03c689c747a60922c21969ea009cf978a3cb15bcb969b12df50f2bd8e6bb498a8bc6d483be1d3 SHA512 d5db85581db119b83a129fc00635d37b6d8fccfaf685dc58c68773c7299f7fe4e01735ec7fea6a0494a0cf2bc1400d643a720b55e4d6de37a0b8ec15d00d1f2a
|
||||
|
||||
125
sys-block/vblade/files/init.d-vblade.vblade0-r2
Normal file
125
sys-block/vblade/files/init.d-vblade.vblade0-r2
Normal file
@@ -0,0 +1,125 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License, v2 or later
|
||||
|
||||
extra_commands="checkconfig"
|
||||
|
||||
depend() {
|
||||
need net
|
||||
}
|
||||
|
||||
# bug #218043
|
||||
if [ ! -f /etc/init.d/sysfs ]; then
|
||||
conf="$(add_suffix /etc/conf.d/vblade)"
|
||||
[ -e "${conf}" ] && . "${conf}"
|
||||
vblade_name="${myservice#*.}"
|
||||
else
|
||||
conf="/etc/conf.d/vblade"
|
||||
[ -e "${conf}" ] && . "${conf}"
|
||||
vblade_name="${RC_SVCNAME#*.}"
|
||||
fi
|
||||
|
||||
vblade_conf_variable="config_${vblade_name}"
|
||||
vblade_conf="${!vblade_conf_variable}"
|
||||
pidfile="/var/run/vblade-${vblade_name}.pid"
|
||||
srvname="vblade.${vblade_name}"
|
||||
|
||||
getconfig() {
|
||||
args=""
|
||||
while getopts b:dsrm: FLAG; do
|
||||
case "${FLAG}" in
|
||||
b) is_valid_numeric "${OPTARG}" && args="${args} -b ${OPTARG}" || ewarn "vblade block size argument is non-numeric IGNORING";;
|
||||
|
||||
d|s|r) args="${args} -${FLAG}";;
|
||||
|
||||
# FIXME: there is no sanity checking on the MAC address...we'll leave that up to vblade
|
||||
m) args="${args} -m ${OPTARG}";;
|
||||
esac
|
||||
done
|
||||
|
||||
shift $(( OPTIND - 1 ))
|
||||
|
||||
shelf=${1}
|
||||
slot=${2}
|
||||
netif=${3}
|
||||
src=${4}
|
||||
|
||||
export args shelf slot netif src
|
||||
}
|
||||
|
||||
checkconfig() {
|
||||
if [ -z "${vblade_conf}" ]; then
|
||||
eerror "vblade configuration not specified for ${vblade_name}"
|
||||
return 1
|
||||
fi
|
||||
getconfig ${vblade_conf}
|
||||
|
||||
is_valid_numeric "${shelf}" 0
|
||||
if [ $? -ne 0 ]; then
|
||||
eerror "Shelf '${shelf}' is non-numeric or less than zero."
|
||||
return 1
|
||||
fi
|
||||
is_valid_numeric "${slot}" 0 15
|
||||
if [ $? -ne 0 ]; then
|
||||
eerror "Slot '${slot}' is outside the valid range [0..15]."
|
||||
return 1
|
||||
fi
|
||||
|
||||
sysfs_base="/sys/class/net/"
|
||||
procfs_base="/proc/sys/net/ipv4/conf/"
|
||||
if test ! \( -e "${sysfs_base}${netif}" -o -e "${procfs_base}${netif}" \); then
|
||||
eerror "Network interface '${netif}' does not exist"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if test ! \( -f "${src}" -o -b "${src}" \) ; then
|
||||
eerror "Source '${src}' must be a file or block device"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if test ! \( -e "${src}" -a -r "${src}" \) ; then
|
||||
eerror "Source '${src}' is not readable."
|
||||
return 1
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
is_valid_numeric() {
|
||||
num="${1}"
|
||||
min="${2}"
|
||||
max="${3}"
|
||||
# non-numeric
|
||||
test "$num" -ge "0" 2>/dev/null
|
||||
rc=$?
|
||||
test "$rc" -eq 2 && return 2
|
||||
# check for min
|
||||
test -z "$min" && return 0
|
||||
test "$num" -lt "$min" && return 1
|
||||
# check for max
|
||||
test -z "$max" && return 0
|
||||
test "$num" -gt "$max" && return 1
|
||||
# done
|
||||
return 0
|
||||
}
|
||||
|
||||
start() {
|
||||
checkconfig || return 1
|
||||
ebegin "Starting ${srvname}: e${shelf}.${slot} on ${netif} using '${src}'"
|
||||
export LOGTAG="${srvname}"
|
||||
start-stop-daemon --start --quiet \
|
||||
--pidfile ${pidfile} --background \
|
||||
--make-pidfile --exec /usr/sbin/vbladed -- \
|
||||
${args} ${shelf} ${slot} ${netif} "${src}"
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping ${srvname}"
|
||||
getconfig ${vblade_conf}
|
||||
ps -Ao pid,args | egrep "^[[:space:]]*[[:digit:]]+ /usr/sbin/vblade.* ${shelf} ${slot} " | awk '{print $1}' | xargs kill
|
||||
eend $?
|
||||
}
|
||||
|
||||
# vim: ft=gentoo-init-d syntax=gentoo-init-d :
|
||||
# vim: ai sw=4 sts=4 ts=4 :
|
||||
39
sys-block/vblade/vblade-24.ebuild
Normal file
39
sys-block/vblade/vblade-24.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="vblade exports a block device using AoE"
|
||||
HOMEPAGE="https://github.com/OpenAoE/vblade"
|
||||
SRC_URI="https://github.com/OpenAoE/${PN}/archive/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
||||
|
||||
RDEPEND="sys-apps/util-linux"
|
||||
|
||||
S="${WORKDIR}/${PN}-${P}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i -e 's,^CFLAGS.*,CFLAGS += -Wall,' \
|
||||
-e 's:-o vblade:${LDFLAGS} \0:' \
|
||||
makefile || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CC="$(tc-getCC)"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dosbin vblade
|
||||
dosbin "${FILESDIR}"/vbladed
|
||||
doman vblade.8
|
||||
dodoc HACKING NEWS README
|
||||
newconfd "${FILESDIR}"/conf.d-vblade vblade
|
||||
newinitd "${FILESDIR}"/init.d-vblade.vblade0-r2 vblade.vblade0
|
||||
}
|
||||
Reference in New Issue
Block a user