Received: by mail.netbsd.org (Postfix, from userid 605) id 2F9D084D94; Sun, 9 Aug 2020 23:18:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AAE1284D75 for ; Sun, 9 Aug 2020 23:18:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id IhNYoJQc2G1B for ; Sun, 9 Aug 2020 23:18:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3369D84CEA for ; Sun, 9 Aug 2020 23:18:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2910AFB28; Sun, 9 Aug 2020 23:18:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1597015111277210" MIME-Version: 1.0 Date: Sun, 9 Aug 2020 23:18:31 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/pkgtools/pbulk To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200809231831.2910AFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1597015111277210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sun Aug 9 23:18:31 UTC 2020 Modified Files: pkgsrc/pkgtools/pbulk: Makefile pkgsrc/pkgtools/pbulk/files/pbulk/scripts: build Log Message: pbulk-0.70: store end of build in epoche format too This is nicer for using bulk builds as benchmark as it doesn't require parsing dates. To generate a diff of this commit: cvs rdiff -u -r1.87 -r1.88 pkgsrc/pkgtools/pbulk/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/pkgtools/pbulk/files/pbulk/scripts/build Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1597015111277210 Content-Disposition: inline Content-Length: 1326 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pbulk/Makefile diff -u pkgsrc/pkgtools/pbulk/Makefile:1.87 pkgsrc/pkgtools/pbulk/Makefile:1.88 --- pkgsrc/pkgtools/pbulk/Makefile:1.87 Sat Apr 4 20:44:36 2020 +++ pkgsrc/pkgtools/pbulk/Makefile Sun Aug 9 23:18:30 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.87 2020/04/04 20:44:36 riastradh Exp $ +# $NetBSD: Makefile,v 1.88 2020/08/09 23:18:30 joerg Exp $ -PKGNAME= pbulk-0.69 +PKGNAME= pbulk-0.70 COMMENT= Modular bulk build framework .include "../../pkgtools/pbulk/Makefile.common" Index: pkgsrc/pkgtools/pbulk/files/pbulk/scripts/build diff -u pkgsrc/pkgtools/pbulk/files/pbulk/scripts/build:1.5 pkgsrc/pkgtools/pbulk/files/pbulk/scripts/build:1.6 --- pkgsrc/pkgtools/pbulk/files/pbulk/scripts/build:1.5 Tue Sep 16 18:21:30 2008 +++ pkgsrc/pkgtools/pbulk/files/pbulk/scripts/build Sun Aug 9 23:18:30 2020 @@ -1,5 +1,5 @@ #!@SH@ -# $NetBSD: build,v 1.5 2008/09/16 18:21:30 joerg Exp $ +# $NetBSD: build,v 1.6 2020/08/09 23:18:30 joerg Exp $ # # Copyright (c) 2007 Joerg Sonnenberger . # All rights reserved. @@ -54,7 +54,8 @@ case "${master_mode}" in ;; esac -date '+BUILD_END_ISO=%Y-%m-%d %H:%M' >> ${loc}/status +date '+BUILD_END_ISO=%Y-%m-%d %H:%M +BUILD_END_EPOCHE=%s' >> ${loc}/status echo "Building pkg_summary..." cd ${packages}/All --_----------=_1597015111277210--