From 5572a997113c103fd457e569eb3b10801aad9787 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Mon, 3 Apr 2023 12:16:55 +0900 Subject: [PATCH] Bump to rust-constant_time_eq 0.2.5 --- packaging/extern.patch | 9 ++++ packaging/rust-constant_time_eq.manifest | 5 +++ packaging/rust-constant_time_eq.spec | 71 ++++++++++++++++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 packaging/extern.patch create mode 100644 packaging/rust-constant_time_eq.manifest create mode 100644 packaging/rust-constant_time_eq.spec diff --git a/packaging/extern.patch b/packaging/extern.patch new file mode 100644 index 0000000..adf449f --- /dev/null +++ b/packaging/extern.patch @@ -0,0 +1,9 @@ +diff --git a/src/lib.rs b/src/lib.rs +index 8c1e78c..0c4b4ce 100644 +--- a/src/lib.rs ++++ b/src/lib.rs +@@ -1,4 +1,3 @@ +-#![no_std] + + #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] + #[inline] diff --git a/packaging/rust-constant_time_eq.manifest b/packaging/rust-constant_time_eq.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/rust-constant_time_eq.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/rust-constant_time_eq.spec b/packaging/rust-constant_time_eq.spec new file mode 100644 index 0000000..62e689b --- /dev/null +++ b/packaging/rust-constant_time_eq.spec @@ -0,0 +1,71 @@ +# Generated by rust2rpm 23 +%global _rpm_strip_disable 1 +%global debug_package %{nil} + +%global crate constant_time_eq +%global real_crate_name constant_time_eq +%global rustc_edition 2021 + +Name: rust-constant_time_eq +Version: 0.2.5 +Release: 1 +Summary: Compares two equal-sized byte strings in constant time + +License: CC0-1.0 OR MIT-0 OR Apache-2.0 +URL: https://crates.io/crates/constant_time_eq +Source: %{crate}-%{version}.tar.gz +Source1: %{name}.manifest +Source2: extern.patch + +# ========================================================== +# BuildRequires +# specifies build-time dependencies for the package +# ========================================================== +BuildRequires: rust + +# ========================================================== +# dev-dependencies +# ========================================================== +# BuildRequires: rust-criterion + + +%description +Compares two equal-sized byte strings in constant time. + +%prep +%setup -q +cp %{SOURCE1} . +%{__patch} -p1 < %{SOURCE2} + +# ========================================================== +# build section +# crate-type : dylib, proc-macro, cdylib, bin, etc. +# ========================================================== +%build +%{rustc_std_build} --crate-type=dylib \ + --crate-name=%{real_crate_name} \ + %{?rustc_edition:--edition=%{rustc_edition}} \ + ./src/lib.rs + +# ========================================================== +# install section +# ========================================================== +%install +install -d -m 0755 %{buildroot}%{_rust_dylibdir} +install -m 0644 lib%{real_crate_name}.so %{buildroot}/%{_rust_dylibdir}/lib%{real_crate_name}.so + +%clean + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +# ========================================================== +# files section +# ========================================================== +%files +%manifest %{name}.manifest +%license LICENSE-APACHE +%license LICENSE-MIT0 +%license LICENSE-CC0 +%{_rust_dylibdir}/lib%{real_crate_name}.so -- 2.7.4