Compare commits

...

9 Commits
master ... f9

Author SHA1 Message Date
Fedora Release Engineering b7d8848e01 dist-git conversion 2010-07-28 10:06:04 +00:00
Bill Nottingham ca73a6f723 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:28:28 +00:00
David Huff fbefa3e93c - changed form ExclusiveArch to EcludeArch to fix broken deps 2008-12-02 19:14:30 +00:00
David Huff 9000cfb501 - backported fix for bug that causes appliance-creator to stacktrace when
-i is omitted (pmyers)
2008-11-17 19:32:16 +00:00
David Huff f3b56fe596 - backported Fix for problem with -i only taking one file
- Fixed versioning of source file
2008-11-13 17:18:34 +00:00
David Huff 0a27663d15 - Fixed broken dependencies for specific archs where qemu is not available
- backported ec2 converter code (jboggs)
- backported features form applaince-tools-003-5
-- Fixed problem with long move operations (#466278)
-- Fixed error converting disk formats (#464798)
-- Added support for tar archives (#470292)
-- Added md5/sha256 disk signature support (jboggs)
-- Modified zip functionality can now do with or with out 64bit ext.
-- Added support for including extra file in the package (#470337)
-- Added option for -o outdir, no longer uses name
-- OutPut is now in a seprate dir under appliance name
2008-11-10 22:16:45 +00:00
David Huff a4cb0a90f9 - fix for problem with long move operations (#466278)
- support patterns in directory names (apevec)
- fix exit upon error when converting disk formats (#464798)
2008-10-13 18:30:45 +00:00
David Huff 7f68ba9edd - refactored code to match upsteaem project
- backported new features from upsteam version 003-4
2008-09-25 18:25:45 +00:00
Kevin Fenzi 4cc4ea0ed5 Initialize branch F-9 for appliance-tools 2008-08-07 20:54:06 +00:00
5 changed files with 112 additions and 21 deletions

View File

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
appliance-tools-002.8.tar.bz2

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: appliance-tools
# $Id$
NAME := appliance-tools
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

110
appliance-tools.spec Normal file
View File

@ -0,0 +1,110 @@
%{!?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: 002.8
Release: 2%{?dist}
License: GPLv2
Group: System Environment/Base
URL: http://thincrust.net
# The source for this package was pulled from upstream's vcs. Use the
# following commands to generate the tarball:
# git clone git://git.et.redhat.com/act.git; cd act
# git archive --format=tar --prefix=appliance-tools-%{version} appliance-tools-%{version} | bzip2 > appliance-tools-%{version}.tar.bz2
Source0: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: livecd-tools >= 017.1 curl rsync kpartx
Requires: zlib
Requires: qemu-img
BuildRequires: python
BuildArch: noarch
ExcludeArch: ppc64 s390 s390x
%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
%setup -q
%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/fedora9-aos.ks
%{_mandir}/man*/*
%{_bindir}/appliance-creator
%{_bindir}/image-minimizer
%{_bindir}/ec2-converter
%dir %{python_sitelib}/appcreate
%dir %{python_sitelib}/ec2convert
%{python_sitelib}/appcreate/*.py
%{python_sitelib}/appcreate/*.pyo
%{python_sitelib}/appcreate/*.pyc
%{python_sitelib}/ec2convert/*.py
%{python_sitelib}/ec2convert/*.pyo
%{python_sitelib}/ec2convert/*.pyc
%changelog
* Tue Dec 02 2008 David Huff <dhuff@redhat.com> - 002.8-2
- changed form ExclusiveArch to EcludeArch to fix broken deps
* Mon Nov 17 2008 David Huff <dhuff@redhat.com> - 002.8
- backported fix for bug that causes appliance-creator to stacktrace when -i is omitted (pmyers)
* Fri Nov 14 2008 David Huff <dhuff@redhat.com> - 002.7
- backported Fixed bug that causes appliance-creator to stacktrace when -i is omitted (pmyers)
* Wed Nov 13 2008 David Huff <dhuff@redhat.com> - 002.6
- backported Fix for problem with -i only taking one file
- Fixed versioning of source file
* Fri Nov 07 2008 David Huff <dhuff@redhat.com> - 002-5
- Fixed broken dependencies for specific archs where qemu is not available
- backported ec2 converter code (jboggs)
- backported features form applaince-tools-003-5
-- Fixed problem with long move operations (#466278)
-- Fixed error converting disk formats (#464798)
-- Added support for tar archives (#470292)
-- Added md5/sha256 disk signature support (jboggs)
-- Modified zip functionality can now do with or with out 64bit ext.
-- Added support for including extra file in the package (#470337)
-- Added option for -o outdir, no longer uses name
-- OutPut is now in a seprate dir under appliance name
* Mon Oct 13 2008 David Huff <dhuff@redhat.com> 002-4
- fix for problem with long move operations (#466278)
- support patterns in directory names (apevec)
- fix exit upon error when converting disk formats (#464798)
* Wed Sep 24 2008 David Huff <dhuff@redhat.com> 002-3
- refactored code to match upsteaem project
- backported new features from upsteam version 003-4
* 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
* 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.

View File

@ -0,0 +1 @@
0b40c6daab5931fd4e0388e5f2427e91 appliance-tools-002.8.tar.bz2