Bump to rust-fragile 2.0.0 accepted/tizen_rust accepted/tizen_unified accepted/tizen_unified_dev accepted/tizen_unified_x tizen accepted/tizen/rust/20240110.224439 accepted/tizen/unified/20240328.122122 accepted/tizen/unified/dev/20240620.001516 accepted/tizen/unified/x/20240328.130637
authorDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 9 Nov 2023 01:20:30 +0000 (10:20 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 9 Nov 2023 01:20:30 +0000 (10:20 +0900)
packaging/rust-fragile.manifest [new file with mode: 0644]
packaging/rust-fragile.spec [new file with mode: 0644]

diff --git a/packaging/rust-fragile.manifest b/packaging/rust-fragile.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-fragile.spec b/packaging/rust-fragile.spec
new file mode 100644 (file)
index 0000000..193b47a
--- /dev/null
@@ -0,0 +1,64 @@
+# Generated by rust2rpm 23
+%global _rpm_strip_disable 1
+%global debug_package %{nil}
+
+%global crate fragile
+%global real_crate_name fragile
+%global rustc_edition 2018
+
+Name:           rust-fragile
+Version:        2.0.0
+Release:        1
+Summary:        Provides wrapper types for sending non-send values to other threads
+
+License:        Apache-2.0
+URL:            https://crates.io/crates/fragile
+Source:         %{crate}-%{version}.tar.gz
+Source1:        %{name}.manifest
+
+# ==========================================================
+# BuildRequires
+# specifies build-time dependencies for the package
+# ==========================================================
+BuildRequires:  rust
+BuildRequires:  rust-slab
+
+
+
+%description
+Provides wrapper types for sending non-send values to other threads.
+
+%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
+%{_rust_dylibdir}/lib%{real_crate_name}.so