appliance-tools/appliance-tools.spec

88 lines
2.5 KiB
RPMSpec
Raw Normal View History

2008-08-22 16:36:26 +00:00
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "import distutils.sysconfig as d; print d.get_python_lib()")}
%define debug_package %{nil}
Summary: Tools for building Appliances
Name: appliance-tools
Version: 003
Release: 4%{?dist}
2008-08-22 16:36:26 +00:00
License: GPLv2
Group: System Environment/Base
2008-08-26 16:09:39 +00:00
URL: http://git.et.redhat.com/?p=act.git
2008-08-22 16:36:26 +00:00
Source0: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: livecd-tools >= 018 curl rsync kpartx
Requires: zlib
2008-08-22 16:36:26 +00:00
BuildRequires: python
BuildArch: noarch
%description
Tools for generating appliance images on Fedora based systems including
derived distributions such as RHEL, CentOS and others. See
http://thincrust.net for more details.
%prep
2008-08-26 16:09:39 +00:00
%setup -q
2008-08-22 16:36:26 +00:00
%build
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc README COPYING
%doc config/fedora-aos.ks
%{_mandir}/man*/*
2008-08-22 16:36:26 +00:00
%{_bindir}/appliance-creator
%{_bindir}/image-minimizer
%{_bindir}/ec2-converter
2008-08-22 16:36:26 +00:00
%dir %{python_sitelib}/appcreate
%dir %{python_sitelib}/ec2convert
2008-08-22 16:36:26 +00:00
%{python_sitelib}/appcreate/*.py
%{python_sitelib}/appcreate/*.pyo
%{python_sitelib}/appcreate/*.pyc
%{python_sitelib}/ec2convert/*.py
%{python_sitelib}/ec2convert/*.pyo
%{python_sitelib}/ec2convert/*.pyc
2008-08-22 16:36:26 +00:00
%changelog
*Wed Sep 17 2008 David Huff <dhuff@redhat.com> - 003-4
- Removed all the kickstart files in the config dir to mirror livecd-tools
- Added the image minimization to the refactored code (BKearney)
- multiple interface issue (#460922)
- added --format option to specity disk image format
- added --package option to specify output, currently only .zip supported
- added --vmem and --vcpu options
- Merged ec2-converter code (jboggs)
2008-08-26 20:52:23 +00:00
*Tue Aug 26 2008 David Huff <dhuff@redhat.com> - 003-3
- release 3 fixes minor build errors
2008-08-22 16:36:26 +00:00
* Wed Jul 09 2008 David Huff <dhuff@redhat.com> - 003-1
2008-08-26 16:09:39 +00:00
- version 003 is build for latest version of livecd-tools with patches
* Wed Jul 09 2008 Alan Pevec <apevec@redhat.com> 002-1
- import imgcreate.fs refactoring and other changes
to make it work with Fedora-9 livecd-tools-0.17.1 w/o Thincrust patches
- version 002 is for f9 branch to work with stock f9 livecd-tools
2008-08-22 16:36:26 +00:00
* Wed Jun 11 2008 David Huff <dhuff@redhat.com> - 001-3
- fixed dependancys
* Tue Jun 10 2008 David Huff <dhuff@redhat.com> - 001-2
- Undated opt parser
- fixed grub issue
- build aginsted newer livecd-tools for selinux issues
* Wed May 14 2008 David Huff <dhuff@redhat.com> - 001
- Initial build.