The package rpms/bodhi-server.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/bodhi-server.git/commit/?id=673abae3....
Change: -ExclusiveArch: %{golang_arches_future}
Thanks.
Full change: ============
commit 673abae3a49d188a9cd4c7d8ea001d75f36a7aab Author: Mattia Verga mattia.verga@proton.me Date: Mon Jun 24 10:05:48 2024 +0200
Update to 8.1.1 and fix for python 3.13
diff --git a/.gitignore b/.gitignore index bb75c3f..20dac77 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /bodhi_server-8.0.1.tar.gz /bodhi_server-8.0.2.tar.gz /bodhi_server-8.1.0.tar.gz +/bodhi_server-8.1.1.tar.gz diff --git a/bodhi-server.spec b/bodhi-server.spec index 2b6a377..5c6d305 100644 --- a/bodhi-server.spec +++ b/bodhi-server.spec @@ -1,20 +1,17 @@ %global pypi_name bodhi-server %global src_name bodhi_server -%global pypi_version 8.1.0 +%global pypi_version 8.1.1
Name: %{pypi_name} Version: %{pypi_version} -Release: 2%{?dist} +Release: 1%{?dist} Summary: Bodhi server
License: GPL-2.0-or-later URL: https://github.com/fedora-infra/bodhi -Source0: %{pypi_source bodhi_server} -BuildArch: noarch +Source: %{pypi_source bodhi_server}
-# We must avoid using i686 builders, this should do the trick -# see fedora-infra ticket #11163 -ExclusiveArch: %{golang_arches_future} +BuildArch: noarch
BuildRequires: make BuildRequires: pyproject-rpm-macros @@ -76,7 +73,7 @@ repositories.
%prep -%autosetup -n %{src_name}-%{pypi_version} +%autosetup -p1 -n %{src_name}-%{pypi_version} # Remove bundled egg-info rm -rf %{pypi_name}.egg-info
@@ -106,6 +103,7 @@ make %{?_smp_mflags} -C docs man
install -m 644 apache/bodhi.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/bodhi.conf sed -i -s 's/BODHI_VERSION/%{version}/g' %{buildroot}%{_sysconfdir}/httpd/conf.d/bodhi.conf +sed -i -s 's/python3.7/python%{python3_version}/g' %{buildroot}%{_sysconfdir}/httpd/conf.d/bodhi.conf install -m 640 production.ini %{buildroot}%{_sysconfdir}/bodhi/production.ini install -m 640 alembic.ini %{buildroot}%{_sysconfdir}/bodhi/alembic.ini install apache/bodhi.wsgi %{buildroot}%{_datadir}/bodhi/bodhi.wsgi @@ -162,6 +160,10 @@ export BODHI_CONFIG=$(pwd)/tests/testing.ini %pycached %{python3_sitelib}/bodhi/server/metadata.py
%changelog +* Sun Jun 23 2024 Mattia Verga mattia.verga@proton.me - 8.1.1-1 +- Fix python version hardcoded in apache config +- Upstream fix for Python 3.13 (Fedora#2291493) + * Tue Jun 18 2024 Python Maint python-maint@redhat.com - 8.1.0-2 - Rebuilt for Python 3.13
diff --git a/sources b/sources index 37e08cd..52f537d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bodhi_server-8.1.0.tar.gz) = 6e7471e2572039a940e752df189d44bb155d76223ce3af5fa2927ef3f7babb10245aa30d2dc0d66cf568c7019c3c3150f0cab64744a6e6a1726cb316607e4087 +SHA512 (bodhi_server-8.1.1.tar.gz) = 9914de3f2bcdd78be09b3d3dc1f98590102a2f0a5864ef19c8cce629c10bef4cba20ae9eec1a053271687d17b5bdd29e51101e96c45cd16f4a8e0c9424a0df1b
commit 336f37421032236694ca0eb20f7ef12cc7ee6ed5 Author: Python Maint python-maint@redhat.com Date: Tue Jun 18 12:58:37 2024 +0200
Rebuilt for Python 3.13
diff --git a/bodhi-server.spec b/bodhi-server.spec index 6bcad2f..2b6a377 100644 --- a/bodhi-server.spec +++ b/bodhi-server.spec @@ -4,7 +4,7 @@
Name: %{pypi_name} Version: %{pypi_version} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bodhi server
License: GPL-2.0-or-later @@ -162,6 +162,9 @@ export BODHI_CONFIG=$(pwd)/tests/testing.ini %pycached %{python3_sitelib}/bodhi/server/metadata.py
%changelog +* Tue Jun 18 2024 Python Maint python-maint@redhat.com - 8.1.0-2 +- Rebuilt for Python 3.13 + * Tue Apr 09 2024 Mattia Verga mattia.verga@proton.me - 8.1.0-1 - Update to 8.1.0
arch-excludes@lists.fedoraproject.org