summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2023-03-17 11:16:02 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2023-03-17 11:16:02 +0900
commit6041ecf64d2dbf199ca582653273240a07d39118 (patch)
tree0409c2f80044d9b70aed5fef9e91f9b20d0e6715
parentbaa7fdac5d196f0c43d2e3dd6fb12ea74b0256f3 (diff)
downloadrust-form_urlencoded-accepted/tizen_rust.tar.gz
rust-form_urlencoded-accepted/tizen_rust.tar.bz2
rust-form_urlencoded-accepted/tizen_rust.zip
-rw-r--r--packaging/rust-form_urlencoded.manifest5
-rw-r--r--packaging/rust-form_urlencoded.spec68
2 files changed, 73 insertions, 0 deletions
diff --git a/packaging/rust-form_urlencoded.manifest b/packaging/rust-form_urlencoded.manifest
new file mode 100644
index 0000000..017d22d
--- /dev/null
+++ b/packaging/rust-form_urlencoded.manifest
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+ <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/rust-form_urlencoded.spec b/packaging/rust-form_urlencoded.spec
new file mode 100644
index 0000000..06bf55e
--- /dev/null
+++ b/packaging/rust-form_urlencoded.spec
@@ -0,0 +1,68 @@
+# Generated by rust2rpm 23
+%global _rpm_strip_disable 1
+%global debug_package %{nil}
+
+%global crate form_urlencoded
+%global real_crate_name form_urlencoded
+%global rustc_edition 2018
+
+Name: rust-form_urlencoded
+Version: 1.1.0
+Release: 1
+Summary: Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms
+
+License: MIT OR Apache-2.0
+URL: https://crates.io/crates/form_urlencoded
+Source: %{crate}-%{version}.tar.gz
+Source1: %{name}.manifest
+
+# ==========================================================
+# BuildRequires
+# specifies build-time dependencies for the package
+# ==========================================================
+BuildRequires: rust
+BuildRequires: rust-percent-encoding
+
+Requires: rust-percent-encoding
+
+
+%description
+Parser and serializer for the application/x-www-form-urlencoded syntax, as used
+by HTML forms.
+
+%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 percent_encoding=%{_rust_dylibdir}/libpercent_encoding.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