The package rpms/rust-mockito.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-mockito.git/commit/?id=ca861070....
Change: +ExclusiveArch: %{rust_arches}
Thanks.
Full change: ============
commit ca861070aa3d34102a9ab07b0a38fdeb40940577 Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Sun Apr 28 10:04:46 2019 +0200
Initial import
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c9b42aa --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/mockito-0.17.1.crate diff --git a/rust-mockito.spec b/rust-mockito.spec new file mode 100644 index 0000000..0feefd1 --- /dev/null +++ b/rust-mockito.spec @@ -0,0 +1,76 @@ +# Generated by rust2rpm +%bcond_with check +%global debug_package %{nil} + +%global crate mockito + +Name: rust-%{crate} +Version: 0.17.1 +Release: 1%{?dist} +Summary: HTTP mocking for Rust + +License: MIT +URL: https://crates.io/crates/mockito +Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging +BuildRequires: (crate(colored/default) >= 1.6.0 with crate(colored/default) < 2.0.0) +BuildRequires: (crate(difference/default) >= 2.0.0 with crate(difference/default) < 3.0.0) +BuildRequires: (crate(httparse/default) >= 1.3.3 with crate(httparse/default) < 2.0.0) +BuildRequires: (crate(lazy_static/default) >= 1.1.0 with crate(lazy_static/default) < 2.0.0) +BuildRequires: (crate(log/default) >= 0.4.6 with crate(log/default) < 0.5.0) +BuildRequires: (crate(rand/default) >= 0.5.5 with crate(rand/default) < 0.6.0) +BuildRequires: (crate(regex/default) >= 1.0.5 with crate(regex/default) < 2.0.0) +BuildRequires: (crate(serde_json/default) >= 1.0.17 with crate(serde_json/default) < 2.0.0) + +%global _description \ +HTTP mocking for Rust. + +%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 +* Sun Apr 28 09:31:27 CEST 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 0.17.1-1 +- Initial package diff --git a/sources b/sources new file mode 100644 index 0000000..cf3623f --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (mockito-0.17.1.crate) = d36057f169c7245883fc7b1d900f5c20ae02a322bfa1eac2f0659c2984901abd076c08d1c64a5ac9a2c0933fa9a04a30a748cc983169a98e85f33458cd8aa173 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..94e2c6f --- /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-mockito
arch-excludes@lists.fedoraproject.org