Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 3d772cb31e | |||
| 197bd5bce4 | |||
| 177d42b0ec | |||
| 770f059590 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fea7b92922117ed04b9c84bb9998026264346768804f66baa40743c5528bed6b
|
||||
size 159889
|
||||
3
hyperfine-1.20.0.tar.gz
Normal file
3
hyperfine-1.20.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f90c3b096af568438be7da52336784635a962c9822f10f98e5ad11ae8c7f5c64
|
||||
size 334136
|
||||
@@ -1,3 +1,41 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 18 13:09:35 UTC 2025 - Martin Hauke <mardnh@gmx.de>
|
||||
|
||||
- Update to version 1.20.0
|
||||
Features
|
||||
* Add --reference-name option to give a meaningful name to the
|
||||
reference command.
|
||||
* The --ignore-failure option now supports a comma-separated list
|
||||
of exit codes to ignore (e.g., --ignore-failure=1,2).
|
||||
* Python scripts: Add --time-unit option to advanced_statistics.py
|
||||
* Python scripts: Add new plot_benchmarks.py script for plotting
|
||||
collections of benchmarks.
|
||||
Bugfixes
|
||||
* Fix bug where naming individual commands with parameter scan
|
||||
was not working correctly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 14 04:38:38 UTC 2024 - Joshua Smith <smolsheep@opensuse.org>
|
||||
|
||||
- Simplify specfile and switch from deprecated setup to autosetup
|
||||
- Add hyperfine to requires for the completions
|
||||
- Update to 1.19.0:
|
||||
Features
|
||||
* Add a new --reference <cmd> option to specify a reference
|
||||
command for the relative speed comparison
|
||||
* Add --conclude argument (analog to --prepare)
|
||||
* Allow --output=… to appear once for each command, enabling use
|
||||
cases like hyperfine --output=null my-cmd --output=./file.log
|
||||
my-cmd
|
||||
* The environment variable $HYPERFINE_ITERATION will now contain
|
||||
the current iteration number for each benchmarked command
|
||||
* Add iteration information to failure error message
|
||||
* legend modification parameters and output DPI
|
||||
* Nicer whiskers plot
|
||||
Fixes
|
||||
* ETA not clearly visible on terminals with a block cursor
|
||||
* Fix zsh completions
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 20 01:47:34 UTC 2023 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package hyperfine
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: hyperfine
|
||||
Version: 1.18.0
|
||||
Version: 1.20.0
|
||||
Release: 0
|
||||
Summary: Command-line benchmarking tool
|
||||
License: Apache-2.0 OR MIT
|
||||
@@ -43,6 +43,7 @@ It includes:
|
||||
|
||||
%package bash-completion
|
||||
Summary: Bash Completion for %{name}
|
||||
Requires: %{name} = %{version}
|
||||
Requires: bash-completion
|
||||
Supplements: (%{name} and bash-completion)
|
||||
BuildArch: noarch
|
||||
@@ -52,6 +53,7 @@ The official bash completion script for %{name}.
|
||||
|
||||
%package fish-completion
|
||||
Summary: Fish Completion for %{name}
|
||||
Requires: %{name} = %{version}
|
||||
Supplements: (%{name} and fish)
|
||||
BuildArch: noarch
|
||||
|
||||
@@ -60,6 +62,7 @@ The official fish completion script for %{name}.
|
||||
|
||||
%package zsh-completion
|
||||
Summary: ZSH Completion for %{name}
|
||||
Requires: %{name} = %{version}
|
||||
Supplements: (%{name} and zsh)
|
||||
BuildArch: noarch
|
||||
|
||||
@@ -67,23 +70,16 @@ BuildArch: noarch
|
||||
The official zsh completion script for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -qa1
|
||||
%autosetup -a1
|
||||
|
||||
%build
|
||||
%{cargo_build}
|
||||
mkdir -p completions
|
||||
cp -v target/release/build/%{name}-*/out/%{name}.bash completions/
|
||||
cp -v target/release/build/%{name}-*/out/%{name}.fish completions/
|
||||
cp -v target/release/build/%{name}-*/out/_%{name} completions/
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_datadir}/bash-completion/completions \
|
||||
%{buildroot}%{_datadir}/fish/vendor_completions.d \
|
||||
%{buildroot}%{_datadir}/zsh/site-functions
|
||||
%{cargo_install}
|
||||
mkdir -p %{buildroot}%{_datadir}/bash-completion/completions
|
||||
mkdir -p %{buildroot}%{_datadir}/fish/vendor_completions.d
|
||||
mkdir -p %{buildroot}%{_datadir}/zsh/site-functions
|
||||
install -Dm644 completions/%{name}.bash %{buildroot}%{_datadir}/bash-completion/completions/%{name}
|
||||
install -Dm644 completions/%{name}.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
||||
install -Dm644 completions/_%{name} %{buildroot}%{_datadir}/zsh/site-functions/_%{name}
|
||||
install -Dm644 doc/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
|
||||
|
||||
#%%if %{with check}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98e4615c2fe21f6184d566af2b3349a7fc2ed05376658bea7c3175373c6c247e
|
||||
size 18719747
|
||||
oid sha256:f7274aa5be8fb12fda053b69f0b3b6293cdfe8d0565f9e4ae206c9f57fef01db
|
||||
size 22624268
|
||||
|
||||
Reference in New Issue
Block a user