The package rpms/cucumber-messages.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/cucumber-messages.git/commit/?id=804....
Change: +ExcludeArch: %{ix86}
Thanks.
Full change: ============
commit 80459ffb254420ef38eb5b183a9461a5f488cb94 Author: Benjamin A. Beasley code@musicinmybrain.net Date: Thu Nov 28 14:12:35 2024 -0500
Initial package (close RHBZ#2329353)
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..67a8787 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/messages-27.0.2.tar.gz diff --git a/cucumber-messages.spec b/cucumber-messages.spec new file mode 100644 index 0000000..c9d334c --- /dev/null +++ b/cucumber-messages.spec @@ -0,0 +1,105 @@ +Name: cucumber-messages +Version: 27.0.2 +%global cpp_soversion 0.1 +Release: %autorelease +Summary: A message protocol for representing results and other information from Cucumber + +License: MIT +URL: https://github.com/cucumber/messages +Source: %{url}/archive/v%{version}/messages-%{version}.tar.gz + +# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval +ExcludeArch: %{ix86} + +BuildRequires: cmake +# Faster than the "UNIX Makefiles" cmake backend, with no disadvantages +BuildRequires: ninja-build + +BuildRequires: gcc-c++ +# https://docs.fedoraproject.org/en-US/packaging-guidelines/#_packaging_header... +BuildRequires: cmake(nlohmann_json) json-static + +%global common_description %{expand: +Cucumber Messages is a message protocol for representing results and other +information from Cucumber. The protocol aims to decouple various components of +the Cucumber platform, with the following advantages: + + • Each component only needs to know about a subset of messages + • Gherkin is decoupled from the Cucumber execution component + • Enables the future support other formats such as Markdown and Excel} + +%description %{common_description} + + +%package cpp-libs +Summary: Cucumber Messages for C++ (JSON schema) + +%description cpp-libs %{common_description} + +This package contains libraries implementing Cucumber Messages for C++. + + +%package cpp-devel +Summary: Development files for using the C++ implementation of Gherkin + +Requires: %{name}-cpp-libs%{?_isa} = %{version}-%{release} + +%description cpp-devel %{common_description} + +This package contains header files and libraries for developing and building +programs that use Cucumber Messages for C++. + + +%prep +%autosetup -n messages-%{version} -p1 + + +%conf +pushd cpp +%cmake -GNinja +popd + + +%build +pushd cpp +%cmake_build +popd + + +%install +pushd cpp +%cmake_install +popd + + +%check +pushd cpp +# We think this is the intended way to run tests, but there don’t appear to be +# any usable tests yet. +%ctest +popd + + +%files cpp-libs +%license LICENSE +%{_libdir}/libcucumber_messages.so.%{cpp_soversion}{,.*} + + +%files cpp-devel +%doc cpp/README.md +# https://github.com/cucumber/messages/issues/267#issuecomment-2478224301 +# Co-owned with packages for other cucumber projects: +%dir %{_includedir}/cucumber/ +# Co-owned with packages for other cucumber projects in the cucumber C++ +# namespace: +%dir %{_includedir}/cucumber/cucumber/ +# Unique to this package: +%dir %{_includedir}/cucumber/cucumber/messages/ +%{_includedir}/cucumber/cucumber/messages/*.hpp + +%{_libdir}/libcucumber_messages.so +%{_libdir}/cmake/cucumber_messages/ + + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..3308760 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (messages-27.0.2.tar.gz) = 330d2cbd02becf4fe8508039ca89cbebcd5640b94eab838f0142c46653a6b75d346c232e4a1a26bdd49f31e0798d120973ebdd0d037b1b08cfac16307f48f5c3
arch-excludes@lists.fedoraproject.org