pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/benchmarks/google-benchmark



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon May 27 12:17:19 UTC 2024

Modified Files:
        pkgsrc/benchmarks/google-benchmark: Makefile PLIST distinfo

Log Message:
google-benchmark: updated to 1.8.4

v1.8.4

Audit MSVC references in cmake files to consider clang++
Make json and csv output consistent.
Update bazel.yml
Fix building on MinGW: default WINVER is too old
Increase the kMaxIterations limit
Set -Wno-unused-variable for tests
Add no-unititialized-variable to tests
Add Python 3.12 support
Change nanobind linkage to response file approach on macOS
Reapply size optimizations for clang & MSVC, LTO for Mac+Linux
[bindings] Add LTO builds on Windows+MSVC
Add pre-commit config and GitHub Actions job
Replace isort hook with ruff builtin import sorting
Add setuptools_scm for dynamic zero-config Python versioning
Fix unit tests compilation by non-gnu/msvc compilers with c++11 support.
Fixed compiler warnings
Switch out black for ruff format
Add Missing \n at the End of Error Log String
Fix CMakeLists.txt for perf_counters_test
[CI] Fix sanitizer builds by pinning the LLVM revision
Support windows MSYS2 environments
Fix pre-commit GitHub Actions job
[NFC] complexity_n is not of IterationCount type
Fix editable install by unsetting build_ext.copy_extensions_to_source
Upgrade core bazel dependencies
Run pre-commit autoupdate, fix stale pyproject.toml comments
Check out repo at depth 0 for Python tests, bump Python and PyPI actions
Fix mis-matching argument in closing tag for cmake macro
define HOST_NAME_MAX for z/OS
Fix division by zero for low frequency timers for CV statistics
Remove the use of "Sanity" and replace it with "Safety"
CycleClock: use RDTIME instead of RDCYCLE on RISC-V
Enable Large-file Support
Fix per-thread timing error on z/OS
Avoid leaking LFS flags to reverse dependencies
Change Fixture to use non-const SetUp and TearDown in example
fix: fail to import gbench in bazel and python3.12
Issue1731 created console does not receive output
tools/compare: don't actually discard valid (but zero) pvalue
Issue 1734: Streams not flushed if not running actual benchmarks
fix(cmakelists.txt): enforce CMake to find PFM or fail when BENCHMARK…
Docs: reducing_variance.md: proofreading, fix typos
Fix C-style typecasting in QNX-specific code
Bump pre-commit dependencies
Output library / schema versions in JSON context block
set library version in bazel
Add BENCHMARK_TEMPLATE[12]_CAPTURE, fusion of BENCHMARK_CAPTURE and BENCHMARK_TEMPLATE
Deflake CI
Fix typo in GetBenchmarkVersion()
CycleClock: Add support for Alpha architecture
sysinfo.cc: Always abort on GetNumCPUs failure
Rewrite complexity_test to use (hardcoded) manual time
Revert "fix some warnings"
Fixed LTO issue on no discard variable
mitigate clang build warnings -Wconversion
Add Python bindings build using bzlmod
Fix implicit conversion changes signess warning in perf_counters.cc
clang-tidy broke the world
allow BENCHMARK_VERSION to be undefined
fix OpenBSD build
Remove COMPILER_IBMXL macro for z/OS
Refactor: Return frequency as double
Add benchmark_main.pc to link main() containing library
Switch git override to stable BCR tag for nanobind_bazel
Modernize wheel building job config
preparing for v1.8.4


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 pkgsrc/benchmarks/google-benchmark/Makefile \
    pkgsrc/benchmarks/google-benchmark/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/benchmarks/google-benchmark/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/benchmarks/google-benchmark/Makefile
diff -u pkgsrc/benchmarks/google-benchmark/Makefile:1.24 pkgsrc/benchmarks/google-benchmark/Makefile:1.25
--- pkgsrc/benchmarks/google-benchmark/Makefile:1.24    Thu Aug 31 17:22:52 2023
+++ pkgsrc/benchmarks/google-benchmark/Makefile Mon May 27 12:17:19 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.24 2023/08/31 17:22:52 adam Exp $
+# $NetBSD: Makefile,v 1.25 2024/05/27 12:17:19 adam Exp $
 
-DISTNAME=      benchmark-1.8.3
+DISTNAME=      benchmark-1.8.4
 PKGNAME=       google-${DISTNAME}
 CATEGORIES=    benchmarks
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=google/}
Index: pkgsrc/benchmarks/google-benchmark/distinfo
diff -u pkgsrc/benchmarks/google-benchmark/distinfo:1.24 pkgsrc/benchmarks/google-benchmark/distinfo:1.25
--- pkgsrc/benchmarks/google-benchmark/distinfo:1.24    Thu Aug 31 17:22:52 2023
+++ pkgsrc/benchmarks/google-benchmark/distinfo Mon May 27 12:17:19 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.24 2023/08/31 17:22:52 adam Exp $
+$NetBSD: distinfo,v 1.25 2024/05/27 12:17:19 adam Exp $
 
-BLAKE2s (benchmark-1.8.3.tar.gz) = 882ed703597b0f01f3b18d9ccf08ea2035c24106d21b6ba62065a31afb10f673
-SHA512 (benchmark-1.8.3.tar.gz) = 4e12114251c79a426873cfba6e27270b69fc980cef9a68e9cb3170f8e2e203f77dee19ab1e65cad51cd67e60991d3bbfdd52553f22522ce5e6c611b5aa07602c
-Size (benchmark-1.8.3.tar.gz) = 250206 bytes
+BLAKE2s (benchmark-1.8.4.tar.gz) = c2733e2889eadd13693ca072225a9e44e48cbed775c331505a99253c040b23ba
+SHA512 (benchmark-1.8.4.tar.gz) = 835d12b88fe52309ce6b2ffbc8b3c178ac594be7d249b5daca0373d1d03ec83ea3c7b94224f67f22d21919376985867eeff0d1c0721501cfd8a9e9b8a9c48882
+Size (benchmark-1.8.4.tar.gz) = 253916 bytes

Index: pkgsrc/benchmarks/google-benchmark/PLIST
diff -u pkgsrc/benchmarks/google-benchmark/PLIST:1.6 pkgsrc/benchmarks/google-benchmark/PLIST:1.7
--- pkgsrc/benchmarks/google-benchmark/PLIST:1.6        Thu Aug 31 17:22:52 2023
+++ pkgsrc/benchmarks/google-benchmark/PLIST    Mon May 27 12:17:19 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2023/08/31 17:22:52 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2024/05/27 12:17:19 adam Exp $
 include/benchmark/benchmark.h
 include/benchmark/export.h
 lib/cmake/benchmark/benchmarkConfig.cmake
@@ -8,6 +8,7 @@ lib/cmake/benchmark/benchmarkTargets.cma
 lib/libbenchmark.a
 lib/libbenchmark_main.a
 lib/pkgconfig/benchmark.pc
+lib/pkgconfig/benchmark_main.pc
 share/doc/benchmark/AssemblyTests.md
 share/doc/benchmark/_config.yml
 share/doc/benchmark/assets/images/icon.png



Home | Main Index | Thread Index | Old Index