blob: 99659363e52508c7427bf83bf1d0050c3695f3ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
# Root Directory
DIR=$(dirname "$PWD");
DIR_CONF=$DIR"/conf"
COL_DIR=$DIR"/c9-ports/"
#rm ck4up.conf
for port in ${COL_DIR}*/ ; do
echo "Checking port $port"
# (cd $port && git clean -f -d . )
# prtwash -p -s $port
prtverify -m clean-repo $port
#echo "${port}Pkgfile;"
#source ${port}Pkgfile;
#echo "$name md5 ${source[0]} @TAR@" >> ck4up.conf
done
portspage --title=c9-ports . > index.html
httpup-repgen $COL_DIR
|