diff options
author | Silvino Silva <silvino@bk.ru> | 2017-02-04 00:46:40 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2017-02-04 00:46:40 +0000 |
commit | 4208a8936840298b00e6930fb0501db27a5cde0f (patch) | |
tree | 662a5e7ce5569249b63c9f4925ba4f75b4c44575 /tools/scripts | |
parent | 5509a84e0d1a2732a429120e0bd26b83e119481f (diff) | |
parent | a671b0c01821d46d9f783393b887d7987ec10161 (diff) | |
download | doc-4208a8936840298b00e6930fb0501db27a5cde0f.tar.gz |
Merge branch 'r-0.3.0' into develop
Diffstat (limited to 'tools/scripts')
-rw-r--r-- | tools/scripts/autoport.sh | 24 | ||||
-rw-r--r-- | tools/scripts/pkgmk-test.conf | 38 | ||||
-rw-r--r-- | tools/scripts/pkgmk-test.sh | 5 | ||||
-rwxr-xr-x[-rw-r--r--] | tools/scripts/replace.sh | 1 |
4 files changed, 68 insertions, 0 deletions
diff --git a/tools/scripts/autoport.sh b/tools/scripts/autoport.sh new file mode 100644 index 0000000..9965936 --- /dev/null +++ b/tools/scripts/autoport.sh @@ -0,0 +1,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 diff --git a/tools/scripts/pkgmk-test.conf b/tools/scripts/pkgmk-test.conf new file mode 100644 index 0000000..2336685 --- /dev/null +++ b/tools/scripts/pkgmk-test.conf @@ -0,0 +1,38 @@ +# +# /etc/pkgmk.conf: pkgmk(8) configuration +# + +export CFLAGS="-O2 -march=x86-64" +export CXXFLAGS="${CFLAGS}" + +export MAKEFLAGS="-j4" + +case ${PKGMK_ARCH} in + "64"|"") + ;; + "32") + export CFLAGS="${CFLAGS} -m32" + export CXXFLAGS="${CXXFLAGS} -m32" + export LDFLAGS="${LDFLAGS} -m32" + export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig" + ;; + *) + echo "Unknown architecture selected! Exiting." + exit 1 + ;; +esac + + PKGMK_SOURCE_MIRRORS=(https://ports.c9.core/distfiles/) +# PKGMK_SOURCE_DIR="$PWD" +# PKGMK_PACKAGE_DIR="$PWD" +# PKGMK_WORK_DIR="$PWD/work" +# PKGMK_DOWNLOAD="no" +# PKGMK_IGNORE_FOOTPRINT="no" +# PKGMK_IGNORE_NEW="no" +# PKGMK_NO_STRIP="no" +# PKGMK_DOWNLOAD_PROG="wget" +# PKGMK_WGET_OPTS="" +# PKGMK_CURL_OPTS="" +# PKGMK_COMPRESSION_MODE="gz" + + diff --git a/tools/scripts/pkgmk-test.sh b/tools/scripts/pkgmk-test.sh new file mode 100644 index 0000000..5509ac2 --- /dev/null +++ b/tools/scripts/pkgmk-test.sh @@ -0,0 +1,5 @@ +#!/bin/bash +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +CONF=${DIR}/pkgmk-test.conf + +fakeroot pkgmk -cf $CONF -d $1 diff --git a/tools/scripts/replace.sh b/tools/scripts/replace.sh index 8e393f0..e925e7d 100644..100755 --- a/tools/scripts/replace.sh +++ b/tools/scripts/replace.sh @@ -1,5 +1,6 @@ #!/bin/sh +# find and replace string on files folder=$1 oldstring=$2 newstring=$3 |