summaryrefslogtreecommitdiff
path: root/pkgtools/pbulk
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2007-07-25 11:07:28 +0000
committerjoerg <joerg@pkgsrc.org>2007-07-25 11:07:28 +0000
commita25b67ca2e3d4656053a2c50553ffab1304764a8 (patch)
treeebc2ba07aaf5d8a037e89a79b6f048302caf75a3 /pkgtools/pbulk
parent554cf5daf15a2da709f96eb945a6ab6b4beb6f26 (diff)
downloadpkgsrc-a25b67ca2e3d4656053a2c50553ffab1304764a8.tar.gz
Remove an additional ) and correct the assignment of a variable.
Bump to 0.8.
Diffstat (limited to 'pkgtools/pbulk')
-rw-r--r--pkgtools/pbulk/Makefile4
-rwxr-xr-xpkgtools/pbulk/files/pbulk/scripts/create-report-html.awk4
-rwxr-xr-xpkgtools/pbulk/files/pbulk/scripts/report4
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/pbulk/Makefile b/pkgtools/pbulk/Makefile
index 30b2a49ecc2..0e0cde6a5c8 100644
--- a/pkgtools/pbulk/Makefile
+++ b/pkgtools/pbulk/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2007/07/20 19:39:33 joerg Exp $
+# $NetBSD: Makefile,v 1.10 2007/07/25 11:07:28 joerg Exp $
-DISTNAME= pbulk-0.7
+DISTNAME= pbulk-0.8
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk b/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk
index 9afc67600ef..db9639942e0 100755
--- a/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk
+++ b/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk
@@ -1,5 +1,5 @@
#!@AWK@ -f
-# $NetBSD: create-report-html.awk,v 1.4 2007/07/20 19:39:34 joerg Exp $
+# $NetBSD: create-report-html.awk,v 1.5 2007/07/25 11:07:28 joerg Exp $
#
# Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
# All rights reserved.
@@ -165,7 +165,7 @@ BEGIN {
print " <body>" > html_report
printf(" <h1> pkgsrc bulk build for %s</h1>\n", pkgsrc_platform) > html_report
printf(" <h2> Build start: %s</h2>\n", pkgsrc_build_start_iso) > html_report
- printf(" <h2> Build end: %s</h2>\n", pkgsrc_build_end_iso)) > html_report
+ printf(" <h2> Build end: %s</h2>\n", pkgsrc_build_end_iso) > html_report
print " <hr />" > html_report
all_pkgs = pkgs_done + pkgs_failed + pkgs_prefailed + pkgs_indirect_failed + pkgs_indirect_prefailed
diff --git a/pkgtools/pbulk/files/pbulk/scripts/report b/pkgtools/pbulk/files/pbulk/scripts/report
index 079dbecb2d1..37495e7effc 100755
--- a/pkgtools/pbulk/files/pbulk/scripts/report
+++ b/pkgtools/pbulk/files/pbulk/scripts/report
@@ -1,5 +1,5 @@
#!@SH@
-# $NetBSD: report,v 1.3 2007/07/20 19:39:34 joerg Exp $
+# $NetBSD: report,v 1.4 2007/07/25 11:07:28 joerg Exp $
#
# Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
# All rights reserved.
@@ -55,7 +55,7 @@ while read line; do
build_start_iso=${line#BUILD_START_ISO=}
;;
BUILD_START_DIR=*)
- build_start_iso=${line#BUILD_START_DIR=}
+ build_start_dir=${line#BUILD_START_DIR=}
;;
PLATFORM=*)
platform=${line#PLATFORM=}