Compare commits

...

7 Commits

Author SHA1 Message Date
Fabio Valentini b5c4352ec6
Update to version 0.36.7; Fixes RHBZ#2333644
1 month ago
Fabio Valentini d4a5adf229
Update to version 0.36.5; Fixes RHBZ#2316439
4 months ago
Fabio Valentini 05d8beb48e
Update to version 0.36.4; Fixes RHBZ#2309093
5 months ago
Fabio Valentini ee1cf74cc0
Update to version 0.36.3; Fixes RHBZ#2303341
6 months ago
Michel Lind a48fbb92c1
Update to version 0.36.2; Fixes RHBZ#2267848
7 months ago
Fedora Release Engineering 7d0b2fc491 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
7 months ago
Fedora Release Engineering fdaba198b9 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
1 year ago

6
.gitignore vendored

@ -16,3 +16,9 @@
/object-0.30.3.crate /object-0.30.3.crate
/object-0.32.1.crate /object-0.32.1.crate
/object-0.32.2.crate /object-0.32.2.crate
/object-0.36.1.crate
/object-0.36.2.crate
/object-0.36.3.crate
/object-0.36.4.crate
/object-0.36.5.crate
/object-0.36.7.crate

@ -1,24 +1,26 @@
--- object-0.32.2/Cargo.toml 1970-01-01T00:00:01+00:00 --- object-0.36.7/Cargo.toml 1970-01-01T00:00:01+00:00
+++ object-0.32.2/Cargo.toml 2023-12-27T19:50:43.679682+00:00 +++ object-0.36.7/Cargo.toml 2025-01-03T16:17:20.343311+00:00
@@ -76,17 +76,12 @@ @@ -100,11 +100,6 @@
version = "0.5.0" version = "0.7.0"
optional = true optional = true
-[dependencies.wasmparser] -[dependencies.wasmparser]
-version = "0.118.0" -version = "0.222.0"
-optional = true -optional = true
-default-features = false
- -
[features] [features]
all = [ all = [
"read", "read",
"write", @@ -112,7 +107,6 @@
"build",
"std", "std",
"compression", "compression",
- "wasm", - "wasm",
] ]
archive = [] archive = []
cargo-all = [] build = [
@@ -110,7 +105,6 @@ @@ -146,7 +140,6 @@
"elf", "elf",
"macho", "macho",
"pe", "pe",
@ -26,7 +28,7 @@
"xcoff", "xcoff",
] ]
elf = [] elf = []
@@ -140,7 +134,6 @@ @@ -176,7 +169,6 @@
"all", "all",
"unstable", "unstable",
] ]

@ -1,11 +1,11 @@
# Generated by rust2rpm 25 # Generated by rust2rpm 27
%bcond_without check %bcond check 1
%global debug_package %{nil} %global debug_package %{nil}
%global crate object %global crate object
Name: rust-object Name: rust-object
Version: 0.32.2 Version: 0.36.7
Release: %autorelease Release: %autorelease
Summary: Unified interface for reading and writing object file formats Summary: Unified interface for reading and writing object file formats
@ -13,7 +13,6 @@ License: Apache-2.0 OR MIT
URL: https://crates.io/crates/object URL: https://crates.io/crates/object
Source: %{crates_source} Source: %{crates_source}
# Manually created patch for downstream crate metadata changes # Manually created patch for downstream crate metadata changes
# * bump ruzstd dependency from 0.4 to 0.5
# * disable unused WASM support # * disable unused WASM support
Patch: object-fix-metadata.diff Patch: object-fix-metadata.diff
@ -76,6 +75,30 @@ use the "archive" feature of the "%{crate}" crate.
%files -n %{name}+archive-devel %files -n %{name}+archive-devel
%ghost %{crate_instdir}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+build-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+build-devel %{_description}
This package contains library source intended for building other packages which
use the "build" feature of the "%{crate}" crate.
%files -n %{name}+build-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+build_core-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+build_core-devel %{_description}
This package contains library source intended for building other packages which
use the "build_core" feature of the "%{crate}" crate.
%files -n %{name}+build_core-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+cargo-all-devel %package -n %{name}+cargo-all-devel
Summary: %{summary} Summary: %{summary}
BuildArch: noarch BuildArch: noarch
@ -296,7 +319,12 @@ use the "xcoff" feature of the "%{crate}" crate.
%if %{with check} %if %{with check}
%check %check
# * skip tests that require files which are not included in published crates # * skip tests that require files which are not included in published crates
%cargo_test -- -- --exact --skip read::coff::coff_extended_relocations %{cargo_test -- -- --exact %{shrink:
--skip read::coff::coff_extended_relocations
--skip read::elf::get_buildid_bad_elf
--skip read::elf::get_buildid_less_bad_elf
--skip read::macho::test_go_macho
}}
%endif %endif
%changelog %changelog

@ -1,3 +1,8 @@
[package]
cargo-toml-patch-comments = [
"disable unused WASM support",
]
[features] [features]
hide = [ hide = [
"alloc", "alloc",
@ -7,7 +12,12 @@ hide = [
] ]
[tests] [tests]
skip = ["read::coff::coff_extended_relocations"] skip = [
"read::coff::coff_extended_relocations",
"read::elf::get_buildid_bad_elf",
"read::elf::get_buildid_less_bad_elf",
"read::macho::test_go_macho",
]
skip-exact = true skip-exact = true
comments = ["skip tests that require files which are not included in published crates"] comments = ["skip tests that require files which are not included in published crates"]

@ -1 +1 @@
SHA512 (object-0.32.2.crate) = 5d03d998f06dc592c3be141f7163bd72a0e73396f95d22ef1e0ffbfc66489bf727a6f6fb813a32739609b619b8e34a471974b2231dcfa23df8bff52007c25a96 SHA512 (object-0.36.7.crate) = dd69172349ecf51fd2351d32cc4453760ca1d15e854a1cf5ed99112032901a54b4645b24163b946deed11f81d3e3035e1a5afd8bff20f335dbd05eceab073478

Loading…
Cancel
Save