0fdc00
# On platforms and architectures that support it, the default is
0fdc00
# ‘--with dietlibc’.
0fdc00
#
0fdc00
# To use glibc-static instead, do ‘--without dietlibc’.  This results
0fdc00
# in a much larger (about 40 times larger) init binary.
0fdc00
#
0fdc00
# On other platforms, there is no dietlibc, so the default for those
0fdc00
# is ‘--without dietlibc’.
0fdc00
#
0fdc00
# See also:
0fdc00
# https://github.com/libguestfs/supermin/commit/9bb57e1a8d0f3b57eb09f65dd574f702b67e1c2f
0fdc00
0fdc00
%if 0%{?rhel}
0fdc00
%bcond_with dietlibc
0fdc00
%else
0fdc00
%ifarch aarch64 %{arm} %{ix86} %{power} s390x x86_64
0fdc00
%bcond_without dietlibc
0fdc00
%else
0fdc00
%bcond_with dietlibc
0fdc00
%endif
1c4e8d
%endif
1c4e8d
1c4e8d
# Whether we should verify tarball signature with GPGv2.
1c4e8d
%global verify_tarball_signature 1
1c4e8d
0fdc00
# The source directory.
0fdc00
%global source_directory 5.2-stable
0fdc00
1c4e8d
Summary:       Tool for creating supermin appliances
1c4e8d
Name:          supermin
0fdc00
Version:       5.2.1
05b497
Release:       2%{?dist}
1c4e8d
License:       GPLv2+
1c4e8d
0fdc00
ExcludeArch:   %{ix86}
1c4e8d
1c4e8d
URL:           http://people.redhat.com/~rjones/supermin/
0fdc00
Source0:       http://download.libguestfs.org/supermin/%{source_directory}/%{name}-%{version}.tar.gz
0fdc00
Source1:       http://download.libguestfs.org/supermin/%{source_directory}/%{name}-%{version}.tar.gz.sig
1c4e8d
# Keyring used to verify tarball signature.
1c4e8d
Source2:       libguestfs.keyring
1c4e8d
05b497
# RHEL 8 git repository is:
05b497
# https://github.com/libguestfs/supermin/tree/rhel-8.7.0
05b497
# Use 'copy-patches.sh' to copy the patches from the git repo
05b497
# to the current directory.
05b497
05b497
# Patches.
05b497
Patch0001:     0001-Open-Unix.LargeFile-to-avoid-lstat-Value-too-large-f.patch
05b497
Patch0002:     0002-Ignore-zfcpdump-kernel-on-s390x.patch
05b497
Patch0003:     0003-Ignore-unbootable-kernels-in-lib-modules.patch
05b497
Patch0004:     0004-Ignore-debug-kernels.patch
794737
1c4e8d
BuildRequires: /usr/bin/pod2man
1c4e8d
BuildRequires: /usr/bin/pod2html
1c4e8d
BuildRequires: rpm
1c4e8d
BuildRequires: rpm-devel
1c4e8d
BuildRequires: dnf
1c4e8d
BuildRequires: dnf-plugins-core
1c4e8d
BuildRequires: /usr/sbin/mke2fs
1c4e8d
BuildRequires: e2fsprogs-devel
1c4e8d
BuildRequires: findutils
0fdc00
%if %{with dietlibc}
0fdc00
BuildRequires: dietlibc-devel
0fdc00
%else
1c4e8d
BuildRequires: glibc-static
0fdc00
%endif
1c4e8d
BuildRequires: ocaml, ocaml-findlib-devel
1c4e8d
%if 0%{verify_tarball_signature}
1c4e8d
BuildRequires: gnupg2
1c4e8d
%endif
1c4e8d
1c4e8d
# These are required only to run the tests.  We could patch out the
1c4e8d
# tests to not require these packages.
1c4e8d
BuildRequires: augeas hivex kernel tar
1c4e8d
1c4e8d
# For complicated reasons, this is required so that
1c4e8d
# /bin/kernel-install puts the kernel directly into /boot, instead of
1c4e8d
# into a /boot/<machine-id> subdirectory (in Fedora >= 23).  Read the
1c4e8d
# kernel-install script to understand why.
1c4e8d
BuildRequires: grubby
1c4e8d
# https://bugzilla.redhat.com/show_bug.cgi?id=1331012
1c4e8d
BuildRequires: systemd-udev
1c4e8d
1c4e8d
Requires:      rpm
1c4e8d
Requires:      dnf
1c4e8d
Requires:      dnf-plugins-core
1c4e8d
Requires:      util-linux-ng
1c4e8d
Requires:      cpio
1c4e8d
Requires:      tar
1c4e8d
Requires:      /usr/sbin/mke2fs
1c4e8d
# RHBZ#771310
1c4e8d
Requires:      e2fsprogs-libs >= 1.42
1c4e8d
Requires:      findutils
1c4e8d
1c4e8d
# For automatic RPM dependency generation.
1c4e8d
# See: http://www.rpm.org/wiki/PackagerDocs/DependencyGenerator
1c4e8d
Source3:       supermin.attr
1c4e8d
Source4:       supermin-find-requires
1c4e8d
05b497
# Maintainer script which helps with handling patches.
05b497
Source5:       copy-patches.sh
05b497
1c4e8d
1c4e8d
%description
1c4e8d
Supermin is a tool for building supermin appliances.  These are tiny
1c4e8d
appliances (similar to virtual machines), usually around 100KB in
1c4e8d
size, which get fully instantiated on-the-fly in a fraction of a
1c4e8d
second when you need to boot one of them.
1c4e8d
1c4e8d
1c4e8d
%package devel
1c4e8d
Summary:       Development tools for %{name}
1c4e8d
Requires:      %{name} = %{version}-%{release}
1c4e8d
Requires:      rpm-build
1c4e8d
1c4e8d
1c4e8d
%description devel
1c4e8d
%{name}-devel contains development tools for %{name}.
1c4e8d
1c4e8d
It just contains tools for automatic RPM dependency generation
1c4e8d
from supermin appliances.
1c4e8d
1c4e8d
1c4e8d
%prep
1c4e8d
%if 0%{verify_tarball_signature}
1c4e8d
tmphome="$(mktemp -d)"
1c4e8d
gpgv2 --homedir "$tmphome" --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
1c4e8d
%endif
1c4e8d
%setup -q
1c4e8d
%autopatch -p1
1c4e8d
1c4e8d
1c4e8d
%build
1c4e8d
%configure --disable-network-tests
1c4e8d
0fdc00
%if %{with dietlibc}
0fdc00
make -C init CC="diet gcc"
0fdc00
%endif
1c4e8d
make %{?_smp_mflags}
1c4e8d
1c4e8d
1c4e8d
%install
1c4e8d
make DESTDIR=$RPM_BUILD_ROOT install
1c4e8d
1c4e8d
mkdir -p $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/
1c4e8d
install -m 0644 %{SOURCE3} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/
1c4e8d
install -m 0755 %{SOURCE4} $RPM_BUILD_ROOT%{_rpmconfigdir}/
1c4e8d
1c4e8d
1c4e8d
%check
1c4e8d
1c4e8d
# Skip execstack test where it is known to fail.
1c4e8d
%if 0%{?fedora} <= 20
1c4e8d
%ifarch aarch64 %{arm}
1c4e8d
export SKIP_TEST_EXECSTACK=1
1c4e8d
%endif
1c4e8d
%endif
1c4e8d
1c4e8d
make check || {
1c4e8d
    cat tests/test-suite.log
1c4e8d
    exit 1
1c4e8d
}
1c4e8d
1c4e8d
1c4e8d
%files
1c4e8d
%doc COPYING README examples/build-basic-vm.sh
1c4e8d
%{_bindir}/supermin
1c4e8d
%{_mandir}/man1/supermin.1*
1c4e8d
1c4e8d
1c4e8d
%files devel
1c4e8d
%{_rpmconfigdir}/fileattrs/supermin.attr
1c4e8d
%{_rpmconfigdir}/supermin-find-requires
1c4e8d
1c4e8d
1c4e8d
%changelog
05b497
* Fri Mar 04 2022 Richard W.M. Jones <rjones@redhat.com> - 5.2.1-2.el8
05b497
- Supermin should ignore +debug kernels
05b497
  resolves: rhbz#2051332
