Compare commits

...

7 Commits
master ... el6

Author SHA1 Message Date
Till Maas 730cfede9e 2014-12-20: Retired because of broken deps:
unresolved dependencies for appliance-tools-007.7-2.1.el6.noarch:
xfsprogs
qemu-img
2014-12-20 18:27:47 +01:00
Adam Miller c4bee6a28b update to latest upstream with fix for doc paths 2014-04-08 16:17:55 -05:00
Fedora Release Engineering 909aaa7cb7 dist-git conversion 2010-07-28 10:06:05 +00:00
Dennis Gilmore 4d55d16068 Initialize branch EL-6 for appliance-tools 2010-05-08 01:42:56 +00:00
David Huff c42d075c0e added new source file appliance-tools-004.5.tar.bz2 2010-02-10 15:16:39 +00:00
David Huff d3f08bc6b5 - Fixed error while installing grub
- Fixed issue with Fedora 12 using dracut to generate initrd
- Fixed issue with Fedora 12 parted error
2010-02-10 15:14:51 +00:00
Bill Nottingham 7ffe7dc3fc Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:28:28 +00:00
6 changed files with 5 additions and 158 deletions

View File

@ -1 +0,0 @@
appliance-tools-004.4.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)

View File

@ -1,132 +0,0 @@
%{!?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: 004.4
Release: 3%{?dist}
License: GPLv2
Group: System Environment/Base
URL: http://git.et.redhat.com/?p=act.git
# 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 >= 020 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/fedora-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
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 004.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
*Mon Jul 07 2009 David Huff <dhuff@redhat.com> -004.4
- added functionality include additional modules in ramdisk
*Mon Dec 01 2008 David Huff <dhuff@redhat.com> -004.2
- changed form ExclusiveArch to EcludeArch to fix broken deps
*Mon Dec 01 2008 David Huff <dhuff@redhat.com> - 004
- bumped version for rebuild for Python 2.6
- Allow the user to pass in --version and --release command line paramneters (bkearney)
- Patches to integrate ec2 conversion into the adk (bkeareny)
- Allow the appliance-creator to use remote urls with the new image tools (bkearney)
*Fri Nov 14 2008 David Huff <dhuff@redhat.com> - 003.9
- Fixed bug in globbing files under a directory (pmyers)
*Fri Nov 14 2008 David Huff <dhuff@redhat.com> - 003.8
- Fixed bug that causes appliance-creator to stacktrace when -i is omitted (pmyers)
*Wed Nov 12 2008 David Huff <dhuff@redhat.com> - 003.7
- Fixed problem with -i only taking one file, now can include a dir
- Fixed versioning of source file, ie. 003.7
*Mon Nov 10 2008 David Huff <dhuff@redhat.com> - 003-6
- Fixed broken dependencies for specific archs where qemu is not available
*Fri Nov 07 2008 David Huff <dhuff@redhat.com> - 003-5
- Added error for Incomplete partition info (#465988)
- 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
*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)
*Tue Aug 26 2008 David Huff <dhuff@redhat.com> - 003-3
- release 3 fixes minor build errors
* Wed Jul 09 2008 David Huff <dhuff@redhat.com> - 003-1
- 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
* 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.

5
dead.package Normal file
View File

@ -0,0 +1,5 @@
2014-12-20: Retired because of broken deps:
unresolved dependencies for appliance-tools-007.7-2.1.el6.noarch:
xfsprogs
qemu-img

View File

@ -1,3 +0,0 @@
appliance-tools-003-1_fc10:HEAD:appliance-tools-003-1.fc10.src.rpm:1219422935
appliance-tools-004-1_fc10:HEAD:appliance-tools-004-1.fc10.src.rpm:1228130661
appliance-tools-004_4-2_fc12:HEAD:appliance-tools-004.4-2.fc12.src.rpm:1247756755

View File

@ -1 +0,0 @@
5d3b9557165a281f9cc12e6f67f6ce33 appliance-tools-004.4.tar.bz2