b45fc96
# Macros for py2/py3 compatibility
b45fc96
%if 0%{?fedora} || 0%{?rhel} > 7
b45fc96
%global pyver 3
b45fc96
%else
b45fc96
%global pyver 2
b45fc96
%endif
b45fc96
b45fc96
%global pyver_bin python%{pyver}
b45fc96
%global pyver_sitelib %python%{pyver}_sitelib
b45fc96
%global pyver_install %py%{pyver}_install
b45fc96
%global pyver_build %py%{pyver}_build
b45fc96
# End of macros for py2/py3 compatibility
b45fc96
b45fc96
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
b45fc96
Name:           diskimage-builder
b45fc96
Summary:        Image building tools for OpenStack
b45fc96
Version:        2.20.3
b45fc96
Release:        1%{?dist}
b45fc96
License:        ASL 2.0
b45fc96
Group:          System Environment/Base
b45fc96
URL:            https://launchpad.net/diskimage-builder
b45fc96
Source0:        https://tarballs.openstack.org/diskimage-builder/%{name}-%{upstream_version}.tar.gz
b45fc96
AutoReqProv: no
5774441
5774441
BuildArch: noarch
b45fc96
b45fc96
BuildRequires: python%{pyver}-devel
b45fc96
BuildRequires: python%{pyver}-setuptools
b45fc96
BuildRequires: python%{pyver}-pbr
b45fc96
%if %{pyver} == 2
b45fc96
BuildRequires: python-d2to1
b45fc96
%else
b45fc96
BuildRequires: python%{pyver}-d2to1
e714729
BuildRequires: /usr/bin/pathfix.py
b45fc96
%endif
5774441
5774441
Requires: kpartx
5774441
Requires: qemu-img
b8ad3df
Requires: curl
64620ef
Requires: tar
b45fc96
Requires: git
12ae458
Requires: dib-utils
b45fc96
Requires: xfsprogs
b45fc96
Requires: /bin/bash
b45fc96
Requires: /bin/sh
b45fc96
Requires: /usr/bin/env
b45fc96
Requires: python%{pyver}
b45fc96
Requires: python%{pyver}-flake8
b45fc96
Requires: python%{pyver}-pbr
b45fc96
Requires: python%{pyver}-six
b45fc96
Requires: python%{pyver}-stevedore
b45fc96
%if %{pyver} == 2
b45fc96
Requires: python-babel
b45fc96
Requires: python-networkx
b45fc96
Requires: PyYAML
b45fc96
%else
b45fc96
Requires: python%{pyver}-babel
b45fc96
Requires: python%{pyver}-networkx
b45fc96
Requires: python%{pyver}-PyYAML
b45fc96
%endif
b45fc96
b45fc96
%global __requires_exclude /usr/local/bin/dib-python
b45fc96
%global __requires_exclude %__requires_exclude|/sbin/runscript
ff54229
5774441
%prep
b45fc96
%setup -q -n %{name}-%{upstream_version}
5774441
5774441
%build
b45fc96
%{pyver_build}
5774441
5774441
%install
b45fc96
%{pyver_install}
5774441
5774441
mkdir -p %{buildroot}%{_datadir}/%{name}/elements
5774441
b45fc96
cp -vr diskimage_builder/elements/ %{buildroot}%{_datadir}/%{name}
5774441
b45fc96
# explicitly remove config-applier since it does a pip install
b45fc96
rm -rf %{buildroot}%{_datadir}/%{name}/elements/config-applier
b45fc96
b45fc96
# This file is being split out of diskimage-builder, so remove it to
b45fc96
# avoid conflicts with the new package.
b45fc96
rm -f %{buildroot}%{_bindir}/dib-run-parts
b45fc96
b45fc96
%if %{pyver} == 3
b45fc96
# Fix shebangs for Python 3-only distros
e714729
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{_datadir}/%{name}/elements/pypi/pre-install.d/00-configure-pypi-mirror
e714729
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{_datadir}/%{name}/elements/deploy-targetcli/extra-data.d/module/targetcli-wrapper
e714729
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{_datadir}/%{name}/elements/package-installs/bin/package-installs-squash
e714729
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{_datadir}/%{name}/elements/svc-map/extra-data.d/10-merge-svc-map-files
e714729
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{_datadir}/%{name}/elements/svc-map/bin/svc-map
b45fc96
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{pyver_sitelib}/diskimage_builder/elements/pypi/pre-install.d/00-configure-pypi-mirror
b45fc96
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{pyver_sitelib}/diskimage_builder/elements/deploy-targetcli/extra-data.d/module/targetcli-wrapper
b45fc96
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{pyver_sitelib}/diskimage_builder/elements/package-installs/bin/package-installs-squash
b45fc96
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{pyver_sitelib}/diskimage_builder/elements/svc-map/extra-data.d/10-merge-svc-map-files
b45fc96
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{pyver_sitelib}/diskimage_builder/elements/svc-map/bin/svc-map
b45fc96
%endif
e714729
5774441
%description
5774441
Components of TripleO that are responsible for building disk images.
5774441
5774441
%files
5774441
%doc LICENSE
Mike Burns 3ab53ce
%doc doc/source/ci.md
5774441
%{_bindir}/*
b45fc96
%{pyver_sitelib}/diskimage_builder*
5774441
%{_datadir}/%{name}/elements
5774441
5774441
%changelog
b45fc96
* Fri Mar 22 2019 RDO <dev@lists.rdoproject.org> 2.20.3-1
b45fc96
- Update to 2.20.3
b45fc96
e714729
* Wed Feb 27 2019 Yatin Karel <ykarel@redhat.com> - 1.26.1-8
e714729
- Build python3 instead of python2 as python2 is being removed
e714729
a16b086
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.1-7
a16b086
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a16b086
f8328b8
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.1-6
f8328b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f8328b8
78f61af
* Wed Feb 07 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.26.1-5
78f61af
- Update Python 2 dependency declarations to new packaging standards
78f61af
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
78f61af
d2b8665
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.1-4
d2b8665
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d2b8665
e38114d
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.1-3
e38114d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e38114d
4dfdd98
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.1-2
4dfdd98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
4dfdd98
Mike Burns 77bb462
* Thu Dec 22 2016 Mike Burns <mburns@redhat.com> 1.26.1-1
Mike Burns 77bb462
- Update to 1.26.1
Mike Burns 77bb462
Mike Burns 4053f63
* Thu Dec 01 2016 Mike Burns <mburns@redhat.com> 1.24.0-1
Mike Burns 4053f63
- Update to 1.24.0
Mike Burns 4053f63
d63fc5c
* Wed Oct 05 2016 James Slagle <jslagle@redhat.com> - 1.20.0-1
d63fc5c
- Fix version to be 1.20.0
d63fc5c
0f36106
* Wed Oct 05 2016 James Slagle <jslagle@redhat.com> - 1.20-1
0f36106
- Update to 1.20
0f36106
- Remove requires on python-argparse
0f36106
752de7c
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.1-2
752de7c
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
752de7c
f482743
* Mon Apr 11 2016 Paul Belanger <pabelanger@redhat.com> - 1.14.1-1
f482743
- Update to 1.14.1 (#1317493)
f482743
9e061f4
* Sun Feb 28 2016 Paul Belanger <pabelanger@redhat.com> - 1.11.1-1
9e061f4
- Update to 1.11.1 (#1306997)
9e061f4
904ae2d
* Wed Feb 03 2016 Paul Belanger <pabelanger@redhat.com> - 1.9.0-2
904ae2d
- Switch to requires_exclude_from for all elements.
904ae2d
16c9dfa
* Tue Feb 02 2016 Paul Belanger <pabelanger@redhat.com> - 1.9.0-1
16c9dfa
- Update to 1.9.0 (#1300434)
16c9dfa
- Modernize spec file to latest python packaging example
16c9dfa
- config-applier and dib-run-parts are no longer part of diskimage-builder
16c9dfa
ff54229
* Thu Jan 21 2016 Paul Belanger <pabelanger@redhat.com> - 1.8.0-2
ff54229
- Add Requires filter for /usr/local/bin/dib-python
ff54229
- Add missing Requires for sudo and yum-utils
ff54229
Fedora Release Monitoring e3695d2
* Wed Jan 20 2016 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 1.8.0-1
Fedora Release Monitoring e3695d2
- Update to 1.8.0 (#1300434)
Fedora Release Monitoring e3695d2
Alan Pevec 3639ab3
* Thu Dec 03 2015 Paul Belanger <pabelanger@redhat.com> - 1.4.0-1
Alan Pevec 3639ab3
- Update to upstream 1.4.0
Alan Pevec 3639ab3
- Drop patches merged upstream
Alan Pevec 3639ab3
370be2e
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.42-4
370be2e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
370be2e
Mike Burns 3ab53ce
* Fri May 08 2015 Mike Burns <mburns@redhat.com> 0.1.42-3
Mike Burns 3ab53ce
- Remove vlan vconfig from base
Mike Burns 3ab53ce
Mike Burns 3ab53ce
* Fri May 08 2015 Mike Burns <mburns@redhat.com> 0.1.42-2
Mike Burns 3ab53ce
- spec cleanup
Mike Burns 3ab53ce
- Update to upstream 0.1.42
Mike Burns 3ab53ce
- Merge fedora/master in to rhos-7.0-rhel-7
Mike Burns 3ab53ce
- Merge pull request #5 from redhat-openstack/extend_mkfs_options
Mike Burns 3ab53ce
- Merge pull request #4 from rbrady/run-registration-once
Mike Burns 3ab53ce
- Merge pull request #4 from rbrady/run-registration-once
Mike Burns 3ab53ce
- Merge remote-tracking branch 'fedora/master' into rhos-6.0-rhel-7
Mike Burns 3ab53ce
- Don't trace RHEL registration scripts
Mike Burns 3ab53ce
- Merge remote-tracking branch 'fedora/master' into rhos-6.0-rhel-7
Mike Burns 3ab53ce
- Allow for disabling rhel registration
Mike Burns 3ab53ce
- Merge remote-tracking branch 'fedora/master' into rhos-6.0-rhel-7
Mike Burns 3ab53ce
- 0.1.34-17
Mike Burns 3ab53ce
- Merge remote-tracking branch 'fedora/master' into rhos-6.0-rhel-7
Mike Burns 3ab53ce
- Make files created by patch 0013-Convert-deploy-ramdisk-to-targetcli.patch +x
Mike Burns 3ab53ce
- Convert deploy ramdisk to targetcli
Mike Burns 3ab53ce
- Bump to 0.1.34-14
Mike Burns 3ab53ce
- Allow injecting arbitrary yum repo configuration
Mike Burns 3ab53ce
- Allow source-repositories to be disabled completely
Mike Burns 3ab53ce
- Fix perms on rhel registration patch
Mike Burns 3ab53ce
- Update RHEL Registration
Mike Burns 3ab53ce
- Enable RHEL Registration
Mike Burns 3ab53ce
- Remove duplicate binary-deps from dracut-ramdisk
Mike Burns 3ab53ce
- Fix perms on binary-deps patch
Mike Burns 3ab53ce
- Use binary-deps.d for dracut ramdisks
Mike Burns 3ab53ce
- Simplify Dracut cmdline script
Mike Burns 3ab53ce
- Install lsb_release from package
Mike Burns 3ab53ce
- Import diskimage-builder from RDO
Mike Burns 3ab53ce
- New branch setup
Mike Burns 3ab53ce
- Unset trap before dracut ramdisk build script exits
Mike Burns 3ab53ce
- Move busybox binary-dep to ramdisk element
Mike Burns 3ab53ce
- Bump release as well
Mike Burns 3ab53ce
- Update spec file
Mike Burns 3ab53ce
- Remove requirement on busybox
Mike Burns 3ab53ce
- Fix syntax error
Mike Burns 3ab53ce
- Make sure files created by patch are +x
Mike Burns 3ab53ce
- Enable dracut deploy ramdisks
Mike Burns 3ab53ce
- Update to upstream 0.1.34
Mike Burns 3ab53ce
- svc-map requires PyYAML
Mike Burns 3ab53ce
- Make sure file added by patch is +x
Mike Burns 3ab53ce
- Move install bin from rpm-distro to yum
Mike Burns 3ab53ce
- Update to upstream 0.1.33
Mike Burns 3ab53ce
- Update to upstream 0.1.32
Mike Burns 3ab53ce
- Update to upstream 0.1.31
Mike Burns 3ab53ce
- Update to 0.1.30
Mike Burns 3ab53ce
- Update to upstream 0.1.30
Mike Burns 3ab53ce
- Update to upstream 0.1.30
Mike Burns 3ab53ce
- Updated patches from f20-patches
Mike Burns 3ab53ce
- Switch to rdopkg
Mike Burns 3ab53ce
- Merge branch 'master' into f20
Mike Burns 3ab53ce
- 0.1.15-3
Mike Burns 3ab53ce
- 0.1.15-3
Mike Burns 3ab53ce
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Mike Burns 3ab53ce
- Update to 0.1.15 and remove dib-run-parts
Mike Burns 3ab53ce
- Update to 0.1.15 and remove dib-run-parts
Mike Burns 3ab53ce
- Update to 0.1.13
Mike Burns 3ab53ce
- Really add 0.1.13 sources
Mike Burns 3ab53ce
- Add 0.1.13 to sources
Mike Burns 3ab53ce
- Update to 0.1.13
Mike Burns 3ab53ce
- 0.1.12
Mike Burns 3ab53ce
- Rebase to 0.1.9
Mike Burns 3ab53ce
- Rebase to 0.1.9
Mike Burns 3ab53ce
- Add tar requires
Mike Burns 3ab53ce
- Add tar requires
Mike Burns 3ab53ce
- Add new requires from requirements.txt
Mike Burns 3ab53ce
- Rebase to 0.1.5
Mike Burns 3ab53ce
Mike Burns 3ab53ce
* Fri May 08 2015 Mike Burns <mburns@redhat.com> 0.1.42-1
Mike Burns 3ab53ce
- Update to upstream 0.1.42
Mike Burns 3ab53ce
b53dbd4
* Fri Mar 27 2015 Ben Nemec <bnemec@redhat.com> 0.1.34-21
b53dbd4
- Merge pull request #5 from redhat-openstack/extend_mkfs_options
b53dbd4
- Open MKFS_OPTS for extension in disk-image-create
b53dbd4
- Merge pull request #4 from rbrady/run-registration-once
b53dbd4
- Merge pull request #3 from rbrady/fix-satellite-repo
b53dbd4
- Run Registration Once
b53dbd4
e34b862
* Mon Feb 09 2015 James Slagle <jslagle@redhat.com> 0.1.34-20
e34b862
- Merge pull request #4 from rbrady/run-registration-once
e34b862
- Merge pull request #3 from rbrady/fix-satellite-repo
e34b862
- Run Registration Once
e34b862
- Fix Satellite Repo
e34b862
- Merge pull request #1 from gfidente/master-patches
e34b862
- Switch manage_etc_hosts from True to localhost
e34b862
f7e4e03
* Mon Jan 05 2015 James Slagle <jslagle@redhat.com> 0.1.34-19
f7e4e03
- Don't trace RHEL registration scripts
f7e4e03
- Allow for disabling rhel registration
f7e4e03
- Deprecates username and password from boot time registration
f7e4e03
- Fix repo enablement for RHEL during registration
f7e4e03
90a548f
* Tue Dec 09 2014 James Slagle <jslagle@redhat.com> 0.1.34-18
90a548f
- Allow for disabling rhel registration
90a548f
Alan Pevec 3639ab3
* Mon Dec 08 2014 James Slagle <jslagle@redhat.com> 0.1.34-17
579b76b
- Make files created by patch 0012-Allow-injecting-arbitrary-yum-repo-configuration.patch +x
579b76b
f07bdb5
* Sun Dec 07 2014 James Slagle <jslagle@redhat.com> 0.1.34-16
f07bdb5
- Make files created by patch 0013-Convert-deploy-ramdisk-to-targetcli.patch +x
f07bdb5
809855e
* Sat Dec 06 2014 James Slagle <jslagle@redhat.com> 0.1.34-15
809855e
- Convert deploy ramdisk to targetcli
809855e
2b0a338
* Thu Dec 04 2014 James Slagle <jslagle@redhat.com> 0.1.34-14
2b0a338
- Allow injecting arbitrary yum repo configuration
2b0a338
ac6eb02
* Fri Nov 21 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-13
ac6eb02
- Allow source-repositories to be disabled completely
ac6eb02
8cba364
* Thu Nov 20 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-12
8cba364
- Update RHEL Registration
8cba364
20e6896
* Tue Nov 18 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-11
20e6896
- Enable RHEL Registration
20e6896
73dd369
* Fri Nov 14 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-10
73dd369
- Remove duplicate binary-deps from dracut-ramdisk
73dd369
a6b91ee
* Fri Nov 14 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-9
a6b91ee
- Fix perms on binary-deps patch
a6b91ee
d93ebf1
* Fri Nov 14 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-8
d93ebf1
- Use binary-deps.d for dracut ramdisks
d93ebf1
7b83c8e
* Thu Nov 13 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-7
7b83c8e
- Simplify Dracut cmdline script
7b83c8e
8d6dde7
* Tue Nov 11 2014 Ben Nemec <bnemec@redhat.com> 0.1.34-6
8d6dde7
- Install lsb_release from package
8d6dde7
ce2892f
* Thu Oct 23 2014 James Slagle <jslagle@redhat.com> 0.1.34-5
ce2892f
- Unset trap before dracut ramdisk build script exits
ce2892f
b7ccb27
* Wed Oct 22 2014 James Slagle <jslagle@redhat.com> 0.1.34-4
b7ccb27
- Move busybox binary-dep to ramdisk element
b7ccb27
ba97b53
* Tue Oct 21 2014 James Slagle <jslagle@redhat.com> 0.1.34-3
ba97b53
- Remove requirement on busybox, we use dracut now.
ba97b53
cbf4ab0
* Mon Oct 20 2014 James Slagle <jslagle@redhat.com> 0.1.34-2
cbf4ab0
- Enable dracut deploy ramdisks
cbf4ab0
61daffb
* Mon Oct 20 2014 James Slagle <jslagle@redhat.com> 0.1.34-1
61daffb
- Update to upstream 0.1.34
61daffb
a463ff2
* Fri Oct 17 2014 James Slagle <jslagle@redhat.com> 0.1.33-4
a463ff2
- svc-map requires PyYAML
a463ff2
aa2702a
* Fri Oct 17 2014 James Slagle <jslagle@redhat.com> 0.1.33-3
aa2702a
- Make sure file added by patch is +x
aa2702a
50810b6
* Wed Oct 15 2014 James Slagle <jslagle@redhat.com> 0.1.33-2
50810b6
- Move install bin from rpm-distro to yum
50810b6
- Check for epel before installing it
50810b6
302531d
* Wed Oct 15 2014 James Slagle <jslagle@redhat.com> 0.1.33-1
302531d
- Update to upstream 0.1.33
302531d
261d3cc
* Wed Oct 01 2014 James Slagle <jslagle@redhat.com> 0.1.32-1
261d3cc
- Update to upstream 0.1.32
261d3cc
7574428
* Mon Sep 29 2014 James Slagle <jslagle@redhat.com> 0.1.31-1
7574428
- Update to upstream 0.1.31
7574428
79a4950
* Mon Sep 15 2014 James Slagle <jslagle@redhat.com> 0.1.30-1
79a4950
- Update to upstream 0.1.30
79a4950
b448637
* Thu Sep 11 2014 James Slagle <jslagle@redhat.com> - 0.1.15-4
b448637
- Switch to rdopkg
b448637
9a85f52
* Wed Jul 02 2014 James Slagle <jslagle@redhat.com> - 0.1.15-3
9a85f52
- Add patch Remove-fixfiles-from-rpm-distro-finalize.patch
9a85f52
c2f1c38
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.15-2
c2f1c38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c2f1c38
12ae458
* Wed Apr 30 2014 Ben Nemec <bnemec@redhat.com> - 0.1.15-1
12ae458
- Update to 0.1.15
12ae458
- Remove dib-run-parts from this package
12ae458
- Add dependency on dib-utils (the new home of dib-run-parts)
12ae458
b306c2b
* Wed Apr 16 2014 Ben Nemec <bnemec@redhat.com> - 0.1.13-1
b306c2b
- Update to 0.1.13
b306c2b
- Remove mariadb-rdo-package patch that merged upstream
b306c2b
1405839
* Wed Mar 26 2014 Jeff Peeler <jpeeler@redhat.com> 0.1.9-1
1405839
- rebase to 0.1.9
1405839
64620ef
* Tue Feb 18 2014 Jeff Peeler <jpeeler@redhat.com> 0.1.5-3
64620ef
- add tar requires (rhbz#1066680)
64620ef
daab1d1
* Mon Jan 27 2014 Jeff Peeler <jpeeler@redhat.com> 0.1.5-2
daab1d1
- add new requires: python-argparse, python-babel
daab1d1
0cb5cca
* Mon Jan 27 2014 Jeff Peeler <jpeeler@redhat.com> 0.1.5-1
0cb5cca
- rebase to 0.1.5 + patch to fix RHEL 6.5 boot (rhbz#1057217)
0cb5cca
dd40530
* Wed Oct 9 2013 Jeff Peeler <jpeeler@redhat.com> 0.0.5-1
dd40530
- rebase to 0.0.5
dd40530
9a56d25
* Mon Sep 16 2013 Jeff Peeler <jpeeler@redhat.com> 0.0.1-7
9a56d25
- add patch to allow proper Fedora image creation when using vm element
9a56d25
561b545
* Fri Sep 13 2013 Jeff Peeler <jpeeler@redhat.com> 0.0.1-6
561b545
- add patches to ccd7b86b606e678bf7281baff05c420b089c5d8f (fixes kpartx issue)
561b545
b8ad3df
* Thu Sep 5 2013 Jeff Peeler <jpeeler@redhat.com> 0.0.1-5
b8ad3df
- rebase to a495079695e914fa7ec93292497bfc2471f41510
b8ad3df
- Source moved from stackforge to openstack
b8ad3df
- added curl requires
b8ad3df
- switched to pbr
b8ad3df
- remove all sudo related files as they are no longer used
b8ad3df
38c1271
* Tue Aug 13 2013 Jeff Peeler <jpeeler@redhat.com> 0.0.1-4
38c1271
- removed config-applier element
38c1271
029cc5d
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-3
029cc5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
029cc5d
5774441
* Wed Jul 31 2013 Jeff Peeler <jpeeler@redhat.com> 0.0.1-2
5774441
- rebased and dropped patches
5774441
5774441
* Mon Jul 29 2013 Jeff Peeler <jpeeler@redhat.com> 0.0.1-1
5774441
- initial package straight from github commit sha