From 71d711b87895eeffa11fc284427db7dc6e0144a2 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Fri, 17 Feb 2023 14:59:20 -0600 Subject: [PATCH] Initial Fedora package Signed-off-by: Michel Alexandre Salim --- .gitignore | 1 + rust-tabled.spec | 133 +++++++++++++++++++++++++++++++++++++++ sources | 1 + tabled-fix-metadata.diff | 11 ++++ 4 files changed, 146 insertions(+) create mode 100644 .gitignore create mode 100644 rust-tabled.spec create mode 100644 sources create mode 100644 tabled-fix-metadata.diff diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..06d2a40 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/tabled-0.10.0.crate diff --git a/rust-tabled.spec b/rust-tabled.spec new file mode 100644 index 0000000..23b464e --- /dev/null +++ b/rust-tabled.spec @@ -0,0 +1,133 @@ +# Generated by rust2rpm 23 +%bcond_without check +%global debug_package %{nil} + +%global crate tabled + +Name: rust-tabled +Version: 0.10.0 +Release: %autorelease +Summary: Easy to use library for pretty print tables of Rust `struct`s and `enum`s + +License: MIT +URL: https://crates.io/crates/tabled +Source: %{crates_source} +# Manually created patch for downstream crate metadata changes +# * bump ansi-str from 0.5.0 to 0.7.0 +Patch: tabled-fix-metadata.diff + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Easy to use library for pretty print tables of Rust `struct`s and `enum`s.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENSE +%doc %{crate_instdir}/CHANGELOG.md +%doc %{crate_instdir}/README.md +%doc %{crate_instdir}/docs.rs.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +This package contains library source intended for building other packages which +use the "default" feature of the "%{crate}" crate. + +%files -n %{name}+default-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+ansi-str-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ansi-str-devel %{_description} + +This package contains library source intended for building other packages which +use the "ansi-str" feature of the "%{crate}" crate. + +%files -n %{name}+ansi-str-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+color-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+color-devel %{_description} + +This package contains library source intended for building other packages which +use the "color" feature of the "%{crate}" crate. + +%files -n %{name}+color-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+derive-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+derive-devel %{_description} + +This package contains library source intended for building other packages which +use the "derive" feature of the "%{crate}" crate. + +%files -n %{name}+derive-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+macros-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+macros-devel %{_description} + +This package contains library source intended for building other packages which +use the "macros" feature of the "%{crate}" crate. + +%files -n %{name}+macros-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+tabled_derive-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+tabled_derive-devel %{_description} + +This package contains library source intended for building other packages which +use the "tabled_derive" feature of the "%{crate}" crate. + +%files -n %{name}+tabled_derive-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..4cd3121 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (tabled-0.10.0.crate) = f511fbebfe0837148ef2cdbca428667be9bd8780c088e2d8e92bb854fa6c1e63a289738a3abbdaf08909dfd8bce69efca421c0caf24fc6b6001702effea0e920 diff --git a/tabled-fix-metadata.diff b/tabled-fix-metadata.diff new file mode 100644 index 0000000..b81bb38 --- /dev/null +++ b/tabled-fix-metadata.diff @@ -0,0 +1,11 @@ +--- tabled-0.10.0/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ tabled-0.10.0/Cargo.toml 2023-02-17T02:31:30.301490+00:00 +@@ -189,7 +189,7 @@ + ] + + [dependencies.ansi-str] +-version = "0.5.0" ++version = "0.7.0" + optional = true + + [dependencies.papergrid]