05b497
- Add copy-patches script.
05b497
0fdc00
* Thu Sep 2 2021 Danilo C. L. de Paula <ddepaula@redhat.com> - 5.2.1-1.el8
0fdc00
- Resolves: bz#2000225
0fdc00
  (Rebase virt:rhel module:stream based on AV-8.6)
0fdc00
794737
* Mon Apr 27 2020 Danilo C. L. de Paula <ddepaula@redhat.com> - 5.1.19
794737
- Resolves: bz#1810193
794737
  (Upgrade components in virt:rhel module:stream for RHEL-8.3 release)
794737
8b3e4a
* Fri Jun 28 2019 Danilo de Paula <ddepaula@redhat.com> - 5.1.19-9
dcb5c5
- Rebuild all virt packages to fix RHEL's upgrade path
8b3e4a
- Resolves: rhbz#1695587
8b3e4a
  (Ensure modular RPM upgrade path)
dcb5c5
1c4e8d
* Tue Oct 16 2018 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-8
1c4e8d
- Pass CFLAGS & LDFLAGS to final supermin link
1c4e8d
  resolves: rhbz#1624175
1c4e8d
1c4e8d
* Fri Jul 20 2018 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-7
1c4e8d
- Rebuild for OCaml 4.07.0.
1c4e8d
1c4e8d
* Wed Jun  6 2018 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-6
1c4e8d
- Drop dietlibc in RHEL 8
1c4e8d
  resolves: rhbz#1588067
