18ebd2c
%ifnarch %{ocaml_native_compiler}
18ebd2c
%global __strip /bin/true
18ebd2c
%global debug_package %{nil}
18ebd2c
%endif
18ebd2c
3c79fab
# On architectures that support it, the default is ``--with dietlibc''.
dedcae0
#
dedcae0
# To use glibc-static instead, do ``--without dietlibc''.  This
dedcae0
# results in a much larger (about 40 times larger) init binary.
dedcae0
#
dedcae0
# On other platforms, there is no dietlibc, so the default for those
dedcae0
# is ``--without dietlibc''.
dedcae0
#
dedcae0
# See also:
dedcae0
# https://github.com/libguestfs/supermin/commit/9bb57e1a8d0f3b57eb09f65dd574f702b67e1c2f
dedcae0
3c79fab
%ifarch aarch64 %{arm} %{ix86} %{power} s390x x86_64
dedcae0
%bcond_without dietlibc
dedcae0
%else
dedcae0
%bcond_with dietlibc
dedcae0
%endif
dedcae0
e0cc366
# Whether we should verify tarball signature with GPGv2.
e0cc366
%global verify_tarball_signature 1
e0cc366
90579d2
Summary:       Tool for creating supermin appliances
90579d2
Name:          supermin
df88802
Version:       5.1.20
b07e68e
Release:       6%{?dist}
90579d2
License:       GPLv2+
90579d2
90579d2
%if 0%{?rhel} >= 7
90579d2
ExclusiveArch: x86_64
90579d2
%endif
90579d2
2f66d09
URL:           http://people.redhat.com/~rjones/supermin/
2f66d09
Source0:       http://libguestfs.org/download/supermin/%{name}-%{version}.tar.gz
e0cc366
%if 0%{verify_tarball_signature}
e0cc366
Source1:       http://libguestfs.org/download/supermin/%{name}-%{version}.tar.gz.sig
e0cc366
%endif
2f66d09
e0cc366
# Keyring used to verify tarball signature.
e0cc366
%if 0%{verify_tarball_signature}
e0cc366
Source2:       libguestfs.keyring
e0cc366
%endif
4588546
d24f9ed
# Upstream patches to diagnose possible F29 issue:
d24f9ed
# https://www.redhat.com/archives/libguestfs/2019-January/thread.html#00168
d24f9ed
Patch1:        0001-rpm-extend-the-Multiple_matches-exception.patch
d24f9ed
Patch2:        0002-Print-Librpm.Multiple_matches-exceptions.patch
d24f9ed
90579d2
BuildRequires: /usr/bin/pod2man
8563312
BuildRequires: /usr/bin/pod2html
db0afa4
BuildRequires: rpm
cfc87a5
BuildRequires: rpm-devel
f5ad0a1
BuildRequires: dnf
f5ad0a1
BuildRequires: dnf-plugins-core
90579d2
BuildRequires: /usr/sbin/mke2fs
90579d2
BuildRequires: e2fsprogs-devel
e08b361
BuildRequires: findutils
dedcae0
%if %{with dietlibc}
dedcae0
BuildRequires: dietlibc-devel
dedcae0
%else
dedcae0
BuildRequires: glibc-static
dedcae0
%endif
90579d2
BuildRequires: ocaml, ocaml-findlib-devel
e0cc366
%if 0%{verify_tarball_signature}
e0cc366
BuildRequires: gnupg2
e0cc366
%endif
90579d2
238a6b5
# These are required only to run the tests.  We could patch out the
238a6b5
# tests to not require these packages.
3264a13
BuildRequires: augeas hivex kernel tar
238a6b5
94ef0fd
# For complicated reasons, this is required so that
94ef0fd
# /bin/kernel-install puts the kernel directly into /boot, instead of
94ef0fd
# into a /boot/<machine-id> subdirectory (in Fedora >= 23).  Read the
94ef0fd
# kernel-install script to understand why.
94ef0fd
BuildRequires: grubby
7c8a2fd
# https://bugzilla.redhat.com/show_bug.cgi?id=1331012
7c8a2fd
BuildRequires: systemd-udev
94ef0fd
db0afa4
Requires:      rpm
f5ad0a1
Requires:      dnf
f5ad0a1
Requires:      dnf-plugins-core
90579d2
Requires:      util-linux-ng
90579d2
Requires:      cpio
9707eb5
Requires:      tar
90579d2
Requires:      /usr/sbin/mke2fs
90579d2
# RHBZ#771310
90579d2
Requires:      e2fsprogs-libs >= 1.42
e08b361
Requires:      findutils
90579d2
69cab53
# For automatic RPM dependency generation.
69cab53
# See: http://www.rpm.org/wiki/PackagerDocs/DependencyGenerator
e0cc366
Source3:       supermin.attr
e0cc366
Source4:       supermin-find-requires
69cab53
90579d2
db0afa4
%description
db0afa4
Supermin is a tool for building supermin appliances.  These are tiny
db0afa4
appliances (similar to virtual machines), usually around 100KB in
db0afa4
size, which get fully instantiated on-the-fly in a fraction of a
db0afa4
second when you need to boot one of them.
90579d2
90579d2
69cab53
%package devel
69cab53
Summary:       Development tools for %{name}
69cab53
Requires:      %{name} = %{version}-%{release}
69cab53
Requires:      rpm-build
69cab53
69cab53
69cab53
%description devel
69cab53
%{name}-devel contains development tools for %{name}.
69cab53
69cab53
It just contains tools for automatic RPM dependency generation
69cab53
from supermin appliances.
69cab53
69cab53
90579d2
%prep
e0cc366
%if 0%{verify_tarball_signature}
e0cc366
tmphome="$(mktemp -d)"
e0cc366
gpgv2 --homedir "$tmphome" --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
e0cc366
%endif
90579d2
%setup -q
a3a5281
%autopatch -p1
90579d2
90579d2
90579d2
%build
b9056b8
%configure --disable-network-tests
8c03458
dedcae0
%if %{with dietlibc}
dedcae0
make -C init CC="diet gcc"
dedcae0
%endif
5d053a5
make %{?_smp_mflags}
90579d2
90579d2
90579d2
%install
90579d2
make DESTDIR=$RPM_BUILD_ROOT install
90579d2
69cab53
mkdir -p $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/
e0cc366
install -m 0644 %{SOURCE3} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/
e0cc366
install -m 0755 %{SOURCE4} $RPM_BUILD_ROOT%{_rpmconfigdir}/
69cab53
90579d2
17fdac5
%check
609575e
609575e
# Skip execstack test where it is known to fail.
609575e
%if 0%{?fedora} <= 20
609575e
%ifarch aarch64 %{arm}
609575e
export SKIP_TEST_EXECSTACK=1
609575e
%endif
609575e
%endif
609575e
238a6b5
make check || {
238a6b5
    cat tests/test-suite.log
238a6b5
    exit 1
238a6b5
}
17fdac5
17fdac5
90579d2
%files
b37e55a
%doc COPYING README examples/build-basic-vm.sh
90579d2
%{_bindir}/supermin
9862bce
%{_mandir}/man1/supermin.1*
90579d2
90579d2
69cab53
%files devel
69cab53
%{_rpmconfigdir}/fileattrs/supermin.attr
69cab53
%{_rpmconfigdir}/supermin-find-requires
69cab53
69cab53
90579d2
%changelog
b07e68e
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.20-6
b07e68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b07e68e
8d2c36d
* Mon Jun 10 22:13:23 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 5.1.20-5
8d2c36d
- Rebuild for RPM 4.15
8d2c36d
13f7371
* Mon Jun 10 15:42:06 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 5.1.20-4
13f7371
- Rebuild for RPM 4.15
13f7371
485c142
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.20-3
485c142
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
485c142
d24f9ed
* Thu Jan 24 2019 Richard W.M. Jones <rjones@redhat.com> - 5.1.20-2
d24f9ed
- Add upstream patches to diagnose possible F29 issue.
d24f9ed
df88802
* Thu Jan 17 2019 Richard W.M. Jones <rjones@redhat.com> - 5.1.20-1
df88802
- New upstream version 5.1.20.
df88802
e308057
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.19-5
e308057
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e308057
fe852db
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 5.1.19-4
fe852db
- Reenable hardened build
fe852db
0da9aef
* Tue Feb 13 2018 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-3
0da9aef
- Fix bytes/string problems.
0da9aef
ebbe4e3
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.19-2
ebbe4e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ebbe4e3
ef3b041
* Tue Sep 19 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.19-1
ef3b041
- New upstream version 5.1.19.
ef3b041
- Remove all patches, now upstream.
ef3b041
Igor Gnatenko df8b19d
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 5.1.18-5
Igor Gnatenko df8b19d
- Rebuilt for RPM soname bump
Igor Gnatenko df8b19d
36f5331
* Thu Aug 03 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.18-4
36f5331
- Fix supermin crash with truncated vmlinuz file (RHBZ#1477758).
36f5331
- Include all upstream patches since 5.1.18.
36f5331
2e7b101
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.18-3
2e7b101
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2e7b101
ce7226a
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.18-2
ce7226a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ce7226a
1fda322
* Thu Jul 13 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.18-1
1fda322
- New upstream release 5.1.18.
1fda322
- Fixes problem with creating incorrect symlinks (RHBZ#1470157).
1fda322
3c79fab
* Sat Mar 18 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-5
3c79fab
- Enable dietlibc on aarch64 and POWER.
3c79fab
f5ad0a1
* Fri Mar 17 2017 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-4
f5ad0a1
- Drop dependency on hawkey and versioned dependencies on dnf.
f5ad0a1
c4b0ee6
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.17-3
c4b0ee6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c4b0ee6
33fd119
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-2
33fd119
- Rebuild for OCaml 4.04.0.
33fd119
e0cc366
* Tue Nov 01 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.17-1
e0cc366
- New upstream release 5.1.17.
e0cc366
- Check signature on the tarball before unpacking it.
e0cc366
- Remove patches, all upstream.
e0cc366
2ea5f16
* Thu Sep 15 2016 Dan Horák <dan[at]danny.cz> - 5.1.16-6
2ea5f16
- Switch to dietlibc on s390x
2ea5f16
18ebd2c
* Thu Sep 15 2016 Dan Horák <dan[at]danny.cz> - 5.1.16-5
18ebd2c
- Do not break the binary on interpreted builds (#1375213)
18ebd2c
4144ae2
* Wed Jul 06 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.16-4
4144ae2
- Add all upstream patches since 5.1.16 was released.
4144ae2
f69129d
* Tue May 17 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.16-3
f69129d
- Add upstream patch for DAX / vNVDIMM support.
f69129d
7c8a2fd
* Wed Apr 27 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.16-2
24adc5a
- New upstream version 5.1.16.
24adc5a
- Drop all patches since they are upstream.
7c8a2fd
- Depend on systemd-udev to work around RHBZ#1331012.
24adc5a
5c44b1e
* Fri Mar 18 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.15-2
5c44b1e
- Add all upstream patches since 5.1.15 was released.
5c44b1e
- These should improve boot performance and initrd size.
5c44b1e
dedcae0
* Wed Feb 17 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.15-1
dedcae0
- New upstream version 5.1.15.
dedcae0
- Remove all patches, since they are now included in this version.
dedcae0
- Enable dietlibc, remove glibc-static, xz-static, zlib-static.
dedcae0
62fb9f7
* Wed Feb 17 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.14-4
62fb9f7
- Add more patches since 5.1.14.
62fb9f7
a6c831e
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.14-3
a6c831e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a6c831e
a3a5281
* Tue Jan 12 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.14-2
a3a5281
- Add all patches since 5.1.14.
a3a5281
9c7b0fd
* Mon Jan 11 2016 Richard W.M. Jones <rjones@redhat.com> - 5.1.14-1
9c7b0fd
- New upstream version 5.1.14.
9c7b0fd
- Remove all patches - now upstream.
9c7b0fd
22a6b3e
* Tue Oct 13 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.13-4
22a6b3e
- Pull in all upstream patches since 5.1.13.
22a6b3e
- Choose providers better (RHBZ#1266918).
22a6b3e
- Use autopatch.
8563312
- Explicitly depend on pod2html.
22a6b3e
1287017
* Mon Jul 27 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.13-3
1287017
- Bump version to rebuild against new RPM in Rawhide.
1287017
b6440cd
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.13-2
b6440cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b6440cd
0f834ab
* Tue May 26 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.13-1
0f834ab
- New upstream version 5.1.13.
0f834ab
- Remove patch, now upstream.
0f834ab
94ef0fd
* Thu May 21 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-11
48b7c2f
- Prefer 'dnf download' over 'yumdownloader' (again).
94ef0fd
- BR grubby for the tests to work.
48b7c2f
cac2beb
* Fri Apr 10 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-9
cac2beb
- Revert back to yumdownloader (RHBZ#1186948).
cac2beb
c122749
* Fri Apr  3 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-8
c122749
- Prefer 'dnf download' over 'yumdownloader'.
c122749
17b162d
* Fri Mar 20 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-7
17b162d
- Disable hardened build again.  See RHBZ#1202091 RHBZ#1204162.
17b162d
5d053a5
* Mon Mar 16 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-6
8c03458
- Enable hardening flags by building the static 'init' specially
8c03458
  before the main build.
5d053a5
- Use _smp_mflags.
8c03458
69cab53
* Thu Mar 12 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-4
69cab53
- Add a -devel subpackage containing automated RPM dependency generator
69cab53
  for supermin appliances.
69cab53
e521c53
* Mon Mar  9 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-2
e521c53
- Disable hardened build as it breaks building the static 'init' binary.
e521c53
66c9a61
* Sat Mar  7 2015 Richard W.M. Jones <rjones@redhat.com> - 5.1.12-1
66c9a61
- New upstream version 5.1.12.
66c9a61
- Includes ARM fix: lpae kernels can now be booted (RHBZ#1199733).
66c9a61
7066556
* Thu Jan  8 2015 Pino Toscano <ptoscano@redhat.com> - 5.1.11-2
7066556
- Rebuild for xz-5.2.0 in Rawhide (RHBZ#1179252).
7066556
37c141d
* Sat Oct 25 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.11-1
37c141d
- New upstream version 5.1.11.
37c141d
cfc87a5
* Tue Oct  7 2014 Pino Toscano <ptoscano@redhat.com> - 5.1.10-2
cfc87a5
- Update to upstream commit d78c898c7e2bc5f12cbebef98b95a7908d9120f1.
cfc87a5
- BR rpm-devel, since it is now used instead of invoking rpm.
fab80ee
- BR automake and autoconf, and run autoreconf (configure.ac is modified by
fab80ee
  the patches).
cfc87a5
a82b32b
* Thu Sep  4 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.10-1
a82b32b
- New upstream version 5.1.10.
a82b32b
- Remove patch which is now included upstream.
a82b32b
4442996
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.9-3
4442996
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4442996
4ff7bf0
* Sun Aug  3 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.9-2
4ff7bf0
- Add upstream patch to avoid endless loop in Rawhide.
4ff7bf0
dd1483f
* Mon Jul 21 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.9-1
dd1483f
- New upstream version 5.1.9.
dd1483f
- Remove patches which are now upstream.
dd1483f
e08b361
* Wed Jun 25 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-9
e08b361
- Add Requires findutils (RHBZ#1113029).
e08b361
203074a
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.8-8
203074a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
203074a
d96b9d5
* Wed May 21 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-7
7b64944
- Add patch to fix RPM handler when filenames may contain spaces.
7b64944
609575e
* Mon May 19 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-4
609575e
- Skip execstack test on Fedora 20 (ARM only).
609575e
4315966
* Fri May 16 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-3
4315966
- BR xz-static & xz-devel packages, to support xz-compressed kernel modules.
b49d6ff
c94fb3f
* Fri May  9 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.8-1
c94fb3f
- New upstream version 5.1.8.
c94fb3f
- Remove patches which are now upstream.
c94fb3f
4c45d36
* Thu May  1 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.7-3
4c45d36
- Add upstream patch which removes need to run execstack (RHBZ#1093261).
4c45d36
31ad952
* Mon Apr  7 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.7-2
31ad952
- Add patch to fix quoting around mke2fs parameter (RHBZ#1084960).
31ad952
ec962e7
* Sun Apr  6 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.7-1
ec962e7
- New upstream version 5.1.7.
ec962e7
- Remove ppc64p7 patch which is now upstream.
ec962e7
9707eb5
* Thu Apr  3 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.6-5
9707eb5
- Requires tar, which is not installed in an @Core installation.
9707eb5
13dea10
* Fri Mar 28 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.6-4
13dea10
- Add upstream patch to fix supermin on ppc64p7.
13dea10
3264a13
* Thu Mar 27 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.6-3
8601f91
- New upstream version 5.1.6.
238a6b5
- Fix tests.
8601f91
f95745b
* Mon Mar 24 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.5-2
f95745b
- Disable execstack on aarch64.
f95745b
  It comes from prelink which does not exist on aarch64.
f95745b
216d063
* Thu Mar 13 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.5-1
216d063
- New upstream version 5.1.5.
1c8d090
63158c3
* Thu Mar  6 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.3-1
63158c3
- New upstream version 5.1.3.
63158c3
42d04ec
* Sun Mar  2 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.2-1
42d04ec
- New upstream version 5.1.2.
42d04ec
- Fixes a serious bug in --build mode.
42d04ec
7610a11
* Sat Mar  1 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.1-1
7610a11
- New upstream version 5.1.1.
7610a11
- Remove patch which is now upstream.
7610a11
be53af1
* Wed Feb 26 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.0-3
be53af1
- Add BR yum-utils (for yumdownloader).
be53af1
- Add upstream patch which stops duplicate packages appearing.
be53af1
d6d4023
* Wed Feb 26 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1.0-2
db0afa4
- New upstream version 5.1.0.
db0afa4
- Note this is effectively a rewrite, and is not completely compatible.
db0afa4
- There is no separate 'supermin-helper' subpackage any more.
db0afa4
- Requires rpm instead of yum.
db0afa4
eac0c44
* Mon Dec 23 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.6-2
9862bce
- New upstream version 4.1.6.
9862bce
- Should fix all autotools brokenness.
9862bce
- Man pages are now all in section 1.
9862bce
- Remove patch which is now upstream.
eac0c44
- +BR /usr/bin/execstack (from prelink).
9862bce
180dde8
* Mon Dec 23 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-5
180dde8
- Rerun autoreconf to fix autotools brokenness.
180dde8
4bbd235
* Sun Dec 22 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-4
4bbd235
- Why was prelink required?  Remove it.
4bbd235
b0cde2e
* Fri Sep 13 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 4.1.5-3
b0cde2e
- correct Obsoletes version for febootstrap and febootstrap-supermin-helper
b0cde2e
e9f7395
* Sun Sep  8 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-2
e9f7395
- (For ARM) Don't crash if SUPERMIN_DTB is set and --dtb not specified.
e9f7395
e57a288
* Fri Sep  6 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.5-1
e57a288
- New upstream version 4.1.5.
e57a288
- Has (optionally) a new command line syntax.
e57a288
- Supports device trees for ARM.
e57a288
df56ff3
* Wed Aug 28 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.4-1
df56ff3
- New upstream version 4.1.4.
df56ff3
- Supports compressed cpio image files, experimentally.
df56ff3
b37e55a
* Fri Aug  9 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.3-1
b37e55a
- New upstream version 4.1.3.
b37e55a
- Remove patch which is now upstream.
b37e55a
- Add examples directory to documentation.
b37e55a
2f66d09
* Tue Aug  6 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-2
2f66d09
- Include upstream patch to get correct directory setgid/sticky bits in
2f66d09
  the appliance.
2f66d09
17fdac5
* Sat Aug  3 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-1
17fdac5
- New upstream version 4.1.2.
17fdac5
- Remove patch which is now upstream.
17fdac5
f1d732d
* Wed Jun 26 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.1-2
f1d732d
- Add upstream patch to ignore ghost non-regular files.
f1d732d
- This fixes builds on Fedora 20 because the filesystem package has
f1d732d
  been changed so /var/lock and /var/run are marked as ghost.
f1d732d
90579d2
* Tue Feb  5 2013 Richard W.M. Jones <rjones@redhat.com> - 4.1.1-1
90579d2
- New upstream version 4.1.1.
90579d2
- The program has been renamed 'supermin' from 'febootstrap'.
90579d2
- Obsolete, but don't Provide because supermin is not a compatible replacement.
90579d2
- Use '_isa' to specify architecture of supermin-helper subpackage.
90579d2
90579d2
* Tue Jan 22 2013 Richard W.M. Jones <rjones@redhat.com> - 1:3.21-2
90579d2
- Add upstream patch to drop supplemental groups (RHBZ#902476).
90579d2
- Remove 'Group:' RPM headers which are no longer necessary.
90579d2
- Remove some commented-out requirements.
90579d2
90579d2
* Sat Dec 22 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.21-1
90579d2
- New upstream version 3.21.
90579d2
90579d2
* Fri Aug 31 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.20-1
90579d2
- New upstream version 3.20.
90579d2
90579d2
* Wed Aug 22 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.19-2
90579d2
- Work around brokenness in yum (RHBZ#850913).
90579d2
- Remove defattr, no longer required.
90579d2
90579d2
* Tue Jul 31 2012 Richard W.M. Jones <rjones@redhat.com> - 1:3.19-1
90579d2
- New upstream version 3.19.
90579d2
90579d2
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.18-2
90579d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
90579d2
90579d2
* Mon Jun 18 2012 Richard Jones <rjones@redhat.com> - 3.18-1
90579d2
- New upstream version 3.18.
90579d2
- This adds support for EPEL 5.
90579d2
90579d2
* Thu Jun 14 2012 Richard Jones <rjones@redhat.com> - 3.17-1
90579d2
- New upstream version 3.17.
90579d2
90579d2
* Wed Jun 13 2012 Richard Jones <rjones@redhat.com> - 3.16-1
90579d2
- New upstream version 3.16.
90579d2
90579d2
* Tue Jun 12 2012 Richard Jones <rjones@redhat.com> - 3.15-1
90579d2
- New upstream version 3.15.
90579d2
- This version includes root=<device> support, needed for libguestfs
90579d2
  with virtio-scsi.
90579d2
- Remove upstream patch.
90579d2
90579d2
* Thu May 17 2012 Richard Jones <rjones@redhat.com> - 3.14-6
90579d2
- For RHEL 7 only, add ExclusiveArch x86-64.
90579d2
90579d2
* Tue May 15 2012 Richard Jones <rjones@redhat.com> - 3.14-5
90579d2
- Bundled gnulib (RHBZ#821752).
90579d2
90579d2
* Fri Apr 13 2012 Richard Jones <rjones@redhat.com> - 3.14-4
90579d2
- Add back explicit dependencies for external programs.
90579d2
90579d2
* Fri Apr 13 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.14-3
90579d2
- Drop ExclusiveArch as it's supported on all primary & secondary arches
90579d2
- Cleanup spec and deps
90579d2
90579d2
* Fri Mar 30 2012 Richard Jones <rjones@redhat.com> - 3.14-2
90579d2
- New upstream version 3.14.
90579d2
- Add upstream patch to fix RHBZ#808421.
90579d2
90579d2
* Thu Mar 29 2012 Richard Jones <rjones@redhat.com> - 3.13-4
90579d2
- e2fsprogs moved /sbin/mke2fs to /usr/sbin (thanks Eric Sandeen).
90579d2
90579d2
* Thu Mar  1 2012 Richard Jones <rjones@redhat.com> - 3.13-2
90579d2
- Missing BR zlib-static.
90579d2
90579d2
* Thu Feb  9 2012 Richard Jones <rjones@redhat.com> - 3.13-1
90579d2
- New upstream version 3.13.
90579d2
- Remove upstream patch which is included in this version.
90579d2
90579d2
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12-5
90579d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
90579d2
90579d2
* Tue Jan  3 2012 Richard Jones <rjones@redhat.com> - 3.12-4
90579d2
- Depend on latest e2fsprogs (RHBZ#771310).
90579d2
90579d2
* Wed Nov  9 2011 Richard Jones <rjones@redhat.com> - 3.12-2
90579d2
- Include upstream patch to work around Python stupidity.
90579d2
90579d2
* Tue Oct 18 2011 Richard Jones <rjones@redhat.com> - 3.12-1
90579d2
- New upstream version 3.12.
90579d2
- Remove upstream patch which is included in this version.
90579d2
90579d2
* Fri Oct 14 2011 Richard Jones <rjones@redhat.com> - 3.11-2
90579d2
- Add upstream patch to fix febootstrap on non-Debian.
90579d2
90579d2
* Fri Oct 14 2011 Richard Jones <rjones@redhat.com> - 3.11-1
90579d2
- New upstream version 3.11.
90579d2
90579d2
* Thu Sep  1 2011 Richard Jones <rjones@redhat.com> - 3.10-1
90579d2
- New upstream version 3.10.
90579d2
90579d2
* Fri Aug 26 2011 Richard Jones <rjones@redhat.com> - 3.9-1
90579d2
- New upstream version 3.9.
90579d2
90579d2
* Tue Jul 26 2011 Richard Jones <rjones@redhat.com> - 3.8-1
90579d2
- New upstream version 3.8.
90579d2
90579d2
* Fri Jul 15 2011 Richard Jones <rjones@redhat.com> - 3.7-1
90579d2
- New upstream version 3.7.
90579d2
90579d2
* Wed Jun  1 2011 Richard Jones <rjones@redhat.com> - 3.6-1
90579d2
- New upstream version 3.6.
90579d2
- This version no longer needs external insmod.static.
90579d2
90579d2
* Fri May 27 2011 Richard Jones <rjones@redhat.com> - 3.5-1
90579d2
- New upstream version 3.5.
90579d2
- Remove patch which is now upstream.
90579d2
90579d2
* Fri Mar 18 2011 Richard Jones <rjones@redhat.com> - 3.4-2
90579d2
- Don't fail if objects are created in a symlinked dir (RHBZ#698089).
90579d2
90579d2
* Fri Mar 18 2011 Richard Jones <rjones@redhat.com> - 3.4-1
90579d2
- New upstream version 3.4.
90579d2
- febootstrap-supermin-helper Obsoletes older versions of febootstrap.
90579d2
90579d2
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-5
90579d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
90579d2
90579d2
* Fri Jan 14 2011 Richard Jones <rjones@redhat.com> - 3.3-4
90579d2
- Split package into febootstrap (for building) and febootstrap-supermin-helper
90579d2
  (for running).  Note that febootstrap depends on febootstrap-supermin-helper,
90579d2
  but you can install febootstrap-supermin-helper on its own.
90579d2
90579d2
* Fri Jan 14 2011 Richard Jones <rjones@redhat.com> - 3.3-3
90579d2
- Clear executable stack flag on febootstrap-supermin-helper.
90579d2
90579d2
* Thu Jan 13 2011 Dan Horák <dan[at]danny.cz> - 3.3-2
90579d2
- add the ocaml's ExclusiveArch
90579d2
90579d2
* Sat Dec 11 2010 Richard Jones <rjones@redhat.com> - 3.3-1
90579d2
- New upstream version 3.3.
90579d2
90579d2
* Tue Dec  7 2010 Richard Jones <rjones@redhat.com> - 3.2-1
90579d2
- New upstream version 3.2.
90579d2
- Remove upstream patches.
90579d2
90579d2
* Tue Dec  7 2010 Richard Jones <rjones@redhat.com> - 3.1-5
90579d2
- Previous fix for RHBZ#654638 didn't work, fix it correctly.
90579d2
90579d2
* Mon Dec  6 2010 Richard Jones <rjones@redhat.com> - 3.1-4
90579d2
- Properly ignore .*.hmac files (accidental reopening of RHBZ#654638).
90579d2
90579d2
* Mon Dec  6 2010 Richard Jones <rjones@redhat.com> - 3.1-3
90579d2
- Uses yumdownloader at runtime, so require yum-utils.
90579d2
90579d2
* Mon Dec  6 2010 Richard Jones <rjones@redhat.com> - 3.1-2
90579d2
- New upstream version 3.1.
90579d2
- BR insmod.static.
90579d2
90579d2
* Sun Dec  5 2010 Richard Jones <rjones@redhat.com> - 3.0-2
90579d2
- New upstream version 3.0 (note this is incompatible with 2.x).
90579d2
- Fix upstream URLs.
90579d2
- fakeroot, fakechroot no longer required.
90579d2
- insmod.static is required at runtime (missing dependency from earlier).
90579d2
- The only programs are 'febootstrap' and 'febootstrap-supermin-helper'.
90579d2
- BR ocaml, ocaml-findlib-devel.
90579d2
- No examples are provided with this version of febootstrap.
90579d2
90579d2
* Thu Nov 25 2010 Richard Jones <rjones@redhat.com> - 2.11-1
90579d2
- New upstream version 2.11.
90579d2
- Fixes "ext2fs_mkdir .. No free space in directory" bug which affects
90579d2
  libguestfs on rawhide.
90579d2
90579d2
* Thu Oct 28 2010 Richard Jones <rjones@redhat.com> - 2.10-1
90579d2
- New upstream version 2.10.
90579d2
- Adds -u and -g options to febootstrap-supermin-helper which are
90579d2
  required by virt-v2v.
90579d2
90579d2
* Fri Aug 27 2010 Richard Jones <rjones@redhat.com> - 2.9-1
90579d2
- New upstream version 2.9.
90579d2
- Fixes directory ordering problem in febootstrap-supermin-helper.
90579d2
90579d2
* Tue Aug 24 2010 Richard Jones <rjones@redhat.com> - 2.8-1
90579d2
- New upstream version 2.8.
90579d2
90579d2
* Sat Aug 21 2010 Richard Jones <rjones@redhat.com> - 2.8-0.2
90579d2
- New pre-release version of 2.8.
90579d2
  + Note this is based on 2.7 + mailing list patches.
90579d2
- New BRs on mke2fs, libext2fs, glibc-static.
90579d2
90579d2
* Fri May 14 2010 Richard Jones <rjones@redhat.com> - 2.7-2
90579d2
- New upstream version 2.7.
90579d2
- febootstrap-supermin-helper shell script rewritten in C for speed.
90579d2
- This package contains C code so it is no longer 'noarch'.
90579d2
- MAKEDEV isn't required.
90579d2
90579d2
* Fri Jan 22 2010 Richard Jones <rjones@redhat.com> - 2.6-1
90579d2
- New upstream release 2.6.
90579d2
- Recheck package in rpmlint.
90579d2
90579d2
* Thu Oct 22 2009 Richard Jones <rjones@redhat.com> - 2.5-2
90579d2
- New upstream release 2.5.
90579d2
- Remove BR upx (not needed by upstream).
90579d2
- Two more scripts / manpages.
90579d2
90579d2
* Thu Jul 30 2009 Richard Jones <rjones@redhat.com> - 2.4-1
90579d2
- New upstream release 2.4.
90579d2
90579d2
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-2
90579d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
90579d2
90579d2
* Mon Jun 15 2009 Richard Jones <rjones@redhat.com> - 2.3-1
90579d2
- New upstream release 2.3.
90579d2
90579d2
* Mon Jun 15 2009 Richard Jones <rjones@redhat.com> - 2.2-1
90579d2
- New upstream release 2.2.
90579d2
90579d2
* Mon May 11 2009 Richard Jones <rjones@redhat.com> - 2.0-1
90579d2
- New upstream release 2.0.
90579d2
90579d2
* Thu May  7 2009 Richard Jones <rjones@redhat.com> - 1.9-1
90579d2
- New upstream release 1.9.
90579d2
90579d2
* Fri May  1 2009 Richard Jones <rjones@redhat.com> - 1.8-1
90579d2
- New upstream release 1.8.
90579d2
90579d2
* Mon Apr 20 2009 Richard Jones <rjones@redhat.com> - 1.7-1
90579d2
- New upstream release 1.7.
90579d2
90579d2
* Tue Apr 14 2009 Richard Jones <rjones@redhat.com> - 1.5-3
90579d2
- Configure script has (unnecessary) BuildRequires on fakeroot,
90579d2
  fakechroot, yum.
90579d2
90579d2
* Tue Apr 14 2009 Richard Jones <rjones@redhat.com> - 1.5-2
90579d2
- Initial build for Fedora.