The package rpms/rust-resolv-conf.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-resolv-conf.git/commit/?id=2a31....
Change: +ExclusiveArch: %{rust_arches}
Thanks.
Full change: ============
commit 2a3132fa66966c26a7587a44db4918585cbe2483 Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Thu May 30 23:16:09 2019 +0200
Initial import
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e9c8da1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/resolv-conf-0.6.2.crate diff --git a/rust-resolv-conf.spec b/rust-resolv-conf.spec new file mode 100644 index 0000000..028d160 --- /dev/null +++ b/rust-resolv-conf.spec @@ -0,0 +1,94 @@ +# Generated by rust2rpm 9 +%bcond_without check +%global debug_package %{nil} + +%global crate resolv-conf + +Name: rust-%{crate} +Version: 0.6.2 +Release: 1%{?dist} +Summary: Resolv.conf file parser + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL: https://crates.io/crates/resolv-conf +Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging +BuildRequires: (crate(quick-error/default) >= 1.0.0 with crate(quick-error/default) < 2.0.0) + +%global _description %{expand: +Resolv.conf file parser.} + +%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-MIT LICENSE-APACHE +%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 + +%package -n %{name}+hostname-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+hostname-devel %{_description} + +This package contains library source intended for building other packages +which use "hostname" feature of "%{crate}" crate. + +%files -n %{name}+hostname-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + +%package -n %{name}+system-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+system-devel %{_description} + +This package contains library source intended for building other packages +which use "system" feature of "%{crate}" crate. + +%files -n %{name}+system-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 +* Thu May 30 21:00:54 CEST 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 0.6.2-1 +- Initial package diff --git a/sources b/sources new file mode 100644 index 0000000..393362a --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (resolv-conf-0.6.2.crate) = 5065fffb8fcc6afb2c42ee82cb09ebe879605e6ef2a6f02decf4892967730271bf4e798de02fdf37b4b55b0610f76689ef749ca85870b6656669af4cfd859473 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..39f15fd --- /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-resolv-conf
arch-excludes@lists.fedoraproject.org