Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added console/hyperfine/manifest.x86_64.bin
Binary file not shown.
31 changes: 31 additions & 0 deletions console/hyperfine/manifest.x86_64.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/** Human readable report. This is not consumed by boulder */
{
"manifest-version": "0.2",
"packages": {
"hyperfine": {
"build-depends": [
"binary(cargo)"
],
"depends": [
"interpreter(/usr/lib/ld-linux-x86-64.so.2(x86_64))",
"soname(libc.so.6(x86_64))",
"soname(libm.so.6(x86_64))",
"soname(libunwind.so.1(x86_64))"
],
"files": [
"/usr/bin/hyperfine",
"/usr/share/bash-completion/completions/hyperfine",
"/usr/share/fish/vendor_completions.d/hyperfine.fish",
"/usr/share/man/man1/hyperfine.1",
"/usr/share/zsh/site-functions/_hyperfine"
],
"name": "hyperfine",
"provides": [
"binary(hyperfine)"
]
}
},
"source-name": "hyperfine",
"source-release": "1",
"source-version": "1.18.0"
}
32 changes: 32 additions & 0 deletions console/hyperfine/stone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name : hyperfine
version : 1.18.0
release : 1
upstreams :
- https://github.com/sharkdp/hyperfine/archive/refs/tags/v1.18.0.tar.gz : fea7b92922117ed04b9c84bb9998026264346768804f66baa40743c5528bed6b
homepage : https://github.com/sharkdp/hyperfine
license :
- Apache-2.0
- MIT
component : system.utils
networking : yes
summary : A command-line benchmarking tool
description : |
A command-line benchmarking tool.
builddeps :
- binary(cargo)
environment : |
# FIXME, rust hacks
export HOME=$(pwd)
export CARGO_HTTP_CAINFO=/usr/share/defaults/etc/ssl/certs/ca-certificates.crt
setup : |
cargo fetch --locked
build : |
cargo build --frozen --release
install : |
%install_bin target/release/hyperfine
%install_file doc/hyperfine.1 %(installroot)/usr/share/man/man1/hyperfine.1
%install_file target/release/build/hyperfine-*/out/hyperfine.bash %(installroot)/usr/share/bash-completion/completions/hyperfine
%install_file target/release/build/hyperfine-*/out/_hyperfine %(installroot)/usr/share/zsh/site-functions/_hyperfine
%install_file target/release/build/hyperfine-*/out/hyperfine.fish %(installroot)/usr/share/fish/vendor_completions.d/hyperfine.fish
check : |
cargo test --all