diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2023-04-20 16:18:40 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2023-04-20 16:18:40 +0900 |
commit | a30109833357cec39d0e371853eb8c34a62f0b96 (patch) | |
tree | 4934ba350276eec18e84d025669d04f447ade7fd | |
parent | b9713697c16679ed7172fd0e78b5b27ebacb3431 (diff) | |
download | rust-send_wrapper-a30109833357cec39d0e371853eb8c34a62f0b96.tar.gz rust-send_wrapper-a30109833357cec39d0e371853eb8c34a62f0b96.tar.bz2 rust-send_wrapper-a30109833357cec39d0e371853eb8c34a62f0b96.zip |
Bump to rust-send_wrapper 0.6.0
-rw-r--r-- | packaging/rust-send_wrapper.manifest | 5 | ||||
-rw-r--r-- | packaging/rust-send_wrapper.spec | 75 |
2 files changed, 80 insertions, 0 deletions
diff --git a/packaging/rust-send_wrapper.manifest b/packaging/rust-send_wrapper.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/rust-send_wrapper.manifest @@ -0,0 +1,5 @@ +<manifest> + <request> + <domain name="_"/> + </request> +</manifest> diff --git a/packaging/rust-send_wrapper.spec b/packaging/rust-send_wrapper.spec new file mode 100644 index 0000000..f09d1b3 --- /dev/null +++ b/packaging/rust-send_wrapper.spec @@ -0,0 +1,75 @@ +# Generated by rust2rpm 23 +%global _rpm_strip_disable 1 +%global debug_package %{nil} + +%global crate send_wrapper +%global real_crate_name send_wrapper +%global rustc_edition 2018 + +Name: rust-send_wrapper +Version: 0.6.0 +Release: 1 +Summary: This Rust library implements a wrapper type called SendWrapper which allows you to move around non-Send types between threads, as long as you access the contained value only from within the original thread + +# Upstream license specification: MIT/Apache-2.0 +License: MIT OR Apache-2.0 +URL: https://crates.io/crates/send_wrapper +Source: %{crate}-%{version}.tar.gz +Source1: %{name}.manifest + +# ========================================================== +# BuildRequires +# specifies build-time dependencies for the package +# ========================================================== +BuildRequires: rust +BuildRequires: rust-futures-core + +# ========================================================== +# dev-dependencies +# ========================================================== +# BuildRequires: rust-futures-executor +# BuildRequires: rust-futures-util + + +%description +This Rust library implements a wrapper type called SendWrapper which allows you +to move around non-Send types between threads, as long as you access the +contained value only from within the original thread. You also have to make +sure that the wrapper is dropped from within the original thread. If any of +these constraints is violated, a panic occurs. + +%prep +%setup -q +cp %{SOURCE1} . + +# ========================================================== +# 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.txt +%license LICENSE-MIT.txt +%{_rust_dylibdir}/lib%{real_crate_name}.so |