The package rpms/rust-defmac.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/rust-defmac.git/commit/?id=f155519cf....
Change: +ExclusiveArch: %{rust_arches}
Thanks.
Full change: ============
commit f155519cf277c4f7c621ff5489ac135644c46638 Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Sun Apr 28 10:15:14 2019 +0200
Initial import
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..72773e9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/defmac-0.2.0.crate diff --git a/rust-defmac.spec b/rust-defmac.spec new file mode 100644 index 0000000..33b1ce6 --- /dev/null +++ b/rust-defmac.spec @@ -0,0 +1,69 @@ +# Generated by rust2rpm +%bcond_with check +%global debug_package %{nil} + +%global crate defmac + +Name: rust-%{crate} +Version: 0.2.0 +Release: 1%{?dist} +Summary: Macro to define lambda-like macros inline + +# Upstream license specification: Apache-2.0/MIT +License: ASL 2.0 or MIT +URL: https://crates.io/crates/defmac +Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging + +%global _description \ +A macro to define lambda-like macros inline. + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages +which use "%{crate}" crate. + +%files devel +%doc README.rst +%license LICENSE-APACHE LICENSE-MIT +%{cargo_registry}/%{crate}-%{version}/ + +%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 "default" feature of "%{crate}" crate. + +%files -n %{name}+default-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +* Sat Apr 27 17:58:34 EEST 2019 Artem Polishchuk ego.cordatus@gmail.com - 0.2.0-1 +- Initial package diff --git a/sources b/sources new file mode 100644 index 0000000..429d352 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (defmac-0.2.0.crate) = 76b7111c3b902218095653e21b298c0b641ff83920b4ab90edc8914752b225558628cce14daf314501a49c3c000a92edcd7295893df1ea53eaec834342ed1e22 diff --git a/tests/.fmf/version b/tests/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/tests/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/tests/provision.fmf b/tests/provision.fmf new file mode 100644 index 0000000..503a97c --- /dev/null +++ b/tests/provision.fmf @@ -0,0 +1,5 @@ +--- +standard-inventory-qcow2: + qemu: + # `cargo test` usually eats more than 1G. + m: 4G diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..d3998bf --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,13 @@ +--- +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + repositories: + - repo: "https://src.fedoraproject.org/tests/rust.git" + dest: rust + tests: + - rust/cargo-test + environment: + pkg: rust-defmac
arch-excludes@lists.fedoraproject.org