2013-03-08 10:37:48 +00:00
|
|
|
Summary: Initial system configuration utility
|
|
|
|
Name: initial-setup
|
|
|
|
URL: http://fedoraproject.org/wiki/FirstBoot
|
2013-06-18 12:15:35 +00:00
|
|
|
Version: 0.3.6
|
2013-08-03 19:39:14 +00:00
|
|
|
Release: 3%{?dist}
|
2013-03-08 10:37:48 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
# This is a Red Hat maintained package which is specific to
|
|
|
|
# our distribution.
|
|
|
|
#
|
|
|
|
# The source is thus available only from within this SRPM
|
|
|
|
# or via direct git checkout:
|
2013-05-22 12:26:33 +00:00
|
|
|
# git clone git://git.fedorahosted.org/initial-setup.git
|
2013-03-08 10:37:48 +00:00
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
License: GPLv2+
|
|
|
|
Group: System Environment/Base
|
|
|
|
BuildRequires: gettext
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
BuildRequires: python-nose
|
|
|
|
BuildRequires: systemd-units
|
|
|
|
BuildRequires: gtk3-devel
|
|
|
|
BuildRequires: gtk-doc
|
|
|
|
BuildRequires: gobject-introspection-devel
|
|
|
|
BuildRequires: glade-devel
|
|
|
|
BuildRequires: pygobject3
|
|
|
|
BuildRequires: python-babel
|
2013-03-21 10:00:19 +00:00
|
|
|
BuildRequires: anaconda >= 19.13
|
2013-03-26 14:25:36 +00:00
|
|
|
BuildRequires: python-di
|
2013-03-08 10:37:48 +00:00
|
|
|
Requires: gtk3
|
|
|
|
Requires: python
|
2013-03-21 10:00:19 +00:00
|
|
|
Requires: anaconda >= 19.13
|
2013-04-05 21:29:16 +00:00
|
|
|
Requires(post): systemd
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
2013-03-08 10:37:48 +00:00
|
|
|
Requires: firstboot(windowmanager)
|
|
|
|
Requires: libreport-python
|
2013-03-26 14:25:36 +00:00
|
|
|
Requires: python-di
|
2013-03-13 13:40:40 +00:00
|
|
|
Conflicts: firstboot < 19.2
|
2013-03-08 10:37:48 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The initial-setup utility runs after installation. It guides the user through
|
|
|
|
a series of steps that allows for easier configuration of the machine.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
# remove upstream egg-info
|
|
|
|
rm -rf *.egg-info
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
|
|
|
%{__python} setup.py compile_catalog -D %{name} -d locale
|
|
|
|
|
2013-04-05 21:29:16 +00:00
|
|
|
%check
|
|
|
|
%{__python} setup.py nosetests
|
2013-03-08 10:37:48 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
%find_lang %{name}
|
|
|
|
|
|
|
|
%post
|
|
|
|
if [ $1 -ne 2 -a ! -f /etc/sysconfig/initial-setup ]; then
|
|
|
|
platform="$(arch)"
|
|
|
|
if [ "$platform" = "s390" -o "$platform" = "s390x" ]; then
|
|
|
|
echo "RUN_INITIAL_SETUP=YES" > /etc/sysconfig/initial-setup
|
|
|
|
else
|
2013-04-08 11:18:48 +00:00
|
|
|
%systemd_post initial-setup-graphical.service
|
|
|
|
%systemd_post initial-setup-text.service
|
2013-03-08 10:37:48 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%systemd_preun initial-setup-graphical.service
|
|
|
|
%systemd_preun initial-setup-text.service
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%systemd_postun_with_restart initial-setup-graphical.service
|
|
|
|
%systemd_postun_with_restart initial-setup-text.service
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
|
|
|
%doc COPYING README
|
|
|
|
%dir %{_datadir}/initial-setup/
|
|
|
|
%dir %{_datadir}/initial-setup/modules/
|
|
|
|
%{python_sitelib}/*
|
|
|
|
%{_bindir}/initial-setup
|
|
|
|
%{_bindir}/firstboot-windowmanager
|
|
|
|
%{_datadir}/initial-setup/modules/*
|
|
|
|
|
|
|
|
%{_unitdir}/initial-setup-graphical.service
|
|
|
|
%{_unitdir}/initial-setup-text.service
|
|
|
|
|
|
|
|
%ifarch s390 s390x
|
|
|
|
%{_sysconfdir}/profile.d/initial-setup.sh
|
|
|
|
%{_sysconfdir}/profile.d/initial-setup.csh
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2013-08-03 19:39:14 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-18 14:22:20 +00:00
|
|
|
* Tue Jun 18 2013 Vratislav Podzimek <vpodzime@redhat.com> - 0.3.6-2
|
|
|
|
- Rebuild with dependencies available.
|
|
|
|
|
2013-06-18 12:15:35 +00:00
|
|
|
* Tue Jun 18 2013 Vratislav Podzimek <vpodzime@redhat.com> - 0.3.6-1
|
|
|
|
- Make serial-getty wait for us as well (#970719) (vpodzime)
|
|
|
|
- Disable the service only on successful exit (#967617) (vpodzime)
|
|
|
|
|
2013-05-22 12:26:33 +00:00
|
|
|
* Mon May 22 2013 Vratislav Podzimek <vpodzime@redhat.com> - 0.3.5-1
|
|
|
|
- Reference the new repository in the .spec file (vpodzime)
|
|
|
|
- Prevent systemd services from running on live images (#962196) (awilliam)
|
|
|
|
- Don't traceback if the expected kickstart file doesn't exist (#950796) (vpodzime)
|
|
|
|
|
2013-04-08 11:18:48 +00:00
|
|
|
* Mon Apr 8 2013 Vratislav Podzimek <vpodzime@redhat.com> - 0.3.4-3
|
|
|
|
- Rebuild with fixed spec that partly reverts the previous change
|
|
|
|
|
2013-04-05 21:29:16 +00:00
|
|
|
* Fri Apr 5 2013 Vratislav Podzimek <vpodzime@redhat.com> - 0.3.4-2
|
|
|
|
- Rebuild with fixed spec that enables services after installation
|
|
|
|
|
2013-03-28 17:53:59 +00:00
|
|
|
* Thu Mar 28 2013 Martin Sivak <msivak@euryale.brq.redhat.com> - 0.3.4-1
|
|
|
|
- Search for proper UI variant of addons
|
|
|
|
- Add addon directories to sys.path
|
|
|
|
|
2013-03-26 16:48:36 +00:00
|
|
|
* Tue Mar 26 2013 Martin Sivak <msivak@euryale.brq.redhat.com> - 0.3.3-1
|
|
|
|
- Systemd unit files improved
|
|
|
|
|
2013-03-26 14:56:38 +00:00
|
|
|
* Tue Mar 26 2013 Martin Sivak <msivak@euryale.brq.redhat.com> - 0.3.2-1
|
|
|
|
- Modify the ROOT_PATH properly
|
|
|
|
- Do not execute old ksdata (from anaconda's ks file)
|
|
|
|
- Save the resulting configuration to /root/initial-setup-ks.cfg
|
|
|
|
|
2013-03-26 14:25:36 +00:00
|
|
|
* Tue Mar 26 2013 Martin Sivak <msivak@euryale.brq.redhat.com> - 0.3.1-2
|
|
|
|
- Require python-di package
|
|
|
|
|
2013-03-21 10:00:19 +00:00
|
|
|
* Thu Mar 21 2013 Martin Sivak <msivak@euryale.brq.redhat.com> - 0.3.1-1
|
|
|
|
- Use updated Anaconda API
|
|
|
|
- Request firstboot environment spokes
|
2013-03-22 10:00:28 +00:00
|
|
|
- Initialize anaconda threading properly
|
2013-03-21 10:00:19 +00:00
|
|
|
|
2013-03-13 12:38:18 +00:00
|
|
|
* Wed Mar 13 2013 Martin Sivak <msivak@euryale.brq.redhat.com> - 0.3-1
|
|
|
|
- Use updated Anaconda API
|
|
|
|
- Fix systemd units
|
|
|
|
- Add localization spokes to TUI
|
2013-03-13 13:40:40 +00:00
|
|
|
- Write changes to disk
|
|
|
|
- Conflict with old firstboot
|
2013-03-13 12:38:18 +00:00
|
|
|
|
2013-03-08 10:37:48 +00:00
|
|
|
* Tue Feb 13 2013 Martin Sivak <msivak@redhat.com> 0.2-1
|
|
|
|
- Updates for package review
|
|
|
|
- Firstboot-windowmanager script
|
|
|
|
|
|
|
|
* Tue Feb 13 2013 Martin Sivak <msivak@redhat.com> 0.1-3
|
|
|
|
- Updates for package review
|
|
|
|
|
|
|
|
* Tue Jan 22 2013 Martin Sivak <msivak@redhat.com> 0.1-2
|
|
|
|
- Updates for package review
|
|
|
|
|
|
|
|
* Tue Nov 06 2012 Martin Sivak <msivak@redhat.com> 0.1-1
|
|
|
|
- Initial release
|