Update to version 0.3.10; Fixes RHBZ#2162239

epel9
Fabio Valentini 2 years ago
parent 188ec1d8d6
commit b365ca2be0
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -3,3 +3,4 @@
/unicode-bidi-0.3.6.crate /unicode-bidi-0.3.6.crate
/unicode-bidi-0.3.7.crate /unicode-bidi-0.3.7.crate
/unicode-bidi-0.3.8.crate /unicode-bidi-0.3.8.crate
/unicode-bidi-0.3.10.crate

@ -1,23 +1,21 @@
# Generated by rust2rpm 21 # Generated by rust2rpm 23
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate unicode-bidi %global crate unicode-bidi
Name: rust-%{crate} Name: rust-unicode-bidi
Version: 0.3.8 Version: 0.3.10
Release: %autorelease Release: %autorelease
Summary: Implementation of the Unicode Bidirectional Algorithm Summary: Implementation of the Unicode Bidirectional Algorithm
# Upstream license specification: MIT OR Apache-2.0 License: MIT OR Apache-2.0
License: MIT or ASL 2.0
URL: https://crates.io/crates/unicode-bidi URL: https://crates.io/crates/unicode-bidi
Source: %{crates_source} Source: %{crates_source}
# Initial patched metadata # Manually created patch for downstream crate metadata changes
# * drop unused flame_it feature with missing dependencies # * drop unused flame_it feature with missing dependencies
Patch0: unicode-bidi-fix-metadata.diff # * drop references to test files that are not shipped in published crates
Patch: unicode-bidi-fix-metadata.diff
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging >= 21 BuildRequires: rust-packaging >= 21

@ -1 +1 @@
SHA512 (unicode-bidi-0.3.8.crate) = 810b5be48159ecbca542c715496f279518285c3b09f7c39451986f94e6c259fab1057512a2148bf99ba9abf76e861a24456b547cc2273f0b45ed5d3ce9dfe3d5 SHA512 (unicode-bidi-0.3.10.crate) = 70f81dcf3fb3ada1eb503cfda548e083cae6e7001dc445c0a481b8f467025f17dc26ac14e487edcdc2aba8b67f94a35eb4b5083a62d5b954dafca7b734edd3e3

@ -1,9 +1,14 @@
--- unicode-bidi-0.3.8/Cargo.toml 1970-01-01T00:00:01+00:00 --- unicode-bidi-0.3.10/Cargo.toml 1970-01-01T00:00:01+00:00
+++ unicode-bidi-0.3.8/Cargo.toml 2022-05-13T10:30:12.907041+00:00 +++ unicode-bidi-0.3.10/Cargo.toml 2023-01-28T21:20:03.674828+00:00
@@ -42,14 +42,6 @@ @@ -42,19 +42,6 @@
[lib] [lib]
name = "unicode_bidi" name = "unicode_bidi"
-[[test]]
-name = "conformance_tests"
-path = "tests/conformance_tests.rs"
-required-features = ["hardcoded-data"]
-
-[dependencies.flame] -[dependencies.flame]
-version = "0.2" -version = "0.2"
-optional = true -optional = true
@ -15,7 +20,7 @@
[dependencies.serde] [dependencies.serde]
version = ">=0.8, <2.0" version = ">=0.8, <2.0"
features = ["derive"] features = ["derive"]
@@ -65,10 +57,6 @@ @@ -70,10 +57,6 @@
"std", "std",
"hardcoded-data", "hardcoded-data",
] ]

Loading…
Cancel
Save