%if 0%{?fedora} >= 21 || 0%{?rhel} >= 7 %global use_systemd 1 %else %global use_systemd 0 # This is, of course, not set in older RPMs and is needed below %global _unitdir /usr/lib/systemd/system %endif Summary: System image generation tool Name: imagefactory Version: 1.1.9 Release: 6%{?dist} Source0: http://repos.fedorapeople.org/repos/aeolus/imagefactory/%{version}/tarball/%{name}-%{version}.tar.gz License: ASL 2.0 Group: Applications/System URL: https://github.com/redhat-imaging/imagefactory BuildArch: noarch %if 0%{?rhel} == 6 ExcludeArch: i386 ppc64 %endif Requires: python-pycurl Requires: python2-libguestfs Requires: python2-zope-interface Requires: libxml2-python Requires: python-httplib2 Requires: python-paste-deploy Requires: python2-oauth2 Requires: python2-urlgrabber Requires: oz %if %{use_systemd} Requires(post): systemd Requires(preun): systemd Requires(postun): systemd BuildRequires: systemd-units %else Requires(post): chkconfig Requires(preun): chkconfig # This is for /sbin/service Requires(preun): initscripts %endif BuildRequires: python2 BuildRequires: python2-setuptools # TODO: Any changes to the _internal_ API must increment this version or, in # the case of backwards compatible changes, add a new version (RPM # allows multiple version "=" lines for the same package or # pseudo-package name) Provides: imagefactory-plugin-api = 1.0 %description imagefactory allows the creation of system images for multiple virtualization and cloud providers from a single template definition. See https://github.com/redhat-imaging/imagefactory for more information. %prep %setup -q %build python setup.py build %install python setup.py install -O1 --root=%{buildroot} --skip-build %{__install} -d %{buildroot}/%{_sysconfdir}/imagefactory/jeos_images %{__install} -d %{buildroot}/%{_localstatedir}/lib/imagefactory/images %{__install} -d %{buildroot}/%{_sysconfdir}/imagefactory/plugins.d %{__install} -d %{buildroot}/%{_sysconfdir}/logrotate.d sed -i '/\/usr\/bin\/env python/d' %{buildroot}/%{python_sitelib}/imgfac/*.py %{__install} -m0600 conf/sysconfig/imagefactoryd %{buildroot}/%{_sysconfdir}/sysconfig/imagefactoryd %{__install} -m0600 conf/logrotate.d/imagefactoryd %{buildroot}/%{_sysconfdir}/logrotate.d/imagefactoryd # setup.py installs both of these which I suppose is OK # delete the one we don't want here %if %{use_systemd} rm -f %{buildroot}/%{_initddir}/imagefactoryd %else rm -f %{buildroot}/%{_unitdir}/imagefactoryd.service %endif %if %{use_systemd} %post %systemd_post imagefactoryd.service %preun %systemd_preun imagefactoryd.service %postun %systemd_postun imagefactoryd.service %else %post /sbin/chkconfig --add imagefactoryd %preun if [ $1 = 0 ] ; then /sbin/service imagefactoryd stop >/dev/null 2>&1 /sbin/chkconfig --del imagefactoryd fi %endif %files %license COPYING %if %{use_systemd} %{_unitdir}/imagefactoryd.service %else %{_initddir}/imagefactoryd %endif %dir %{_sysconfdir}/imagefactory %config(noreplace) %{_sysconfdir}/imagefactory/imagefactory.conf %config(noreplace) %{_sysconfdir}/sysconfig/imagefactoryd %config(noreplace) %{_sysconfdir}/logrotate.d/imagefactoryd %dir %attr(0755, root, root) %{_sysconfdir}/pki/imagefactory/ %dir %attr(0755, root, root) %{_sysconfdir}/imagefactory/jeos_images/ %dir %attr(0755, root, root) %{_sysconfdir}/imagefactory/plugins.d/ %dir %attr(0755, root, root) %{_localstatedir}/lib/imagefactory/images %config %{_sysconfdir}/pki/imagefactory/cert-ec2.pem %dir %{python_sitelib}/imgfac %{python_sitelib}/imgfac/*.py* %{python_sitelib}/imgfac/rest %{python_sitelib}/imgfac/picklingtools %{python_sitelib}/imagefactory-*.egg-info %{_bindir}/imagefactory %{_bindir}/imagefactoryd %changelog * Wed Jul 26 2017 Fedora Release Engineering - 1.1.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Feb 10 2017 Fedora Release Engineering - 1.1.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Tue Nov 29 2016 Charalampos Stratakis - 1.1.9-4 - Remove runtime requirement of python-argparse * Fri Nov 4 2016 Zbigniew Jędrzejewski-Szmek - 1.1.9-3 - Resolve ownership of directories * Tue Jul 19 2016 Fedora Release Engineering - 1.1.9-2 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Tue May 31 2016 Ian McLeod - 1.1.9-1 - Upstream release 1.1.9 - Add HyperV Vagrant support - enhance vSphere and VMWare Fusion support * Thu Mar 17 2016 Ian McLeod - 1.1.8-2 - fix RHEL7 conditional for systemd unit file content * Wed Mar 16 2016 Ian McLeod - 1.1.8-1 - Upstream release 1.1.8 - systemd support - docker base image updates - significant EC2 updates for regions and instance types - VMWare fusion vagrant box support * Thu Feb 04 2016 Fedora Release Engineering - 1.1.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Wed Jun 17 2015 Fedora Release Engineering - 1.1.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Wed Jan 7 2015 Ian McLeod - 1.1.7-1 - Upstream release 1.1.7 - Vagrant box support added to OVA plugin * Mon Nov 24 2014 Ian McLeod - 1.1.6-2 - Assorted fixes and features to enable rpm-ostree-toolbox integration * Tue Oct 21 2014 Ian McLeod -1.1.6-1 - Upstream 1.1.6 release * Tue May 6 2014 Ian McLeod - 1.1.5-1 - Rebase with upstream - Improved CLI parameter passing support * Thu Jan 30 2014 Steve Loranz - 1.1.3-1 - Remove references to man directories. Documentation will be hosted @ imgfac.org. * Thu Aug 15 2013 Ian McLeod - 1.1.3 - Rebase with upstream * Thu Sep 15 2011 Ian McLeod - 0.6.1 - Update Oz requirement to 0.7.0 or later for new target-specific package config - Update SPEC file to restart service after an install * Mon Apr 04 2011 Chris Lalancette - 0.1.6-1 - Initial spec file.