1c4e8d
1c4e8d
* Tue May 22 2018 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-5
1c4e8d
- Bump release and rebuild.
1c4e8d
1c4e8d
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 5.1.19-4
1c4e8d
- Reenable hardened build
1c4e8d
1c4e8d
* Tue Feb 13 2018 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-3
1c4e8d
- Fix bytes/string problems.
1c4e8d
1c4e8d
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.19-2
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1c4e8d
1c4e8d
* Tue Sep 19 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-1
1c4e8d
- New upstream version 5.1.19.
1c4e8d
- Remove all patches, now upstream.
1c4e8d
1c4e8d
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 5.1.18-5
1c4e8d
- Rebuilt for RPM soname bump
1c4e8d
1c4e8d
* Thu Aug 03 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.18-4
1c4e8d
- Fix supermin crash with truncated vmlinuz file (RHBZ#1477758).
1c4e8d
- Include all upstream patches since 5.1.18.
1c4e8d
1c4e8d
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.18-3
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1c4e8d
1c4e8d
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.18-2
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1c4e8d
1c4e8d
* Thu Jul 13 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.18-1
1c4e8d
- New upstream release 5.1.18.
1c4e8d
- Fixes problem with creating incorrect symlinks (RHBZ#1470157).
1c4e8d
1c4e8d
* Sat Mar 18 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-5
1c4e8d
- Enable dietlibc on aarch64 and POWER.
1c4e8d
1c4e8d
* Fri Mar 17 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-4
1c4e8d
- Drop dependency on hawkey and versioned dependencies on dnf.
1c4e8d
1c4e8d
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.17-3
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1c4e8d
1c4e8d
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-2
1c4e8d
- Rebuild for OCaml 4.04.0.
1c4e8d
1c4e8d
* Tue Nov 01 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-1
1c4e8d
- New upstream release 5.1.17.
1c4e8d
- Check signature on the tarball before unpacking it.
1c4e8d
- Remove patches, all upstream.
1c4e8d
1c4e8d
* Thu Sep 15 2016 Dan Horák <dan[at]danny.cz> - 5.1.16-6
1c4e8d
- Switch to dietlibc on s390x
1c4e8d
1c4e8d
* Thu Sep 15 2016 Dan Horák <dan[at]danny.cz> - 5.1.16-5
1c4e8d
- Do not break the binary on interpreted builds (#1375213)
1c4e8d
1c4e8d
* Wed Jul 06 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.16-4
1c4e8d
- Add all upstream patches since 5.1.16 was released.
1c4e8d
1c4e8d
* Tue May 17 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.16-3
1c4e8d
- Add upstream patch for DAX / vNVDIMM support.
1c4e8d
1c4e8d
* Wed Apr 27 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.16-2
1c4e8d
- New upstream version 5.1.16.
1c4e8d
- Drop all patches since they are upstream.
1c4e8d
- Depend on systemd-udev to work around RHBZ#1331012.
1c4e8d
1c4e8d
* Fri Mar 18 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.15-2
1c4e8d
- Add all upstream patches since 5.1.15 was released.
1c4e8d
- These should improve boot performance and initrd size.
1c4e8d
1c4e8d
* Wed Feb 17 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.15-1
1c4e8d
- New upstream version 5.1.15.
1c4e8d
- Remove all patches, since they are now included in this version.
1c4e8d
- Enable dietlibc, remove glibc-static, xz-static, zlib-static.
1c4e8d
1c4e8d
* Wed Feb 17 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.14-4
1c4e8d
- Add more patches since 5.1.14.
1c4e8d
1c4e8d
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.14-3
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1c4e8d
1c4e8d
* Tue Jan 12 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.14-2
1c4e8d
- Add all patches since 5.1.14.
1c4e8d
1c4e8d
* Mon Jan 11 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.14-1
1c4e8d
- New upstream version 5.1.14.
1c4e8d
- Remove all patches - now upstream.
1c4e8d
1c4e8d
* Tue Oct 13 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.13-4
1c4e8d
- Pull in all upstream patches since 5.1.13.
1c4e8d
- Choose providers better (RHBZ#1266918).
1c4e8d
- Use autopatch.
1c4e8d
- Explicitly depend on pod2html.
1c4e8d
1c4e8d
* Mon Jul 27 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.13-3
1c4e8d
- Bump version to rebuild against new RPM in Rawhide.
1c4e8d
1c4e8d
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.13-2
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1c4e8d
1c4e8d
* Tue May 26 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.13-1
1c4e8d
- New upstream version 5.1.13.
1c4e8d
- Remove patch, now upstream.
1c4e8d
1c4e8d
* Thu May 21 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-11
1c4e8d
- Prefer 'dnf download' over 'yumdownloader' (again).
1c4e8d
- BR grubby for the tests to work.
1c4e8d
1c4e8d
* Fri Apr 10 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-9
1c4e8d
- Revert back to yumdownloader (RHBZ#1186948).
1c4e8d
1c4e8d
* Fri Apr  3 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-8
1c4e8d
- Prefer 'dnf download' over 'yumdownloader'.
1c4e8d
1c4e8d
* Fri Mar 20 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-7
1c4e8d
- Disable hardened build again.  See RHBZ#1202091 RHBZ#1204162.
1c4e8d
1c4e8d
* Mon Mar 16 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-6
1c4e8d
- Enable hardening flags by building the static 'init' specially
1c4e8d
  before the main build.
1c4e8d
- Use _smp_mflags.
1c4e8d
1c4e8d
* Thu Mar 12 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-4
1c4e8d
- Add a -devel subpackage containing automated RPM dependency generator
1c4e8d
  for supermin appliances.
1c4e8d
1c4e8d
* Mon Mar  9 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-2
1c4e8d
- Disable hardened build as it breaks building the static 'init' binary.
1c4e8d
1c4e8d
* Sat Mar  7 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-1
1c4e8d
- New upstream version 5.1.12.
1c4e8d
- Includes ARM fix: lpae kernels can now be booted (RHBZ#1199733).
1c4e8d
1c4e8d
* Thu Jan  8 2015 Pino Toscano <ptoscano@redhat.com> - 5.1.11-2
1c4e8d
- Rebuild for xz-5.2.0 in Rawhide (RHBZ#1179252).
1c4e8d
1c4e8d
* Sat Oct 25 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.11-1
1c4e8d
- New upstream version 5.1.11.
1c4e8d
1c4e8d
* Tue Oct  7 2014 Pino Toscano <ptoscano@redhat.com> - 5.1.10-2
1c4e8d
- Update to upstream commit d78c898c7e2bc5f12cbebef98b95a7908d9120f1.
1c4e8d
- BR rpm-devel, since it is now used instead of invoking rpm.
1c4e8d
- BR automake and autoconf, and run autoreconf (configure.ac is modified by
1c4e8d
  the patches).
1c4e8d
1c4e8d
* Thu Sep  4 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.10-1
1c4e8d
- New upstream version 5.1.10.
1c4e8d
- Remove patch which is now included upstream.
1c4e8d
1c4e8d
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.9-3
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1c4e8d
1c4e8d
* Sun Aug  3 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.9-2
1c4e8d
- Add upstream patch to avoid endless loop in Rawhide.
1c4e8d
1c4e8d
* Mon Jul 21 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.9-1
1c4e8d
- New upstream version 5.1.9.
1c4e8d
- Remove patches which are now upstream.
1c4e8d
1c4e8d
* Wed Jun 25 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-9
1c4e8d
- Add Requires findutils (RHBZ#1113029).
1c4e8d
1c4e8d
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.8-8
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1c4e8d
1c4e8d
* Wed May 21 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-7
1c4e8d
- Add patch to fix RPM handler when filenames may contain spaces.
1c4e8d
1c4e8d
* Mon May 19 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-4
1c4e8d
- Skip execstack test on Fedora 20 (ARM only).
1c4e8d
1c4e8d
* Fri May 16 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-3
1c4e8d
- BR xz-static & xz-devel packages, to support xz-compressed kernel modules.
1c4e8d
1c4e8d
* Fri May  9 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-1
1c4e8d
- New upstream version 5.1.8.
1c4e8d
- Remove patches which are now upstream.
1c4e8d
1c4e8d
* Thu May  1 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.7-3
1c4e8d
- Add upstream patch which removes need to run execstack (RHBZ#1093261).
1c4e8d
1c4e8d
* Mon Apr  7 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.7-2
1c4e8d
- Add patch to fix quoting around mke2fs parameter (RHBZ#1084960).
1c4e8d
1c4e8d
* Sun Apr  6 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.7-1
1c4e8d
- New upstream version 5.1.7.
1c4e8d
- Remove ppc64p7 patch which is now upstream.
1c4e8d
1c4e8d
* Thu Apr  3 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.6-5
1c4e8d
- Requires tar, which is not installed in an @Core installation.
1c4e8d
1c4e8d
* Fri Mar 28 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.6-4
1c4e8d
- Add upstream patch to fix supermin on ppc64p7.
1c4e8d
1c4e8d
* Thu Mar 27 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.6-3
1c4e8d
- New upstream version 5.1.6.
1c4e8d
- Fix tests.
1c4e8d
1c4e8d
* Mon Mar 24 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.5-2
1c4e8d
- Disable execstack on aarch64.
1c4e8d
  It comes from prelink which does not exist on aarch64.
1c4e8d
1c4e8d
* Thu Mar 13 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.5-1
1c4e8d
- New upstream version 5.1.5.
1c4e8d
1c4e8d
* Thu Mar  6 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.3-1
1c4e8d
- New upstream version 5.1.3.
1c4e8d
1c4e8d
* Sun Mar  2 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.2-1
1c4e8d
- New upstream version 5.1.2.
1c4e8d
- Fixes a serious bug in --build mode.
1c4e8d
1c4e8d
* Sat Mar  1 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.1-1
1c4e8d
- New upstream version 5.1.1.
1c4e8d
- Remove patch which is now upstream.
1c4e8d
1c4e8d
* Wed Feb 26 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.0-3
1c4e8d
- Add BR yum-utils (for yumdownloader).
1c4e8d
- Add upstream patch which stops duplicate packages appearing.
1c4e8d
1c4e8d
* Wed Feb 26 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.0-2
1c4e8d
- New upstream version 5.1.0.
1c4e8d
- Note this is effectively a rewrite, and is not completely compatible.
1c4e8d
- There is no separate 'supermin-helper' subpackage any more.
1c4e8d
- Requires rpm instead of yum.
1c4e8d
1c4e8d
* Mon Dec 23 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.6-2
1c4e8d
- New upstream version 4.1.6.
1c4e8d
- Should fix all autotools brokenness.
1c4e8d
- Man pages are now all in section 1.
1c4e8d
- Remove patch which is now upstream.
1c4e8d
- +BR /usr/bin/execstack (from prelink).
1c4e8d
1c4e8d
* Mon Dec 23 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-5
1c4e8d
- Rerun autoreconf to fix autotools brokenness.
1c4e8d
1c4e8d
* Sun Dec 22 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-4
1c4e8d
- Why was prelink required?  Remove it.
1c4e8d
1c4e8d
* Fri Sep 13 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 4.1.5-3
1c4e8d
- correct Obsoletes version for febootstrap and febootstrap-supermin-helper
1c4e8d
1c4e8d
* Sun Sep  8 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-2
1c4e8d
- (For ARM) Don't crash if SUPERMIN_DTB is set and --dtb not specified.
1c4e8d
1c4e8d
* Fri Sep  6 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-1
1c4e8d
- New upstream version 4.1.5.
1c4e8d
- Has (optionally) a new command line syntax.
1c4e8d
- Supports device trees for ARM.
1c4e8d
1c4e8d
* Wed Aug 28 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.4-1
1c4e8d
- New upstream version 4.1.4.
1c4e8d
- Supports compressed cpio image files, experimentally.
1c4e8d
1c4e8d
* Fri Aug  9 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.3-1
1c4e8d
- New upstream version 4.1.3.
1c4e8d
- Remove patch which is now upstream.
1c4e8d
- Add examples directory to documentation.
1c4e8d
1c4e8d
* Tue Aug  6 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-2
1c4e8d
- Include upstream patch to get correct directory setgid/sticky bits in
1c4e8d
  the appliance.
1c4e8d
1c4e8d
* Sat Aug  3 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-1
1c4e8d
- New upstream version 4.1.2.
1c4e8d
- Remove patch which is now upstream.
1c4e8d
1c4e8d
* Wed Jun 26 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.1-2
1c4e8d
- Add upstream patch to ignore ghost non-regular files.
1c4e8d
- This fixes builds on Fedora 20 because the filesystem package has
1c4e8d
  been changed so /var/lock and /var/run are marked as ghost.
1c4e8d
1c4e8d
* Tue Feb  5 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.1-1
1c4e8d
- New upstream version 4.1.1.
1c4e8d
- The program has been renamed 'supermin' from 'febootstrap'.
1c4e8d
- Obsolete, but don't Provide because supermin is not a compatible replacement.
1c4e8d
- Use '_isa' to specify architecture of supermin-helper subpackage.
1c4e8d
1c4e8d
* Tue Jan 22 2013 Richard W.M. Jones <rjones@redhat.com> - 1:3.21-2
1c4e8d
- Add upstream patch to drop supplemental groups (RHBZ#902476).
1c4e8d
- Remove 'Group:' RPM headers which are no longer necessary.
1c4e8d
- Remove some commented-out requirements.
1c4e8d
1c4e8d
* Sat Dec 22 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.21-1
1c4e8d
- New upstream version 3.21.
1c4e8d
1c4e8d
* Fri Aug 31 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.20-1
1c4e8d
- New upstream version 3.20.
1c4e8d
1c4e8d
* Wed Aug 22 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.19-2
1c4e8d
- Work around brokenness in yum (RHBZ#850913).
1c4e8d
- Remove defattr, no longer required.
1c4e8d
1c4e8d
* Tue Jul 31 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.19-1
1c4e8d
- New upstream version 3.19.
1c4e8d
1c4e8d
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.18-2
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1c4e8d
1c4e8d
* Mon Jun 18 2012 Richard Jones <rjones@redhat.com> - 3.18-1
1c4e8d
- New upstream version 3.18.
1c4e8d
- This adds support for EPEL 5.
1c4e8d
1c4e8d
* Thu Jun 14 2012 Richard Jones <rjones@redhat.com> - 3.17-1
1c4e8d
- New upstream version 3.17.
1c4e8d
1c4e8d
* Wed Jun 13 2012 Richard Jones <rjones@redhat.com> - 3.16-1
1c4e8d
- New upstream version 3.16.
1c4e8d
1c4e8d
* Tue Jun 12 2012 Richard Jones <rjones@redhat.com> - 3.15-1
1c4e8d
- New upstream version 3.15.
1c4e8d
- This version includes root=<device> support, needed for libguestfs
1c4e8d
  with virtio-scsi.
1c4e8d
- Remove upstream patch.
1c4e8d
1c4e8d
* Thu May 17 2012 Richard Jones <rjones@redhat.com> - 3.14-6
1c4e8d
- For RHEL 7 only, add ExclusiveArch x86-64.
1c4e8d
1c4e8d
* Tue May 15 2012 Richard Jones <rjones@redhat.com> - 3.14-5
1c4e8d
- Bundled gnulib (RHBZ#821752).
1c4e8d
1c4e8d
* Fri Apr 13 2012 Richard Jones <rjones@redhat.com> - 3.14-4
1c4e8d
- Add back explicit dependencies for external programs.
1c4e8d
1c4e8d
* Fri Apr 13 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.14-3
1c4e8d
- Drop ExclusiveArch as it's supported on all primary & secondary arches
1c4e8d
- Cleanup spec and deps
1c4e8d
1c4e8d
* Fri Mar 30 2012 Richard Jones <rjones@redhat.com> - 3.14-2
1c4e8d
- New upstream version 3.14.
1c4e8d
- Add upstream patch to fix RHBZ#808421.
1c4e8d
1c4e8d
* Thu Mar 29 2012 Richard Jones <rjones@redhat.com> - 3.13-4
1c4e8d
- e2fsprogs moved /sbin/mke2fs to /usr/sbin (thanks Eric Sandeen).
1c4e8d
1c4e8d
* Thu Mar  1 2012 Richard Jones <rjones@redhat.com> - 3.13-2
1c4e8d
- Missing BR zlib-static.
1c4e8d
1c4e8d
* Thu Feb  9 2012 Richard Jones <rjones@redhat.com> - 3.13-1
1c4e8d
- New upstream version 3.13.
1c4e8d
- Remove upstream patch which is included in this version.
1c4e8d
1c4e8d
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12-5
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1c4e8d
1c4e8d
* Tue Jan  3 2012 Richard Jones <rjones@redhat.com> - 3.12-4
1c4e8d
- Depend on latest e2fsprogs (RHBZ#771310).
1c4e8d
1c4e8d
* Wed Nov  9 2011 Richard Jones <rjones@redhat.com> - 3.12-2
1c4e8d
- Include upstream patch to work around Python stupidity.
1c4e8d
1c4e8d
* Tue Oct 18 2011 Richard Jones <rjones@redhat.com> - 3.12-1
1c4e8d
- New upstream version 3.12.
1c4e8d
- Remove upstream patch which is included in this version.
1c4e8d
1c4e8d
* Fri Oct 14 2011 Richard Jones <rjones@redhat.com> - 3.11-2
1c4e8d
- Add upstream patch to fix febootstrap on non-Debian.
1c4e8d
1c4e8d
* Fri Oct 14 2011 Richard Jones <rjones@redhat.com> - 3.11-1
1c4e8d
- New upstream version 3.11.
1c4e8d
1c4e8d
* Thu Sep  1 2011 Richard Jones <rjones@redhat.com> - 3.10-1
1c4e8d
- New upstream version 3.10.
1c4e8d
1c4e8d
* Fri Aug 26 2011 Richard Jones <rjones@redhat.com> - 3.9-1
1c4e8d
- New upstream version 3.9.
1c4e8d
1c4e8d
* Tue Jul 26 2011 Richard Jones <rjones@redhat.com> - 3.8-1
1c4e8d
- New upstream version 3.8.
1c4e8d
1c4e8d
* Fri Jul 15 2011 Richard Jones <rjones@redhat.com> - 3.7-1
1c4e8d
- New upstream version 3.7.
1c4e8d
1c4e8d
* Wed Jun  1 2011 Richard Jones <rjones@redhat.com> - 3.6-1
1c4e8d
- New upstream version 3.6.
1c4e8d
- This version no longer needs external insmod.static.
1c4e8d
1c4e8d
* Fri May 27 2011 Richard Jones <rjones@redhat.com> - 3.5-1
1c4e8d
- New upstream version 3.5.
1c4e8d
- Remove patch which is now upstream.
1c4e8d
1c4e8d
* Fri Mar 18 2011 Richard Jones <rjones@redhat.com> - 3.4-2
1c4e8d
- Don't fail if objects are created in a symlinked dir (RHBZ#698089).
1c4e8d
1c4e8d
* Fri Mar 18 2011 Richard Jones <rjones@redhat.com> - 3.4-1
1c4e8d
- New upstream version 3.4.
1c4e8d
- febootstrap-supermin-helper Obsoletes older versions of febootstrap.
1c4e8d
1c4e8d
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-5
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1c4e8d
1c4e8d
* Fri Jan 14 2011 Richard Jones <rjones@redhat.com> - 3.3-4
1c4e8d
- Split package into febootstrap (for building) and febootstrap-supermin-helper
1c4e8d
  (for running).  Note that febootstrap depends on febootstrap-supermin-helper,
1c4e8d
  but you can install febootstrap-supermin-helper on its own.
1c4e8d
1c4e8d
* Fri Jan 14 2011 Richard Jones <rjones@redhat.com> - 3.3-3
1c4e8d
- Clear executable stack flag on febootstrap-supermin-helper.
1c4e8d
1c4e8d
* Thu Jan 13 2011 Dan Horák <dan[at]danny.cz> - 3.3-2
1c4e8d
- add the ocaml's ExclusiveArch
1c4e8d
1c4e8d
* Sat Dec 11 2010 Richard Jones <rjones@redhat.com> - 3.3-1
1c4e8d
- New upstream version 3.3.
1c4e8d
1c4e8d
* Tue Dec  7 2010 Richard Jones <rjones@redhat.com> - 3.2-1
1c4e8d
- New upstream version 3.2.
1c4e8d
- Remove upstream patches.
1c4e8d
1c4e8d
* Tue Dec  7 2010 Richard Jones <rjones@redhat.com> - 3.1-5
1c4e8d
- Previous fix for RHBZ#654638 didn't work, fix it correctly.
1c4e8d
1c4e8d
* Mon Dec  6 2010 Richard Jones <rjones@redhat.com> - 3.1-4
1c4e8d
- Properly ignore .*.hmac files (accidental reopening of RHBZ#654638).
1c4e8d
1c4e8d
* Mon Dec  6 2010 Richard Jones <rjones@redhat.com> - 3.1-3
1c4e8d
- Uses yumdownloader at runtime, so require yum-utils.
1c4e8d
1c4e8d
* Mon Dec  6 2010 Richard Jones <rjones@redhat.com> - 3.1-2
1c4e8d
- New upstream version 3.1.
1c4e8d
- BR insmod.static.
1c4e8d
1c4e8d
* Sun Dec  5 2010 Richard Jones <rjones@redhat.com> - 3.0-2
1c4e8d
- New upstream version 3.0 (note this is incompatible with 2.x).
1c4e8d
- Fix upstream URLs.
1c4e8d
- fakeroot, fakechroot no longer required.
1c4e8d
- insmod.static is required at runtime (missing dependency from earlier).
1c4e8d
- The only programs are 'febootstrap' and 'febootstrap-supermin-helper'.
1c4e8d
- BR ocaml, ocaml-findlib-devel.
1c4e8d
- No examples are provided with this version of febootstrap.
1c4e8d
1c4e8d
* Thu Nov 25 2010 Richard Jones <rjones@redhat.com> - 2.11-1
1c4e8d
- New upstream version 2.11.
1c4e8d
- Fixes "ext2fs_mkdir .. No free space in directory" bug which affects
1c4e8d
  libguestfs on rawhide.
1c4e8d
1c4e8d
* Thu Oct 28 2010 Richard Jones <rjones@redhat.com> - 2.10-1
1c4e8d
- New upstream version 2.10.
1c4e8d
- Adds -u and -g options to febootstrap-supermin-helper which are
1c4e8d
  required by virt-v2v.
1c4e8d
1c4e8d
* Fri Aug 27 2010 Richard Jones <rjones@redhat.com> - 2.9-1
1c4e8d
- New upstream version 2.9.
1c4e8d
- Fixes directory ordering problem in febootstrap-supermin-helper.
1c4e8d
1c4e8d
* Tue Aug 24 2010 Richard Jones <rjones@redhat.com> - 2.8-1
1c4e8d
- New upstream version 2.8.
1c4e8d
1c4e8d
* Sat Aug 21 2010 Richard Jones <rjones@redhat.com> - 2.8-0.2
1c4e8d
- New pre-release version of 2.8.
1c4e8d
  + Note this is based on 2.7 + mailing list patches.
1c4e8d
- New BRs on mke2fs, libext2fs, glibc-static.
1c4e8d
1c4e8d
* Fri May 14 2010 Richard Jones <rjones@redhat.com> - 2.7-2
1c4e8d
- New upstream version 2.7.
1c4e8d
- febootstrap-supermin-helper shell script rewritten in C for speed.
1c4e8d
- This package contains C code so it is no longer 'noarch'.
1c4e8d
- MAKEDEV isn't required.
1c4e8d
1c4e8d
* Fri Jan 22 2010 Richard Jones <rjones@redhat.com> - 2.6-1
1c4e8d
- New upstream release 2.6.
1c4e8d
- Recheck package in rpmlint.
1c4e8d
1c4e8d
* Thu Oct 22 2009 Richard Jones <rjones@redhat.com> - 2.5-2
1c4e8d
- New upstream release 2.5.
1c4e8d
- Remove BR upx (not needed by upstream).
1c4e8d
- Two more scripts / manpages.
1c4e8d
1c4e8d
* Thu Jul 30 2009 Richard Jones <rjones@redhat.com> - 2.4-1
1c4e8d
- New upstream release 2.4.
1c4e8d
1c4e8d
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-2
1c4e8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1c4e8d
1c4e8d
* Mon Jun 15 2009 Richard Jones <rjones@redhat.com> - 2.3-1
1c4e8d
- New upstream release 2.3.
1c4e8d
1c4e8d
* Mon Jun 15 2009 Richard Jones <rjones@redhat.com> - 2.2-1
1c4e8d
- New upstream release 2.2.
1c4e8d
1c4e8d
* Mon May 11 2009 Richard Jones <rjones@redhat.com> - 2.0-1
1c4e8d
- New upstream release 2.0.
1c4e8d
1c4e8d
* Thu May  7 2009 Richard Jones <rjones@redhat.com> - 1.9-1
1c4e8d
- New upstream release 1.9.
1c4e8d
1c4e8d
* Fri May  1 2009 Richard Jones <rjones@redhat.com> - 1.8-1
1c4e8d
- New upstream release 1.8.
1c4e8d
1c4e8d
* Mon Apr 20 2009 Richard Jones <rjones@redhat.com> - 1.7-1
1c4e8d
- New upstream release 1.7.
1c4e8d
1c4e8d
* Tue Apr 14 2009 Richard Jones <rjones@redhat.com> - 1.5-3
1c4e8d
- Configure script has (unnecessary) BuildRequires on fakeroot,
1c4e8d
  fakechroot, yum.
1c4e8d
1c4e8d
* Tue Apr 14 2009 Richard Jones <rjones@redhat.com> - 1.5-2
1c4e8d
- Initial build for Fedora.