diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2012-07-01 20:47:45 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2012-07-01 20:47:45 +0000 |
commit | 857f013b41ee081ecfa15afe3b79c78592b224a4 (patch) | |
tree | 2a240139687ad63398337e943060842df1c1d267 /ports-mgmt/tinderbox | |
parent | c8a39512645f4174fe32ab77c44091abfe9a6de9 (diff) | |
download | ports-857f013b41ee081ecfa15afe3b79c78592b224a4.tar.gz ports-857f013b41ee081ecfa15afe3b79c78592b224a4.zip |
Notes
Diffstat (limited to 'ports-mgmt/tinderbox')
-rw-r--r-- | ports-mgmt/tinderbox/Makefile | 1 | ||||
-rw-r--r-- | ports-mgmt/tinderbox/files/patch-lib__tc_command.sh | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/ports-mgmt/tinderbox/Makefile b/ports-mgmt/tinderbox/Makefile index 72540655f269..25ef18b932b2 100644 --- a/ports-mgmt/tinderbox/Makefile +++ b/ports-mgmt/tinderbox/Makefile @@ -6,6 +6,7 @@ PORTNAME= tinderbox PORTVERSION= 3.4.1 +PORTREVISION= 1 CATEGORIES= ports-mgmt MASTER_SITES= http://tinderbox.marcuscom.com/ \ http://T32.TecNik93.com/FreeBSD/ports/${PORTNAME}/sources/ diff --git a/ports-mgmt/tinderbox/files/patch-lib__tc_command.sh b/ports-mgmt/tinderbox/files/patch-lib__tc_command.sh new file mode 100644 index 000000000000..a4b4ccc42320 --- /dev/null +++ b/ports-mgmt/tinderbox/files/patch-lib__tc_command.sh @@ -0,0 +1,14 @@ +--- ./lib/tc_command.sh.orig 2012-03-11 18:29:27.000000000 +0100 ++++ ./lib/tc_command.sh 2012-03-11 18:30:06.000000000 +0100 +@@ -2299,9 +2299,9 @@ + oldcwd=${PWD} + path=$(tinderLoc portstree ${portstree}) + cd "${path}/ports/${port}" +- distinfo=$(env PORTSDIR="${path}/ports" make -V MD5_FILE) ++ distinfo=$(env PORTSDIR="${path}/ports" make -V DISTINFO_FILE) + if [ -f "${distinfo}" ]; then +- for df in $(grep '^MD5' ${distinfo} | awk -F '[\(\)]' '{print $2}'); do ++ for df in $(grep '^SHA256' ${distinfo} | awk -F '[\(\)]' '{print $2}'); do + if ! grep -q "^${df}\$" ${disttmp}; then + echo ${df} >> ${disttmp} + fi |