Bump to rust-smallvec 1.10.0
authorDongHun Kwak <dh0128.kwak@samsung.com>
Wed, 15 Feb 2023 00:23:34 +0000 (09:23 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Wed, 15 Feb 2023 00:23:34 +0000 (09:23 +0900)
packaging/rust-smallvec.manifest [new file with mode: 0644]
packaging/rust-smallvec.spec [new file with mode: 0644]

diff --git a/packaging/rust-smallvec.manifest b/packaging/rust-smallvec.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/rust-smallvec.spec b/packaging/rust-smallvec.spec
new file mode 100644 (file)
index 0000000..a479b8c
--- /dev/null
@@ -0,0 +1,65 @@
+# Generated by rust2rpm 23
+%global _rpm_strip_disable 1
+%global debug_package %{nil}
+
+%global crate smallvec
+%global real_crate_name smallvec
+
+Name:           rust-smallvec
+Version:        1.10.0
+Release:        1%{?dist}
+Summary:        'Small vector' optimization: store up to a small number of items on the stack
+
+License:        MIT OR Apache-2.0
+URL:            https://crates.io/crates/smallvec
+Source:         %{crate}-%{version}.tar.gz
+Source1:        %{name}.manifest
+
+# ==========================================================
+# BuildRequires
+# specifies build-time dependencies for the package
+# ==========================================================
+BuildRequires:  rust
+BuildRequires:  rust-arbitrary
+BuildRequires:  rust-serde
+
+
+%description
+'Small vector' optimization: store up to a small number of items on the stack.
+
+%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} \
+        -larbitrary \
+        -lserde \
+        ./src/lib.rs
+
+# ==========================================================
+# install section
+# ==========================================================
+%install
+install -d -m 0755 %{buildroot}%{_rust_libdir}
+install -m 0644 lib%{real_crate_name}.so %{buildroot}/%{_rust_libdir}/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_libdir}/lib%{real_crate_name}.so