diff --git a/TOOLS.md b/TOOLS.md index 8260f91a..46a0e178 100644 --- a/TOOLS.md +++ b/TOOLS.md @@ -37,6 +37,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho | [**cargo-udeps**](https://github.com/est31/cargo-udeps) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/est31/cargo-udeps/releases) | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE) | | [**cargo-valgrind**](https://github.com/jfrimmel/cargo-valgrind) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/jfrimmel/cargo-valgrind/releases) | Linux, macOS, Windows | [MIT](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-APACHE) | | [**cargo-zigbuild**](https://github.com/rust-cross/cargo-zigbuild) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-cross/cargo-zigbuild/releases) | Linux, macOS, Windows | [MIT](https://github.com/rust-cross/cargo-zigbuild/blob/main/LICENSE) | +| [**coreutils**](https://github.com/uutils/coreutils) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/uutils/coreutils/releases) | Linux, macOS, Windows | [MIT](https://github.com/uutils/coreutils/blob/main/LICENSE) | | [**cross**](https://github.com/cross-rs/cross) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cross-rs/cross/releases) | Linux, macOS, Windows | [MIT](https://github.com/cross-rs/cross/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/cross-rs/cross/blob/main/LICENSE-APACHE) | | [**cyclonedx**](https://github.com/CycloneDX/cyclonedx-cli) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-cli/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-cli/blob/main/LICENSE) | | [**deepsource**](https://github.com/DeepSourceCorp/cli) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/DeepSourceCorp/cli/releases) | Linux, macOS, Windows | [BSD-2-Clause](https://github.com/DeepSourceCorp/cli/blob/master/LICENSE) | diff --git a/manifests/coreutils.json b/manifests/coreutils.json new file mode 100644 index 00000000..348a613c --- /dev/null +++ b/manifests/coreutils.json @@ -0,0 +1,62 @@ +{ + "rust_crate": "coreutils", + "template": { + "x86_64_linux_musl": { + "url": "https://github.com/uutils/coreutils/releases/download/${version}/coreutils-${version}-x86_64-unknown-linux-musl.tar.gz", + "bin": "coreutils-${version}-x86_64-unknown-linux-musl/coreutils" + }, + "x86_64_macos": { + "url": "https://github.com/uutils/coreutils/releases/download/${version}/coreutils-${version}-x86_64-apple-darwin.tar.gz", + "bin": "coreutils-${version}-x86_64-apple-darwin/coreutils" + }, + "x86_64_windows": { + "url": "https://github.com/uutils/coreutils/releases/download/${version}/coreutils-${version}-x86_64-pc-windows-msvc.zip", + "bin": "coreutils-${version}-x86_64-pc-windows-msvc/coreutils.exe" + }, + "aarch64_linux_musl": { + "url": "https://github.com/uutils/coreutils/releases/download/${version}/coreutils-${version}-aarch64-unknown-linux-musl.tar.gz", + "bin": "coreutils-${version}-aarch64-unknown-linux-musl/coreutils" + }, + "aarch64_macos": { + "url": "https://github.com/uutils/coreutils/releases/download/${version}/coreutils-${version}-aarch64-apple-darwin.tar.gz", + "bin": "coreutils-${version}-aarch64-apple-darwin/coreutils" + }, + "aarch64_windows": { + "url": "https://github.com/uutils/coreutils/releases/download/${version}/coreutils-${version}-aarch64-pc-windows-msvc.zip", + "bin": "coreutils-${version}-aarch64-pc-windows-msvc/coreutils.exe" + } + }, + "license_markdown": "[MIT](https://github.com/uutils/coreutils/blob/main/LICENSE)", + "latest": { + "version": "0.1.0" + }, + "0.1": { + "version": "0.1.0" + }, + "0.1.0": { + "x86_64_linux_musl": { + "etag": "0x8DD9B07C650D18D", + "checksum": "463648347b1fc337414a864bda960c9cbd1bd4a540f344c010ff5bb35199e6d7" + }, + "x86_64_macos": { + "etag": "0x8DD9B0837D94459", + "checksum": "0a27f09f03811289b9ddcff8c6b7c1bf6e971b5eac3dd536208a40e2c1ea9cd9" + }, + "x86_64_windows": { + "etag": "0x8DD9B07EF1F3F84", + "checksum": "4ff3c7e5149ade20a342487d1c09cc6cc63599af6dfb28d2558b925780a72d82" + }, + "aarch64_linux_musl": { + "etag": "0x8DD9B0770F0F163", + "checksum": "6572292ee74bb6a7efa88f05d0d0a7a5c696bae0ae341a438b983ae7775c9d47" + }, + "aarch64_macos": { + "etag": "0x8DD9B0840DF335A", + "checksum": "7d8068f3d11278d96f78eb42b67d240bb8fb2386724ea597481e97ec75265d9c" + }, + "aarch64_windows": { + "etag": "0x8DD9B078E16C3DB", + "checksum": "9faa0ec0f3df47cafa0a09fcead46da28e2640b5fe1316ad9cb7e11f19050bd4" + } + } +} diff --git a/tools/codegen/base/cargo-udeps.json b/tools/codegen/base/cargo-udeps.json index 51e20aaa..3c365bb0 100644 --- a/tools/codegen/base/cargo-udeps.json +++ b/tools/codegen/base/cargo-udeps.json @@ -4,7 +4,7 @@ "tag_prefix": "v", "rust_crate": "${package}", "asset_name": "${package}-v${version}-${rust_target}.tar.gz", - "bin": "./${package}-v${version}-${rust_target}/${package}${exe}", + "bin": "${package}-v${version}-${rust_target}/${package}${exe}", "platform": { "x86_64_linux_musl": {}, "x86_64_macos": {}, diff --git a/tools/codegen/base/coreutils.json b/tools/codegen/base/coreutils.json new file mode 100644 index 00000000..61f470f1 --- /dev/null +++ b/tools/codegen/base/coreutils.json @@ -0,0 +1,20 @@ +{ + "repository": "https://github.com/uutils/coreutils", + "tag_prefix": "", + "rust_crate": "${package}", + "asset_name": "${package}-${version}-${rust_target}.tar.gz", + "bin": "${package}-${version}-${rust_target}/${package}${exe}", + "version_range": ">= 0.1.0", + "platform": { + "x86_64_linux_musl": {}, + "x86_64_macos": {}, + "x86_64_windows": { + "asset_name": "${package}-${version}-${rust_target}.zip" + }, + "aarch64_linux_musl": {}, + "aarch64_macos": {}, + "aarch64_windows": { + "asset_name": "${package}-${version}-${rust_target}.zip" + } + } +}