summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-14 21:52:34 +0100
committerRichard Jones <rjones@redhat.com>2009-04-14 21:53:19 +0100
commit482e263073e70b8688aaf68443b9b14965129095 (patch)
tree6fe4bb3bd357ad2e1287f90ea5b0c3909a6e192b
parent616d80ae910d93e9471a7eaf2a6798f423d2674a (diff)
downloadfebootstrap-482e263073e70b8688aaf68443b9b14965129095.tar.gz
febootstrap-482e263073e70b8688aaf68443b9b14965129095.tar.xz
febootstrap-482e263073e70b8688aaf68443b9b14965129095.zip
febootstrap.spec removed, see https://bugzilla.redhat.com/show_bug.cgi?id=febootstrap
-rw-r--r--.gitignore1
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac2
-rw-r--r--febootstrap.spec.in82
4 files changed, 1 insertions, 85 deletions
diff --git a/.gitignore b/.gitignore
index c50e549..db68bd9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,7 +11,6 @@ config.h
config.log
config.status
configure
-febootstrap.spec
febootstrap
febootstrap-run
febootstrap-minimize
diff --git a/Makefile.am b/Makefile.am
index 7f590da..c23498b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -101,7 +101,6 @@ febootstrap-to-initramfs.txt: febootstrap-to-initramfs.pod
endif
EXTRA_DIST = \
- febootstrap.spec febootstrap.spec.in \
fakechroot-2.8-relchroot.patch \
fakechroot-svn-no-dup-envs.patch \
febootstrap.8 febootstrap.txt febootstrap.pod \
diff --git a/configure.ac b/configure.ac
index 9e375d0..7d4cf9f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -42,5 +42,5 @@ if test "x$YUM" = "xno" ; then
fi
AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([Makefile examples/Makefile febootstrap.spec])
+AC_CONFIG_FILES([Makefile examples/Makefile])
AC_OUTPUT
diff --git a/febootstrap.spec.in b/febootstrap.spec.in
deleted file mode 100644
index b432e09..0000000
--- a/febootstrap.spec.in
+++ /dev/null
@@ -1,82 +0,0 @@
-# @configure_input@
-
-Summary: Bootstrap a new Fedora system (like debootstrap)
-Name: febootstrap
-Version: @VERSION@
-Release: 1%{?dist}
-License: GPLv2+
-Group: Development/Tools
-URL: http://et.redhat.com/~rjones/febootstrap/
-Source0: http://et.redhat.com/~rjones/febootstrap/files/%{name}-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-BuildArch: noarch
-
-BuildRequires: /usr/bin/pod2man
-
-Requires: fakeroot >= 1.11
-Requires: fakechroot >= 2.9-1.fc11.rwmj3
-Requires: yum >= 3.2
-Requires: MAKEDEV
-Requires: util-linux-ng
-Requires: cpio
-Requires: upx
-
-# These are suggestions. However making them hard requirements
-# pulls in far too much stuff.
-#Requires: qemu
-#Requires: filelight
-#Requires: baobab # Not as nice as filelight.
-
-
-%description
-febootstrap is a Fedora equivalent to Debian's debootstrap. You can
-use it to create a basic Fedora filesystem, and build initramfs
-(initrd.img) or filesystem images.
-
-febootstrap also includes a separate tool to minimize filesystems by
-removing unneeded locales, documentation etc.
-
-The main difference from other appliance building tools is that this
-one doesn't need to be run as root.
-
-
-%prep
-%setup -q
-
-
-%build
-%configure
-make
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-make DESTDIR=$RPM_BUILD_ROOT install
-
-# Clean up the examples/ directory which will get installed in %doc.
-# In this case I don't want the scripts to be executable because
-# people should read them carefully before running them.
-rm examples/Makefile*
-chmod -x examples/*.sh
-
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
-%files
-%defattr(-,root,root,-)
-%doc COPYING README examples
-%{_bindir}/febootstrap
-%{_bindir}/febootstrap-run
-%{_bindir}/febootstrap-minimize
-%{_bindir}/febootstrap-to-initramfs
-%{_mandir}/man8/febootstrap.8*
-%{_mandir}/man8/febootstrap-run.8*
-%{_mandir}/man8/febootstrap-minimize.8*
-%{_mandir}/man8/febootstrap-to-initramfs.8*
-
-
-%changelog
-* Mon Mar 23 2009 Richard Jones <rjones@redhat.com> - @VERSION@-1
-- Initial build.