new version
- Improve the Makefile (mkolman) - Remove old GUI testing code from the Makefile (mkolman) - Update upstream URL (#1213101) (mkolman) - Update upstream Git repository URL (mkolman)
This commit is contained in:
parent
e9e5730cf5
commit
070c0a2c4f
1
.gitignore
vendored
1
.gitignore
vendored
@ -30,3 +30,4 @@
|
|||||||
/initial-setup-0.3.29.tar.gz
|
/initial-setup-0.3.29.tar.gz
|
||||||
/initial-setup-0.3.31.tar.gz
|
/initial-setup-0.3.31.tar.gz
|
||||||
/initial-setup-0.3.32.tar.gz
|
/initial-setup-0.3.32.tar.gz
|
||||||
|
/initial-setup-0.3.33.tar.gz
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: Initial system configuration utility
|
Summary: Initial system configuration utility
|
||||||
Name: initial-setup
|
Name: initial-setup
|
||||||
URL: http://fedoraproject.org/wiki/FirstBoot
|
URL: https://fedoraproject.org/wiki/InitialSetup
|
||||||
Version: 0.3.32
|
Version: 0.3.33
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
|
|
||||||
# This is a Red Hat maintained package which is specific to
|
# This is a Red Hat maintained package which is specific to
|
||||||
@ -9,7 +9,7 @@ Release: 1%{?dist}
|
|||||||
#
|
#
|
||||||
# The source is thus available only from within this SRPM
|
# The source is thus available only from within this SRPM
|
||||||
# or via direct git checkout:
|
# or via direct git checkout:
|
||||||
# git clone git://git.fedorahosted.org/initial-setup.git
|
# git clone https://github.com/rhinstaller/initial-setup
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
|
|
||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
@ -26,6 +26,7 @@ BuildRequires: gtk3-devel
|
|||||||
BuildRequires: glade-devel
|
BuildRequires: glade-devel
|
||||||
BuildRequires: anaconda >= %{anacondaver}
|
BuildRequires: anaconda >= %{anacondaver}
|
||||||
BuildRequires: python-di
|
BuildRequires: python-di
|
||||||
|
BuildRequires: intltool
|
||||||
|
|
||||||
Requires: python
|
Requires: python
|
||||||
Requires: anaconda-tui >= %{anacondaver}
|
Requires: anaconda-tui >= %{anacondaver}
|
||||||
@ -60,18 +61,20 @@ initial-setup utility.
|
|||||||
rm -rf *.egg-info
|
rm -rf *.egg-info
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python setup.py build
|
make
|
||||||
make po-files
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
export XDG_RUNTIME_DIR=/tmp
|
make test
|
||||||
python setup.py nosetests
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python setup.py install --skip-build --root $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
make install-po-files
|
make DESTDIR=%{buildroot} install
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%post
|
%post
|
||||||
if [ $1 -ne 2 -a ! -f /etc/sysconfig/initial-setup ]; then
|
if [ $1 -ne 2 -a ! -f /etc/sysconfig/initial-setup ]; then
|
||||||
platform="$(arch)"
|
platform="$(arch)"
|
||||||
@ -115,6 +118,12 @@ fi
|
|||||||
%{_unitdir}/initial-setup-graphical.service
|
%{_unitdir}/initial-setup-graphical.service
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Apr 23 2015 Martin Kolman <mkolman@redhat.com> - 0.3.33-1
|
||||||
|
- Improve the Makefile (mkolman)
|
||||||
|
- Remove old GUI testing code from the Makefile (mkolman)
|
||||||
|
- Update upstream URL (#1213101) (mkolman)
|
||||||
|
- Update upstream Git repository URL (mkolman)
|
||||||
|
|
||||||
* Tue Mar 31 2015 Martin Kolman <mkolman@redhat.com> - 0.3.32-1
|
* Tue Mar 31 2015 Martin Kolman <mkolman@redhat.com> - 0.3.32-1
|
||||||
- Point out the err in case that ks parsing failed (#1145130) (fabiand)
|
- Point out the err in case that ks parsing failed (#1145130) (fabiand)
|
||||||
- Switch to Zanata for translations (mkolman)
|
- Switch to Zanata for translations (mkolman)
|
||||||
|
Loading…
Reference in New Issue
Block a user