The package rpms/rust-muldiv.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-muldiv.git/commit/?id=7da1053c1....
Change: +ExclusiveArch: %{rust_arches}
Thanks.
Full change: ============
commit 7da1053c1bf0164cfd6754f1e65f6aec5ee46b46 Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Sun Apr 28 10:16:33 2019 +0200
Initial import
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85fe8dd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/muldiv-0.2.0.crate diff --git a/rust-muldiv.spec b/rust-muldiv.spec new file mode 100644 index 0000000..f839554 --- /dev/null +++ b/rust-muldiv.spec @@ -0,0 +1,72 @@ +# Generated by rust2rpm +%bcond_with check +%global debug_package %{nil} + +%global crate muldiv + +Name: rust-%{crate} +Version: 0.2.0 +Release: 1%{?dist} +Summary: Provides a trait for numeric types + +License: MIT +URL: https://crates.io/crates/muldiv +Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging +%if %{with check} +BuildRequires: (crate(rand/default) >= 0.4.0 with crate(rand/default) < 0.5.0) +%endif + +%global _description \ +Provides a trait for numeric types to perform combined multiplication and\ +division with overflow protection. + +%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 +%license LICENSE +%doc README.md +%{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 22:57:43 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..50c92d1 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (muldiv-0.2.0.crate) = 7a04136346b0b362a336871b90da8fc0bc4e6a40987f76339bb05306c60e4d79bffd211aefea2425ec8d6fefd6cd1d481c6a0aa06e8bcda6b35c1d7a7d2fe32b 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..9a24f2c --- /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-muldiv
arch-excludes@lists.fedoraproject.org