Compare commits

...

6 Commits

Author SHA1 Message Date
Fabio Valentini a41606fb3d
Update to version 0.2.6; Fixes RHBZ#2313612
5 months ago
Fabio Valentini 15de4c3ae4
Update to version 0.2.5; Fixes RHBZ#2306100
5 months ago
Fedora Release Engineering 2aaa43ae7c Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
7 months ago
Fedora Release Engineering 119557933a Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
1 year ago
Fedora Release Engineering 7125046e1d Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2 years ago
Fedora Release Engineering 50adeb37d0 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2 years ago

2
.gitignore vendored

@ -4,3 +4,5 @@
/unicode-xid-0.2.2.crate
/unicode-xid-0.2.3.crate
/unicode-xid-0.2.4.crate
/unicode-xid-0.2.5.crate
/unicode-xid-0.2.6.crate

@ -1,3 +0,0 @@
# rust-unicode-xid
The rust-unicode-xid package

@ -1,11 +1,11 @@
# Generated by rust2rpm 22
# Generated by rust2rpm 26
%bcond_without check
%global debug_package %{nil}
%global crate unicode-xid
Name: rust-unicode-xid
Version: 0.2.4
Version: 0.2.6
Release: %autorelease
Summary: Check characters for the XID_Start and XID_Continue properties
@ -13,16 +13,14 @@ License: MIT OR Apache-2.0
URL: https://crates.io/crates/unicode-xid
Source: %{crates_source}
# Manually created patch for downstream crate metadata changes
# * drop unused, benchmark-only criterion dev-dependency to speed up builds
# * drop unused, benchmark-only criterion dev-dependency
Patch: unicode-xid-fix-metadata.diff
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging >= 21
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
Determine whether characters have the XID_Start or XID_Continue properties
according to Unicode Standard Annex #31.}
Determine whether characters have the XID_Start or XID_Continue
properties according to Unicode Standard Annex #31.}
%description %{_description}
@ -54,18 +52,6 @@ use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+bench-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+bench-devel %{_description}
This package contains library source intended for building other packages which
use the "bench" feature of the "%{crate}" crate.
%files -n %{name}+bench-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+no_std-devel
Summary: %{summary}
BuildArch: noarch
@ -79,7 +65,7 @@ use the "no_std" feature of the "%{crate}" crate.
%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
%autosetup -n %{crate}-%{version} -p1
%cargo_prep
%generate_buildrequires

@ -0,0 +1,6 @@
[package]
summary = "Check characters for the XID_Start and XID_Continue properties"
cargo-toml-patch-comments = [
"drop unused, benchmark-only criterion dev-dependency",
]

@ -1 +1 @@
SHA512 (unicode-xid-0.2.4.crate) = e67bd1258e1961807d9d5fe583a89ab5b82b2a529ecd32cadfc79aa5331380eb4a2db9fd96b74c8eace47f2f29021587d69bcdbf79f7e2650e92a25f7839d03c
SHA512 (unicode-xid-0.2.6.crate) = f68e78484479a5341b14d7e3391e691265851fa00feeca53af745479af6aa9b4ce3570456df785c8362043db9b04e2e57f9bad05d8305946f16af405bc611764

@ -1,12 +1,18 @@
--- unicode-xid-0.2.4/Cargo.toml 1970-01-01T00:00:01+00:00
+++ unicode-xid-0.2.4/Cargo.toml 2022-10-05T12:36:46.270378+00:00
@@ -42,9 +42,6 @@
name = "xid"
harness = false
--- unicode-xid-0.2.6/Cargo.toml 1970-01-01T00:00:01+00:00
+++ unicode-xid-0.2.6/Cargo.toml 2024-10-07T14:31:26.325737+00:00
@@ -51,15 +51,6 @@
name = "exhaustive_tests"
path = "tests/exhaustive_tests.rs"
-[[bench]]
-name = "xid"
-path = "benches/xid.rs"
-harness = false
-
-[dev-dependencies.criterion]
-version = "0.3"
-
[features]
bench = []
-bench = []
default = []
no_std = []

Loading…
Cancel
Save