Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Benjamin A. Beasley
bf5fc932eb Allow procfs 0.18 2026-01-05 09:34:36 +00:00
Benjamin A. Beasley
2cc21017d4 Allow hex-literal 1.0 2025-12-04 07:54:53 +00:00
3 changed files with 17 additions and 5 deletions

View file

@ -1,5 +1,5 @@
--- coreutils-0.0.27/Cargo.toml 1970-01-01T00:00:01+00:00
+++ coreutils-0.0.27/Cargo.toml 2025-08-05T02:47:31.208967+00:00
+++ coreutils-0.0.27/Cargo.toml 2026-01-05T09:34:07.355658+00:00
@@ -30,6 +30,7 @@
categories = ["command-line-utilities"]
license = "MIT"
@ -20,6 +20,15 @@
[dependencies.arch]
version = "0.0.27"
@@ -620,7 +616,7 @@
version = "0.3.1"
[dev-dependencies.hex-literal]
-version = "0.4.1"
+version = ">=0.4.1, <2.0"
[dev-dependencies.libc]
version = "0.2.153"
@@ -639,7 +635,7 @@
version = "1.10.4"
@ -47,7 +56,7 @@
[target."cfg(any(target_os = \"linux\", target_os = \"android\"))".dev-dependencies.procfs]
-version = "0.16"
+version = ">=0.16, <0.18"
+version = ">=0.16, <0.19"
default-features = false
[target."cfg(unix)".dev-dependencies.nix]

View file

@ -1,4 +1,4 @@
# Generated by rust2rpm 27
# Generated by rust2rpm 28
%bcond check 1
%global crate coreutils
@ -19,7 +19,9 @@ Source1: coreutils-ls-commands.sh
# https://github.com/uutils/coreutils/commit/001a91fbe6adea29a566326df3fcda30f89e97ab
# * enable feat_acl
# * TODO: enable unix
# * allow procfs 0.17
# * allow procfs 0.17, 0.18
# * allow hex-literal 1.0:
# https://github.com/uutils/coreutils/commit/944cd4f72ca7d6e87d06d0a0a5b9e8dafedfba4b
Patch: coreutils-fix-metadata.diff
# * Fix seq tests that pass negative numbers
Patch2: coreutils-fix-seq-neg-num-tests.diff

View file

@ -7,7 +7,8 @@ cargo-toml-patch-comments = [
"update rstest to 0.26: https://github.com/uutils/coreutils/commit/001a91fbe6adea29a566326df3fcda30f89e97ab",
"enable feat_acl",
"TODO: enable unix",
"allow procfs 0.17",
"allow procfs 0.17, 0.18",
"allow hex-literal 1.0: https://github.com/uutils/coreutils/commit/944cd4f72ca7d6e87d06d0a0a5b9e8dafedfba4b",
]
extra-sources = [
{ "number" = 1, "file" = "coreutils-ls-commands.sh", "comments" = ["Script to list available coreutils commands"] },