diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2023-03-08 15:21:46 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2023-03-08 15:21:46 +0900 |
commit | bcb8605b91c7d2d7fb1a24813addb80c1c5660cf (patch) | |
tree | 494459df855e9a3e3850917b6ef55a417d069746 | |
parent | 37cdf554fb9dbd8852adc5336436d5bb5736b1dc (diff) | |
download | rust-signal-hook-registry-bcb8605b91c7d2d7fb1a24813addb80c1c5660cf.tar.gz rust-signal-hook-registry-bcb8605b91c7d2d7fb1a24813addb80c1c5660cf.tar.bz2 rust-signal-hook-registry-bcb8605b91c7d2d7fb1a24813addb80c1c5660cf.zip |
Bump to rust-signal-hook-registry 1.4.1
-rw-r--r-- | packaging/rust-signal-hook-registry.manifest | 5 | ||||
-rw-r--r-- | packaging/rust-signal-hook-registry.spec | 71 |
2 files changed, 76 insertions, 0 deletions
diff --git a/packaging/rust-signal-hook-registry.manifest b/packaging/rust-signal-hook-registry.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/rust-signal-hook-registry.manifest @@ -0,0 +1,5 @@ +<manifest> + <request> + <domain name="_"/> + </request> +</manifest> diff --git a/packaging/rust-signal-hook-registry.spec b/packaging/rust-signal-hook-registry.spec new file mode 100644 index 0000000..3aaa49a --- /dev/null +++ b/packaging/rust-signal-hook-registry.spec @@ -0,0 +1,71 @@ +# Generated by rust2rpm 23 +%global _rpm_strip_disable 1 +%global debug_package %{nil} + +%global crate signal-hook-registry +%global real_crate_name signal_hook_registry +%global rustc_edition 2015 + +Name: rust-signal-hook-registry +Version: 1.4.1 +Release: 1 +Summary: Backend crate for signal-hook + +# Upstream license specification: Apache-2.0/MIT +License: Apache-2.0 OR MIT +URL: https://crates.io/crates/signal-hook-registry +Source: %{crate}-%{version}.tar.gz +Source1: %{name}.manifest + +# ========================================================== +# BuildRequires +# specifies build-time dependencies for the package +# ========================================================== +BuildRequires: rust +BuildRequires: rust-libc + +# ========================================================== +# dev-dependencies +# ========================================================== +# BuildRequires: rust-signal-hook + + +%description +Backend crate for signal-hook. + +%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}} \ + --extern libc=%{_rust_dylibdir}/liblibc.so \ + ./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-MIT +%{_rust_dylibdir}/lib%{real_crate_name}.so |