pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/benchmarks
Module Name: pkgsrc
Committed By: rillig
Date: Sun Nov 3 11:55:30 UTC 2019
Modified Files:
pkgsrc/benchmarks/glmark2: Makefile
pkgsrc/benchmarks/hbench: Makefile
pkgsrc/benchmarks/iozone: options.mk
pkgsrc/benchmarks/netperf: Makefile
pkgsrc/benchmarks/skampi: Makefile
pkgsrc/benchmarks/sysbench: options.mk
pkgsrc/benchmarks/ubench: Makefile
pkgsrc/benchmarks/xengine: Makefile
Log Message:
benchmarks: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
No manual corrections.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/benchmarks/glmark2/Makefile
cvs rdiff -u -r1.60 -r1.61 pkgsrc/benchmarks/hbench/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/benchmarks/iozone/options.mk
cvs rdiff -u -r1.13 -r1.14 pkgsrc/benchmarks/netperf/Makefile
cvs rdiff -u -r1.28 -r1.29 pkgsrc/benchmarks/skampi/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/benchmarks/sysbench/options.mk
cvs rdiff -u -r1.10 -r1.11 pkgsrc/benchmarks/ubench/Makefile
cvs rdiff -u -r1.26 -r1.27 pkgsrc/benchmarks/xengine/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/benchmarks/glmark2/Makefile
diff -u pkgsrc/benchmarks/glmark2/Makefile:1.15 pkgsrc/benchmarks/glmark2/Makefile:1.16
--- pkgsrc/benchmarks/glmark2/Makefile:1.15 Mon Sep 2 13:20:10 2019
+++ pkgsrc/benchmarks/glmark2/Makefile Sun Nov 3 11:55:29 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2019/09/02 13:20:10 adam Exp $
+# $NetBSD: Makefile,v 1.16 2019/11/03 11:55:29 rillig Exp $
DISTNAME= glmark2-2017.07
PKGREVISION= 1
@@ -13,7 +13,7 @@ LICENSE= gnu-gpl-v3 AND modified-bsd
USE_LANGUAGES= c c++11
-PYTHON_VERSIONS_ACCEPTED= 27
+PYTHON_VERSIONS_ACCEPTED= 27
USE_TOOLS+= pkg-config
Index: pkgsrc/benchmarks/hbench/Makefile
diff -u pkgsrc/benchmarks/hbench/Makefile:1.60 pkgsrc/benchmarks/hbench/Makefile:1.61
--- pkgsrc/benchmarks/hbench/Makefile:1.60 Sun Aug 11 13:17:58 2019
+++ pkgsrc/benchmarks/hbench/Makefile Sun Nov 3 11:55:29 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.60 2019/08/11 13:17:58 wiz Exp $
+# $NetBSD: Makefile,v 1.61 2019/11/03 11:55:29 rillig Exp $
DISTNAME= hbench-OS-1.1
PKGNAME= hbench-1.1
@@ -16,12 +16,12 @@ COMMENT= Suite of portable benchmarks t
DEPENDS+= gnuplot>=3.7:../../graphics/gnuplot
-WRKSRC= ${WRKDIR}/HBenchOS
-OSVERSION_SPECIFIC= YES
-BUILD_TARGET= build
-USE_TOOLS+= perl:run
+WRKSRC= ${WRKDIR}/HBenchOS
+OSVERSION_SPECIFIC= YES
+BUILD_TARGET= build
+USE_TOOLS+= perl:run
OVERRIDE_GNU_CONFIG_SCRIPTS= yes
-MAKE_JOBS_SAFE= no
+MAKE_JOBS_SAFE= no
GET_ARCH_CMD= ${PKGSRCDIR:Q}/mk/gnu-config/config.guess | ${SED} -e 's/-.*-.*$$//'
GET_OS_CMD= ${PKGSRCDIR:Q}/mk/gnu-config/config.guess | ${SED} -e 's/^[^-]*-[^-]*-//;s/-.*$$//'
Index: pkgsrc/benchmarks/iozone/options.mk
diff -u pkgsrc/benchmarks/iozone/options.mk:1.1 pkgsrc/benchmarks/iozone/options.mk:1.2
--- pkgsrc/benchmarks/iozone/options.mk:1.1 Fri Aug 29 06:14:22 2008
+++ pkgsrc/benchmarks/iozone/options.mk Sun Nov 3 11:55:29 2019
@@ -1,11 +1,11 @@
-# $NetBSD: options.mk,v 1.1 2008/08/29 06:14:22 bjs Exp $
+# $NetBSD: options.mk,v 1.2 2019/11/03 11:55:29 rillig Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.iozone
PKG_SUPPORTED_OPTIONS= threads
CHECK_BUILTIN.pthread:= yes
-. include "../../mk/pthread.builtin.mk"
+.include "../../mk/pthread.builtin.mk"
CHECK_BUILTIN.pthread:= no
.if !empty(USE_BUILTIN.pthread:M[Yy][Ee][Ss])
Index: pkgsrc/benchmarks/netperf/Makefile
diff -u pkgsrc/benchmarks/netperf/Makefile:1.13 pkgsrc/benchmarks/netperf/Makefile:1.14
--- pkgsrc/benchmarks/netperf/Makefile:1.13 Thu Feb 1 13:40:27 2018
+++ pkgsrc/benchmarks/netperf/Makefile Sun Nov 3 11:55:29 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2018/02/01 13:40:27 jperkin Exp $
+# $NetBSD: Makefile,v 1.14 2019/11/03 11:55:29 rillig Exp $
DISTNAME= netperf-2.7.0
CATEGORIES= benchmarks
@@ -17,7 +17,7 @@ CFLAGS.IRIX+= -DIRIX
.include "../../mk/compiler.mk"
-. if !empty(PKGSRC_COMPILER:Mclang) || !empty(CC_VERSION:Mgcc-[6-9]*)
+.if !empty(PKGSRC_COMPILER:Mclang) || !empty(CC_VERSION:Mgcc-[6-9]*)
CFLAGS.SunOS+= -D_XOPEN_SOURCE=600 -D__EXTENSIONS__
.else
CFLAGS.SunOS+= -D_XOPEN_SOURCE=500 -D__EXTENSIONS__
Index: pkgsrc/benchmarks/skampi/Makefile
diff -u pkgsrc/benchmarks/skampi/Makefile:1.28 pkgsrc/benchmarks/skampi/Makefile:1.29
--- pkgsrc/benchmarks/skampi/Makefile:1.28 Mon Jan 1 18:16:35 2018
+++ pkgsrc/benchmarks/skampi/Makefile Sun Nov 3 11:55:29 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.28 2018/01/01 18:16:35 rillig Exp $
+# $NetBSD: Makefile,v 1.29 2019/11/03 11:55:29 rillig Exp $
#
DISTNAME= skampi
@@ -14,8 +14,8 @@ LICENSE= gnu-gpl-v2
DIST_SUBDIR= ${PKGNAME_NOREV}
WRKSRC= ${WRKDIR}/skampi-5.0.4-r0355
-USE_TOOLS+= gmake pax
-BUILD_TARGET= skampi
+USE_TOOLS+= gmake pax
+BUILD_TARGET= skampi
INSTALLATION_DIRS= bin
# Force file regeneration:
Index: pkgsrc/benchmarks/sysbench/options.mk
diff -u pkgsrc/benchmarks/sysbench/options.mk:1.4 pkgsrc/benchmarks/sysbench/options.mk:1.5
--- pkgsrc/benchmarks/sysbench/options.mk:1.4 Thu May 27 10:49:07 2010
+++ pkgsrc/benchmarks/sysbench/options.mk Sun Nov 3 11:55:29 2019
@@ -1,7 +1,7 @@
-# $NetBSD: options.mk,v 1.4 2010/05/27 10:49:07 adam Exp $
+# $NetBSD: options.mk,v 1.5 2019/11/03 11:55:29 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.sysbench
-PKG_SUPPORTED_OPTIONS+= mysql pgsql doc
+PKG_SUPPORTED_OPTIONS+= mysql pgsql doc
.include "../../mk/bsd.options.mk"
Index: pkgsrc/benchmarks/ubench/Makefile
diff -u pkgsrc/benchmarks/ubench/Makefile:1.10 pkgsrc/benchmarks/ubench/Makefile:1.11
--- pkgsrc/benchmarks/ubench/Makefile:1.10 Tue Dec 29 19:49:17 2015
+++ pkgsrc/benchmarks/ubench/Makefile Sun Nov 3 11:55:29 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2015/12/29 19:49:17 dholland Exp $
+# $NetBSD: Makefile,v 1.11 2019/11/03 11:55:29 rillig Exp $
#
DISTNAME= ubench-0.32
@@ -11,7 +11,7 @@ HOMEPAGE= http://www.phystech.com/downlo
COMMENT= The Unix Benchmark utility
LICENSE= gnu-gpl-v2
-BUILD_TARGET= ubench
+BUILD_TARGET= ubench
INSTALLATION_DIRS= bin ${PKGMANDIR}/man8 share/doc/ubench
CFLAGS.SunOS+= -DSunOS
Index: pkgsrc/benchmarks/xengine/Makefile
diff -u pkgsrc/benchmarks/xengine/Makefile:1.26 pkgsrc/benchmarks/xengine/Makefile:1.27
--- pkgsrc/benchmarks/xengine/Makefile:1.26 Thu Oct 9 14:06:00 2014
+++ pkgsrc/benchmarks/xengine/Makefile Sun Nov 3 11:55:30 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2014/10/09 14:06:00 wiz Exp $
+# $NetBSD: Makefile,v 1.27 2019/11/03 11:55:30 rillig Exp $
DISTNAME= xengine-1.0.1
PKGREVISION= 4
@@ -9,9 +9,9 @@ DISTFILES= part01.z patch1.z
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
COMMENT= Reciprocating engine for X
-WRKSRC= ${WRKDIR}
-DIST_SUBDIR= xengine
-USE_IMAKE= yes
+WRKSRC= ${WRKDIR}
+DIST_SUBDIR= xengine
+USE_IMAKE= yes
PATCH_DIST_STRIP= -p1
USE_TOOLS+= gzcat patch sed
Home |
Main Index |
Thread Index |
Old Index