public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Martin Kolman <mkolman@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/initial-setup] rawhide: new version
Date: Mon, 24 Aug 2026 17:13:35 GMT [thread overview]
Message-ID: <178759161548.1.4967038246828771449.rpms-initial-setup-c0e4aa31126e@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/initial-setup
Branch : rawhide
Commit : c0e4aa31126ea6c8cd2e86e332971d46da011875
Author : Martin Kolman <mkolman@redhat.com>
Date : 2026-08-24T19:12:55+02:00
Stats : +31/-30 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/initial-setup/c/c0e4aa31126ea6c8cd2e86e332971d46da011875?branch=rawhide
Log:
new version
Update the systemd service, to use kmscon instead of fbcon (jfalempe)
Add Fedora Rahide for COPR build in Packit (mkolman)
Drop python-wheel dependecny (mkolman)
Prevent Glade dependency from breaking ELN tests (mkolman)
Use LIBSEAT_BACKEND=noop for weston in run-gui-backend (jgroman)
Fix pam and config file handling (mkolman)
Fix makebumpver to also bump version in pyproject.toml (mkolman)
Adjust spec file to setup.py changes (mkolman)
Fixup tarball & folder naming (mkolman)
Modernize setup.py (mkolman)
Try to use outputs on all cards (marmarek)
Switch VT before starting weston (marmarek)
---
diff --git a/.gitignore b/.gitignore
index b597ef3..dc774c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -98,3 +98,4 @@
/initial-setup-0.3.99.tar.gz
/initial-setup-0.3.100.tar.gz
/initial-setup-0.3.101.tar.gz
+/initial-setup-0.3.102.tar.gz
diff --git a/initial-setup.spec b/initial-setup.spec
index 932e57f..538a218 100644
--- a/initial-setup.spec
+++ b/initial-setup.spec
@@ -1,12 +1,13 @@
# Enable X11 for RHEL 9 and older only
%bcond x11 %[0%{?rhel} && 0%{?rhel} < 10]
+%bcond glade %[%{undefined rhel} && %{undefined eln}]
Name: initial-setup
Summary: Initial system configuration utility
URL: https://fedoraproject.org/wiki/InitialSetup
License: GPL-2.0-or-later
-Version: 0.3.101
-Release: 10%{?dist}
+Version: 0.3.102
+Release: 1%{?dist}
# This is a Red Hat maintained package which is specific to
# our distribution.
@@ -21,10 +22,11 @@ Source0: %{name}-%{version}.tar.gz
BuildRequires: gettext
BuildRequires: python3-devel
-BuildRequires: python3-setuptools
BuildRequires: systemd-units
BuildRequires: gtk3-devel
+%if %{with glade}
BuildRequires: glade-devel
+%endif
BuildRequires: intltool
BuildRequires: make
@@ -33,6 +35,7 @@ Requires: anaconda-tui >= %{anacondaver}
Requires: libxkbcommon
Requires: python3-simpleline >= 1.4
Requires: systemd >= 235
+Requires: kmscon >= 10.0.1
Requires(post): systemd
Requires(preun): systemd
Requires(postun): systemd
@@ -97,6 +100,7 @@ Summary: Run the initial-setup GUI in Wayland
Requires: %{name}-gui = %{version}-%{release}
Requires: weston
Requires: xorg-x11-server-Xwayland
+Requires: kbd
Provides: firstboot(gui-backend)
Conflicts: firstboot(gui-backend)
@@ -138,12 +142,21 @@ RemovePathPostfixes: .guixorg
# remove upstream egg-info
rm -rf *.egg-info
+%generate_buildrequires
+%pyproject_buildrequires
+
%build
%make_build
%install
%make_install
+# Manually install configuration files to /etc (avoid /usr/etc issue)
+install -d %{buildroot}%{_sysconfdir}/%{name}/conf.d
+install -m 644 data/10-initial-setup.conf %{buildroot}%{_sysconfdir}/%{name}/conf.d/
+install -d %{buildroot}%{_sysconfdir}/pam.d
+install -m 644 pam/initial-setup %{buildroot}%{_sysconfdir}/pam.d/
+
# Remove the default link, provide subpackages for alternatives
rm %{buildroot}%{_libexecdir}/%{name}/run-gui-backend
@@ -156,32 +169,19 @@ rm -v %{buildroot}%{_libexecdir}/%{name}/firstboot-windowmanager
%find_lang %{name}
%changelog
-* Wed Jul 22 2026 Python Maint <python-maint@redhat.com> - 0.3.101-10
-- Rebuilt for Python 3.15.0b4 ABI change
-
-* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.101-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
-
-* Wed Jun 03 2026 Python Maint <python-maint@redhat.com> - 0.3.101-8
-- Rebuilt for Python 3.15
-
-* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.101-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 0.3.101-6
-- Rebuilt for Python 3.14.0rc3 bytecode
-
-* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 0.3.101-5
-- Rebuilt for Python 3.14.0rc2 bytecode
-
-* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.101-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 0.3.101-3
-- Rebuilt for Python 3.14
-
-* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.101-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
+* Mon Aug 24 2026 Martin Kolman <mkolman@redhat.com> - 0.3.102-1
+- Update the systemd service, to use kmscon instead of fbcon (jfalempe)
+- Add Fedora Rahide for COPR build in Packit (mkolman)
+- Drop python-wheel dependecny (mkolman)
+- Prevent Glade dependency from breaking ELN tests (mkolman)
+- Use LIBSEAT_BACKEND=noop for weston in run-gui-backend (jgroman)
+- Fix pam and config file handling (mkolman)
+- Fix makebumpver to also bump version in pyproject.toml (mkolman)
+- Adjust spec file to setup.py changes (mkolman)
+- Fixup tarball & folder naming (mkolman)
+- Modernize setup.py (mkolman)
+- Try to use outputs on all cards (marmarek)
+- Switch VT before starting weston (marmarek)
* Fri Jul 19 2024 Martin Kolman <mkolman@redhat.com> - 0.3.101-1
- Use threads.py submodule in favor of compatibility file threading.py (kkoukiou)
diff --git a/sources b/sources
index 371d861..fe86f91 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (initial-setup-0.3.101.tar.gz) = 0114874aa13bda4600a18033c37d3d5095799335179e1a776565507e16a7e5a96a803be00d6a7401775f9c1f529ad503c266670f30dd359ce570c706a36611f5
+SHA512 (initial-setup-0.3.102.tar.gz) = 043c374fb0b597102daf1600688eed73b0cb0790991a725246357f8bf8dcc2d37687916c1f14c10a12b2ba0846d3427ddfb3a074e9f86244c216cabb26ec938a
next reply other threads:[~2026-08-24 17:13 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-24 17:13 Martin Kolman [this message]
2026-08-24 18:03 [rpms/initial-setup] rawhide: new version Martin Kolman
2026-09-09 15:07 Martin Kolman
2026-09-09 16:43 Martin Kolman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178759161548.1.4967038246828771449.rpms-initial-setup-c0e4aa31126e@fedoraproject.org \
--to=mkolman@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox