1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Use jot(1) instead of seq(1) (GNU seq(1) does not exist on FreeBSD. Use jot(1) instead.)

- While here drop MD5 support

PR:		144602
Submitted by:	lth@
Approved by:	maintainer timeout
Feature safe:	yes
This commit is contained in:
Martin Wilke 2011-02-05 06:09:10 +00:00
parent 8d9a6cc77e
commit 5ef5c452ab
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=268640
4 changed files with 50 additions and 2 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= munin
PORTVERSION= 1.4.5
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= sysutils perl5
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable/${PORTVERSION}
PKGNAMESUFFIX= -node

View File

@ -1,3 +1,2 @@
MD5 (munin-1.4.5.tar.gz) = 4ae84b9a27b686c3819d8d7b51d8cb4c
SHA256 (munin-1.4.5.tar.gz) = 4f8632713c5267e282b091cf7ef5163c5de321536e76dbaab2204aa23c957138
SIZE (munin-1.4.5.tar.gz) = 1231622

View File

@ -0,0 +1,11 @@
--- ./plugins/node.d/colour_tester.in.orig 2010-03-09 22:23:28.000000000 +0100
+++ ./plugins/node.d/colour_tester.in 2010-03-09 22:23:46.000000000 +0100
@@ -29,7 +29,7 @@ NUMCOL=$(($I - 1))
do_ () { # Fetch
- for I in $(seq 1 $NUMCOL); do
+ for I in $(jot - 1 $NUMCOL); do
echo "l$I.value $I"
done
}

View File

@ -0,0 +1,38 @@
--- ./plugins/node.d/squeezebox_.in.orig 2010-03-09 22:23:57.000000000 +0100
+++ ./plugins/node.d/squeezebox_.in 2010-03-09 22:24:16.000000000 +0100
@@ -157,7 +157,7 @@ if [ "$CMD" = "years" ]; then
# echo "graph_order y0"
echo -n "graph_order y"; echo $years_array | sed 's/ / y/g'
- for i in `seq 0 $no_of_years`; do
+ for i in `jot - 0 $no_of_years`; do
year=$(echo ${arr1[$i]})
if [ $year = 0 ]; then
echo y0.label No year
@@ -172,7 +172,7 @@ if [ "$CMD" = "years" ]; then
done
exit 0
fi
- for i in `seq 0 $no_of_years`; do
+ for i in `jot - 0 $no_of_years`; do
year=$(echo ${arr1[$i]})
echo -n "y${year}.value "
printf "%b" "albums 0 0 year:${year}\nexit\n" | $NC $HOST $PORT | sed 's/%3A/:/g' | cut -d ':' -f 3
@@ -183,7 +183,7 @@ elif [ "$CMD" = "signalstrength" -o "$CM
echo "graph_category Squeezebox"
COUNT=$(printf "%b" "player count ?\nexit\n" | $NC $HOST $PORT | cut -d " " -f 3)
(( COUNT-- ))
- for ID in $(seq 0 $COUNT); do
+ for ID in $(jot - 0 $COUNT); do
MAC=$(printf "%b" "player id $ID ?\nexit\n" | $NC $HOST $PORT | cut -d " " -f 4 | sed 's/%3A/:/g')
NAME=$(printf "%b" "player name $MAC ?\nexit\n" | $NC $HOST $PORT | cut -d " " -f 4 | sed 's/%20/ /g')
MAC2=$(echo $MAC | sed 's/://g; s/\./_/g')
@@ -193,7 +193,7 @@ elif [ "$CMD" = "signalstrength" -o "$CM
fi
COUNT=$(printf "%b" "player count ?\nexit\n" | $NC $HOST $PORT | cut -d " " -f 3)
(( COUNT-- ))
- for ID in $(seq 0 $COUNT); do
+ for ID in $(jot - 0 $COUNT); do
MAC=$(printf "%b" "player id $ID ?\nexit\n" | $NC $HOST $PORT | cut -d " " -f 4 | sed 's/%3A/:/g')
VAL=$(printf "%b" "$MAC $CMD ?\nexit\n"| $NC $HOST $PORT | cut -d " " -f 2- | sed "s/$CMD //")
MAC2=$(echo $MAC| sed 's/://g')