Blame SPECS/ostree.spec

aba70a
# Don't ship tests on RHEL > 7.
aba70a
%if 0%{?rhel} > 7
aba70a
    %bcond_with tests
aba70a
%else
aba70a
    %bcond_without tests
aba70a
%endif
aba70a
aba70a
Summary: Tool for managing bootable, immutable filesystem trees
aba70a
Name: ostree
7a9a56
Version: 2022.2
ac9d92
Release: 6%{?dist}
aba70a
Source0: https://github.com/ostreedev/%{name}/releases/download/v%{version}/libostree-%{version}.tar.xz
aba70a
License: LGPLv2+
aba70a
URL: https://ostree.readthedocs.io/en/latest/
aba70a
7a9a56
# We now track the rhel8 branch upstream, these are the patches
7a9a56
# since the 2022.2 release.
7a9a56
Patch0: 0001-Add-an-ostree-boot-complete.service-to-propagate-sta.patch
7a9a56
Patch1: 0002-libarchive-Handle-archive_entry_symlink-returning-NU.patch
7a9a56
Patch2: 0003-repo-Factor-out-_ostree_repo_auto_transaction_new.patch
7a9a56
Patch3: 0004-repo-Correctly-initialize-refcount-of-temporary-tran.patch
7a9a56
Patch4: 0005-deploy-Try-to-rebuild-policy-in-new-deployment-if-ne.patch
7a9a56
Patch5: 0006-deploy-Be-a-bit-more-verbose-about-SELinux-bits.patch
7a9a56
Patch6: 0007-backport-GH2694-secure-execution-enablement-s390x.patch
7a9a56
Patch7: 0008-backport-GH2696-ed25519-verify-signatures-minimum-length.patch
ac9d92
Patch8: 0001-Support-overlayfs-whiteouts-on-checkout.patch
7a9a56
3d35ae
BuildRequires: make
aba70a
BuildRequires: git
aba70a
# We always run autogen.sh
aba70a
BuildRequires: autoconf automake libtool
aba70a
# For docs
aba70a
BuildRequires: gtk-doc
aba70a
# Core requirements
aba70a
BuildRequires: pkgconfig(zlib)
aba70a
BuildRequires: pkgconfig(libcurl)
aba70a
BuildRequires: openssl-devel
aba70a
# The tests still require soup
aba70a
BuildRequires: pkgconfig(libsoup-2.4)
aba70a
BuildRequires: libattr-devel
aba70a
# Extras
aba70a
BuildRequires: pkgconfig(libarchive)
aba70a
BuildRequires: pkgconfig(liblzma)
aba70a
BuildRequires: pkgconfig(libselinux)
aba70a
BuildRequires: pkgconfig(mount)
aba70a
BuildRequires: pkgconfig(fuse)
aba70a
BuildRequires: pkgconfig(e2p)
aba70a
BuildRequires: libcap-devel
aba70a
BuildRequires: gpgme-devel
aba70a
BuildRequires: pkgconfig(libsystemd)
aba70a
BuildRequires: /usr/bin/g-ir-scanner
aba70a
BuildRequires: dracut
aba70a
BuildRequires:  bison
aba70a
aba70a
# Runtime requirements
aba70a
Requires: dracut
aba70a
Requires: /usr/bin/gpgv2
aba70a
Requires: systemd-units
a21c0b
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
aba70a
aba70a
%description
aba70a
libostree is a shared library designed primarily for
aba70a
use by higher level tools to manage host systems (e.g. rpm-ostree),
aba70a
as well as container tools like flatpak and the atomic CLI.
aba70a
aba70a
%package libs
aba70a
Summary: Development headers for %{name}
aba70a
aba70a
%description libs
aba70a
The %{name}-libs provides shared libraries for %{name}.
aba70a
aba70a
%package devel
aba70a
Summary: Development headers for %{name}
a21c0b
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
aba70a
aba70a
%description devel
aba70a
The %{name}-devel package includes the header files for the %{name} library.
aba70a
aba70a
%ifnarch s390 s390x
aba70a
%package grub2
aba70a
Summary: GRUB2 integration for OSTree
aba70a
%ifnarch aarch64 %{arm}
aba70a
Requires: grub2
aba70a
%else
aba70a
Requires: grub2-efi
aba70a
%endif
aba70a
Requires: ostree
aba70a
aba70a
%description grub2
aba70a
GRUB2 integration for OSTree
aba70a
%endif
aba70a
aba70a
%if %{with tests}
aba70a
%package tests
aba70a
Summary: Tests for the %{name} package
a21c0b
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
a21c0b
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
aba70a
aba70a
%description tests
aba70a
This package contains tests that can be used to verify
aba70a
the functionality of the installed %{name} package.
aba70a
%endif
aba70a
aba70a
%prep
aba70a
%autosetup -Sgit -n libostree-%{version}
aba70a
aba70a
%build
aba70a
env NOCONFIGURE=1 ./autogen.sh
aba70a
%configure --disable-silent-rules \
aba70a
           --enable-gtk-doc \
aba70a
           --with-selinux \
aba70a
           --with-curl \
aba70a
           --with-openssl \
aba70a
           %{?with_tests:--enable-installed-tests=exclusive} \
a21c0b
           --with-dracut=yesbutnoconf
aba70a
%make_build
aba70a
aba70a
%install
aba70a
%make_install INSTALL="install -p -c"
aba70a
find %{buildroot} -name '*.la' -delete
aba70a
aba70a
# Needed to enable the service at compose time currently
aba70a
%post
aba70a
%systemd_post ostree-remount.service
aba70a
aba70a
%preun
aba70a
%systemd_preun ostree-remount.service
aba70a
aba70a
%files
aba70a
%{!?_licensedir:%global license %%doc}
aba70a
%license COPYING
aba70a
%doc README.md
aba70a
%{_bindir}/ostree
aba70a
%{_bindir}/rofiles-fuse
aba70a
%{_datadir}/ostree
aba70a
%{_datadir}/bash-completion/completions/*
aba70a
%dir %{_prefix}/lib/dracut/modules.d/98ostree
a21c0b
%{_prefix}/lib/systemd/system/ostree*.*
aba70a
%{_prefix}/lib/dracut/modules.d/98ostree/*
aba70a
%{_mandir}/man*/*.gz
aba70a
%{_prefix}/lib/systemd/system-generators/ostree-system-generator
aba70a
%exclude %{_sysconfdir}/grub.d/*ostree
aba70a
%exclude %{_libexecdir}/libostree/grub2*
aba70a
%exclude %{_libexecdir}/libostree/ostree-trivial-httpd
aba70a
%{_prefix}/lib/tmpfiles.d/*
aba70a
%{_prefix}/lib/ostree
aba70a
# Moved in git master
aba70a
%{_libexecdir}/libostree/*
aba70a
aba70a
%files libs
aba70a
%{_sysconfdir}/ostree
aba70a
%{_libdir}/*.so.1*
aba70a
%{_libdir}/girepository-1.0/OSTree-1.0.typelib
aba70a
aba70a
%files devel
aba70a
%{_libdir}/lib*.so
aba70a
%{_includedir}/*
aba70a
%{_libdir}/pkgconfig/*
aba70a
%dir %{_datadir}/gtk-doc/html/ostree
aba70a
%{_datadir}/gtk-doc/html/ostree
aba70a
%{_datadir}/gir-1.0/OSTree-1.0.gir
aba70a
aba70a
%ifnarch s390 s390x
aba70a
%files grub2
aba70a
%{_sysconfdir}/grub.d/*ostree
aba70a
%dir %{_libexecdir}/libostree
aba70a
%{_libexecdir}/libostree/grub2*
aba70a
%endif
aba70a
aba70a
%if %{with tests}
aba70a
%files tests
aba70a
%{_libexecdir}/installed-tests
aba70a
%{_datadir}/installed-tests
aba70a
%{_libexecdir}/libostree/ostree-trivial-httpd
aba70a
%endif
aba70a
aba70a
%changelog
ac9d92
* Fri Oct 14 2022 Colin Walters <walters@verbum.org> - 2022.2-6
ac9d92
- Backport https://github.com/ostreedev/ostree/commit/0085494e350c72599fc5c0e00422885d80b3c660
ac9d92
- Resolves: rhbz#2134629
ac9d92
7a9a56
* Tue Aug 23 2022 Luca BRUNO <lucab@redhat.com> - 2022.2-5
7a9a56
- Backport enablement patches for Secure Execution on s390x
7a9a56
  https://github.com/ostreedev/ostree/pull/2694
7a9a56
  Resolves: rhbz#2120522
7a9a56
- Backport security fix to verify signatures are minimum length (advisory GHSA-gqf4-p3gv-g8vw)
7a9a56
  https://github.com/ostreedev/ostree/pull/2696
7a9a56
  Resolves: rhbz#2119444
7a9a56
7a9a56
* Wed May 04 2022 Colin Walters <walters@verbum.org> - 2022.2-4
7a9a56
- Backport patches from 2022.3, particularly SELinux
7a9a56
  Resolves: rhbz#2057497
7a9a56
7a9a56
* Tue Apr 19 2022 Colin Walters <walters@verbum.org> - 2022.2-3
7a9a56
- https://github.com/ostreedev/ostree/releases/tag/v2022.2
7a9a56
  Resolves: rhbz#2057497
7a9a56
7cef9f
* Mon Jan 10 2022 Colin Walters <walters@verbum.org> - 2022.1-2
7cef9f
- Rebase to 2022.1
7cef9f
  Resolves: rhbz#2032593
7cef9f
7cef9f
* Wed Dec 15 2021 Colin Walters <walters@verbum.org> - 2021.6-2
7cef9f
- Rebase to 2021.6
7cef9f
  Resolves: rhbz#2032593
7cef9f
6fd95c
* Tue Nov 30 2021 Colin Walters <walters@verbum.org> - 2021.3-2
6fd95c
- Backport
6fd95c
  https://github.com/ostreedev/ostree/pull/2453/commits/e6a560b40797324aa8b90e7100c6d50bff91f14d
7cef9f
  Resolves: rhbz#2027788
6fd95c
e08bad
* Tue Jul 20 2021 Luca BRUNO <lucab@redhat.com> - 2021.3-1
e08bad
- New upstream version
e08bad
  https://github.com/ostreedev/ostree/releases/tag/v2021.3
e08bad
  Resolves: rhbz#1981865
e08bad
3d35ae
* Fri May 14 2021 Luca BRUNO <lucab@redhat.com> - 2021.2-1
3d35ae
- New upstream version 2021.2
3d35ae
  https://github.com/ostreedev/ostree/releases/tag/v2021.2
c68929
f35c02
* Tue Nov  3 15:04:48 UTC 2020 Colin Walters <walters@verbum.org> - 2020.7-1
f35c02
- Update to 2020.7
f35c02
  Resolves: #1894062
f35c02
e6b4d8
* Wed Sep 09 2020 Colin Walters <walters@verbum.org> - 2020.5-4
e6b4d8
- Backport patches for https://bugzilla.redhat.com/show_bug.cgi?id=1875567
e6b4d8
e6b4d8
* Mon Aug 24 2020 Colin Walters <walters@verbum.org> - 2020.5-3
e6b4d8
- Backport
e6b4d8
  https://github.com/ostreedev/ostree/pull/2179/commits/06ed04a816141914adb9bd3e32392801fce5bc8e
e6b4d8
  Resolves: #1867601
e6b4d8
e6b4d8
* Tue Aug 18 2020 Colin Walters <walters@verbum.org> - 2020.5-2
e6b4d8
- Update to https://github.com/ostreedev/ostree/releases/tag/v2020.5
e6b4d8
  Specifically to fix readonly-sysroot for e.g. RHEL Edge and
e6b4d8
  older RHCOS versions
e6b4d8
- Related: #1861507
e6b4d8
e6b4d8
* Tue Jul 28 2020 Colin Walters <walters@verbum.org> - 2020.4-1
e6b4d8
- https://github.com/ostreedev/ostree/releases/tag/v2020.4
e6b4d8
- We plan to use per-object-fsync for etcd in OpenShift 4
e6b4d8
- Resolves: #1861507
e6b4d8
e6b4d8
* Thu May 21 2020 Colin Walters <walters@verbum.org> - 2020.3-3
e6b4d8
- Backport https://github.com/ostreedev/ostree/pull/2108
e6b4d8
e6b4d8
* Fri May 15 2020 Colin Walters <walters@verbum.org> - 2020.3-2
e6b4d8
- https://github.com/ostreedev/ostree/releases/tag/v2020.3
e6b4d8
  Resolves: #1836306
e6b4d8
04de3a
* Tue Dec 10 2019 Colin Walters <walters@verbum.org> - 2019.6-2
04de3a
- https://github.com/ostreedev/ostree/releases/tag/v2019.6
04de3a
04de3a
* Wed Oct 30 2019 Colin Walters <walters@verbum.org> - 2019.5-1
04de3a
- https://github.com/ostreedev/ostree/releases/tag/v2019.5
04de3a
04de3a
* Mon Oct 14 2019 Colin Walters <walters@verbum.org> - 2019.4-3
04de3a
- https://github.com/ostreedev/ostree/releases/tag/v2019.4
04de3a
a21c0b
* Wed Apr 24 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.2-1
a21c0b
- https://github.com/ostreedev/ostree/releases/tag/v2019.2
a21c0b
a21c0b
* Sat Feb 09 2019 Dusty Mabe <dusty@dustymabe.com> - 2019.1-5
a21c0b
- Re-enable http2 in ostree build
a21c0b
a21c0b
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.1-4
a21c0b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a21c0b
a21c0b
* Thu Jan 17 2019 Sinny Kumari <ksinny@gmail.com> - 2019.1-3
a21c0b
- Backport patch to fix bare → bare imports
a21c0b
- Backport patch to Set xattr on correct fd for bare-user → bare-user imports
a21c0b
a21c0b
* Fri Jan 11 2019 Colin Walters <walters@verbum.org> - 2019.1-2
a21c0b
- https://github.com/ostreedev/ostree/releases/tag/v2019.1
a21c0b
a21c0b
* Fri Jan 11 2019 Colin Walters <walters@verbum.org> - 2018.9-2
a21c0b
- Work around https://src.fedoraproject.org/rpms/nfs-utils/pull-request/7
a21c0b
a21c0b
* Thu Oct 25 2018 Colin Walters <walters@verbum.org> - 2018.9-1
a21c0b
- https://github.com/ostreedev/ostree/releases/tag/v2018.9
a21c0b
a21c0b
* Wed Oct 17 2018 Jonathan Lebon <jonathan@jlebon.com>
aba70a
- Add conditional for tests and disable by default on RHEL > 7
aba70a
aba70a
* Wed Aug 22 2018 Colin Walters <walters@verbum.org> - 2018.8-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2018.8
aba70a
aba70a
* Sun Aug 12 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2018.7-2
aba70a
- Enable grub2 support on ARMv7
aba70a
aba70a
* Fri Jul 20 2018 Colin Walters <walters@verbum.org> - 2018.7-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2018.7
aba70a
aba70a
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.6-5
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
aba70a
aba70a
* Wed Jul 04 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6-4
aba70a
- Backport patch to fix /var mountpoints
aba70a
  https://github.com/ostreedev/ostree/issues/1667
aba70a
aba70a
* Thu Jun 21 2018 Colin Walters <walters@redhat.com> - 2018.6-3
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2018.6
aba70a
aba70a
* Fri May 11 2018 Colin Walters <walters@verbum.org> - 2018.5-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2018.5
aba70a
aba70a
* Tue Apr 03 2018 Kalev Lember <klember@redhat.com> - 2018.3-2
aba70a
- Backport a patch to avoid writing to parent repo
aba70a
aba70a
* Wed Mar 21 2018 Colin Walters <walters@verbum.org> - 2018.3-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2018.3
aba70a
aba70a
* Fri Mar 02 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.2-2
aba70a
- Drop ostree-remount systemd service preset, already in fedora-release
aba70a
  https://bugzilla.redhat.com/show_bug.cgi?id=1550799
aba70a
aba70a
* Thu Feb 15 2018 Colin Walters <walters@verbum.org> - 2018.2-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2018.2
aba70a
aba70a
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.1-2
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
aba70a
aba70a
* Mon Jan 15 2018 Colin Walters <walters@verbum.org> - 2018.1-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2018.1
aba70a
aba70a
* Wed Dec 20 2017 Colin Walters <walters@verbum.org> - 2017.15-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2017.15
aba70a
- Drop upstreamed patches; note this build disabled HTTP2 by
aba70a
  default for now since we are hitting it with koji.  For more
aba70a
  information see https://github.com/ostreedev/ostree/issues/1362
aba70a
aba70a
* Mon Dec 18 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.14-2
aba70a
- Backport patch to drop HTTP2
aba70a
aba70a
* Mon Dec 04 2017 Colin Walters <walters@verbum.org> - 2017.14-1
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2017.14
aba70a
- Update description
aba70a
aba70a
* Mon Nov 27 2017 Colin Walters <walters@verbum.org> - 2017.13-4
aba70a
- Backport patch to drop curl low speed checks; requested by flatpak
aba70a
aba70a
* Tue Nov 07 2017 Kalev Lember <klember@redhat.com> - 2017.13-3
aba70a
- Backport a patch to fix a gnome-software crash when installing flatpaks
aba70a
  (#1497642)
aba70a
aba70a
* Thu Nov 02 2017 Colin Walters <walters@verbum.org> - 2017.13-2
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2017.13
aba70a
aba70a
* Tue Oct 03 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.12-2
aba70a
- Let tests subpackage own ostree-trivial-httpd
aba70a
aba70a
* Mon Oct 02 2017 Colin Walters <walters@verbum.org> - 2017.12-1
aba70a
- New upstream version
aba70a
- https://github.com/ostreedev/ostree/releases/tag/v2017.12
aba70a
aba70a
* Thu Sep 14 2017 Colin Walters <walters@verbum.org> - 2017.11-1
aba70a
- New upstream version
aba70a
- Add tests subpackage, prep for https://fedoraproject.org/wiki/CI
aba70a
aba70a
* Tue Aug 22 2017 Ville Skyttä <ville.skytta@iki.fi> - 2017.10-3
aba70a
- Own the %%{_libexecdir}/libostree dir
aba70a
aba70a
* Thu Aug 17 2017 Colin Walters <walters@verbum.org> - 2017.10-2
aba70a
- New upstream version
aba70a
aba70a
* Sat Aug 12 2017 Ville Skyttä <ville.skytta@iki.fi> - 2017.9-5
aba70a
- Own the %%{_datadir}/ostree dir
aba70a
aba70a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.9-4
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
aba70a
aba70a
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 2017.9-3
aba70a
- Rebuild with binutils fix for ppc64le (#1475636)
aba70a
aba70a
* Thu Jul 27 2017 Colin Walters <walters@verbum.org> - 2017.9-2
aba70a
- New upstream version
aba70a
aba70a
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.8-4
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
aba70a
aba70a
* Mon Jul 17 2017 Colin Walters <walters@verbum.org> - 2017.8-3
aba70a
- Switch to libcurl for F26+
aba70a
  I think it works well; to recap the arguments below:
aba70a
  It has various advantages like HTTP2, plus now that NetworkManager
aba70a
  switched we are the last thing left in Fedora Atomic Host depending
aba70a
  on libsoup.
aba70a
aba70a
* Thu Jul 06 2017 Colin Walters <walters@verbum.org> - 2017.8-2
aba70a
- New upstream version
aba70a
aba70a
* Mon Jun 19 2017 Colin Walters <walters@verbum.org> - 2017.7-2
aba70a
- Update to new upstream
aba70a
aba70a
* Fri Jun 02 2017 Colin Walters <walters@verbum.org> - 2017.6-4
aba70a
- Fix previous commit to actually work
aba70a
aba70a
* Thu May 18 2017 Colin Walters <walters@verbum.org> - 2017.6-3
aba70a
- Enable curl+openssl on f27+
aba70a
  It has various advantages like HTTP2, plus now that NetworkManager
aba70a
  switched we are the last thing left in Fedora Atomic Host depending
aba70a
  on libsoup.
aba70a
aba70a
* Wed May 17 2017 Colin Walters <walters@verbum.org> - 2017.6-2
aba70a
- New upstream version
aba70a
aba70a
* Wed Apr 19 2017 Colin Walters <walters@verbum.org> - 2017.5-2
aba70a
- New upstream version
aba70a
aba70a
* Wed Apr 12 2017 Colin Walters <walters@verbum.org> - 2017.4-2
aba70a
- New upstream version
aba70a
aba70a
* Fri Mar 10 2017 Colin Walters <walters@verbum.org> - 2017.3-2
aba70a
- New upstream version
aba70a
aba70a
* Fri Mar 03 2017 Colin Walters <walters@redhat.com> - 2017.2-4
aba70a
- Add patch for ppc64le grub2
aba70a
aba70a
* Thu Feb 23 2017 Colin Walters <walters@verbum.org> - 2017.2-3
aba70a
- Backport libmount unref patch
aba70a
aba70a
* Tue Feb 14 2017 Colin Walters <walters@verbum.org> - 2017.2-2
aba70a
- New upstream version
aba70a
aba70a
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.1-5
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
aba70a
aba70a
* Tue Feb 07 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.1-4
aba70a
- Make ostree-grub2 require ostree
aba70a
aba70a
* Tue Feb 07 2017 Colin Walters <walters@verbum.org> - 2017.1-3
aba70a
- Split off ostree-libs.  This is the inverse of upstream
aba70a
  https://github.com/ostreedev/ostree/pull/659
aba70a
  but renaming the package would be hard for low immediate gain.
aba70a
  With this at least, flatpak could theoretically depend just on libostree.
aba70a
  And similarly for rpm-ostree compose tree (when that gets split out).
aba70a
aba70a
* Mon Jan 23 2017 Colin Walters <walters@verbum.org> - 2017.1-2
aba70a
- New upstream version
aba70a
aba70a
* Wed Jan 18 2017 Colin Walters <walters@verbum.org> - 2016.15-2
aba70a
- Enable libmount for /boot readonly
aba70a
aba70a
* Mon Dec 12 2016 walters@redhat.com - 2016.15-1
aba70a
- New upstream version
aba70a
aba70a
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2016.14-3
aba70a
- Rebuild for gpgme 1.18
aba70a
aba70a
* Tue Nov 29 2016 Kalev Lember <klember@redhat.com> - 2016.14-2
aba70a
- Backport a patch to remove an accidental print statement
aba70a
aba70a
* Wed Nov 23 2016 walters@redhat.com - 2016.14-1
aba70a
- New upstream version
aba70a
aba70a
* Tue Nov 15 2016 walters@redhat.com - 2016.13-2
aba70a
- New upstream version
aba70a
- Require glib-networking to fix https://pagure.io/pungi-fedora/pull-request/103
aba70a
aba70a
* Sun Oct 23 2016 walters@verbum.org - 2016.12-1
aba70a
- New upstream release
aba70a
aba70a
* Fri Oct 07 2016 walters@redhat.com - 2016.11-1
aba70a
- New upstream version
aba70a
aba70a
* Tue Sep 20 2016 walters@redhat.com - 2016.10-8
aba70a
- Backport another patch for systemd journal
aba70a
  Resolves: #1265295
aba70a
aba70a
* Fri Sep 16 2016 walters@verbum.org - 2016.10-6
aba70a
- Set --with-dracut=yesbutnoconf
aba70a
  Resolves: #1331369
aba70a
aba70a
* Thu Sep 15 2016 walters@verbum.org - 2016.10-4
aba70a
- Backport patch to fix bug#1265295
aba70a
aba70a
* Mon Sep 12 2016 Kalev Lember <klember@redhat.com> - 2016.10-3
aba70a
- pull: Do allow executing deltas when mirroring into bare{,-user}
aba70a
aba70a
* Fri Sep 09 2016 Kalev Lember <klember@redhat.com> - 2016.10-2
aba70a
- Drop libgsystem dependency
aba70a
aba70a
* Thu Sep 08 2016 walters@redhat.com - 2016.10-1
aba70a
- New upstream version
aba70a
aba70a
* Wed Aug 31 2016 Colin Walters <walters@verbum.org> - 2016.9-1
aba70a
- New upstream version
aba70a
aba70a
* Tue Aug 09 2016 walters@redhat.com - 2016.8-1
aba70a
- New upstream version
aba70a
aba70a
* Tue Aug 09 2016 Colin Walters <walters@verbum.org> - 2016.7-4
aba70a
- Add pending patch to fix date-based pruning
aba70a
aba70a
* Fri Jul 08 2016 walters@redhat.com - 2016.7-1
aba70a
- New upstream version
aba70a
aba70a
* Mon Jun 20 2016 Colin Walters <walters@redhat.com> - 2016.6-1
aba70a
- New upstream version
aba70a
aba70a
* Sun May  8 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.5-3
aba70a
- aarch64 only has grub2-efi
aba70a
- Use %%license
aba70a
aba70a
* Fri Apr 15 2016 Colin Walters <walters@redhat.com> - 2016.5-2
aba70a
- New upstream version
aba70a
aba70a
* Wed Mar 23 2016 Colin Walters <walters@redhat.com> - 2016.4-2
aba70a
- New upstream version
aba70a
aba70a
* Fri Feb 26 2016 Colin Walters <walters@redhat.com> - 2016.3-1
aba70a
- New upstream version
aba70a
aba70a
* Tue Feb 23 2016 Colin Walters <walters@redhat.com> - 2016.2-1
aba70a
- New upstream version
aba70a
aba70a
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2016.1-3
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
aba70a
aba70a
* Tue Jan 12 2016 Colin Walters <walters@redhat.com> - 2016.1-2
aba70a
- New upstream version
aba70a
aba70a
* Fri Dec 04 2015 Colin Walters <walters@redhat.com> - 2015.11-2
aba70a
- New upstream version
aba70a
aba70a
* Sun Nov 22 2015 Colin Walters <walters@redhat.com> - 2015.10-1
aba70a
- New upstream version
aba70a
aba70a
* Thu Nov 12 2015 Matthew Barnes <mbarnes@redhat.com> - 2015.9-3
aba70a
- Add ostree-tmp-chmod.service to fix /tmp permissions on existing installs.
aba70a
  Resolves: #1276775
aba70a
aba70a
* Fri Oct 30 2015 Colin Walters <walters@redhat.com> - 2015.9-2
aba70a
- Add patch to fix permissions of /tmp
aba70a
  Resolves: #1276775
aba70a
aba70a
* Wed Sep 23 2015 Colin Walters <walters@redhat.com> - 2015.9-1
aba70a
- New upstream version
aba70a
aba70a
* Wed Aug 26 2015 Colin Walters <walters@redhat.com> - 2015.8-1
aba70a
- New upstream version
aba70a
aba70a
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2015.7-2
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
aba70a
aba70a
* Tue Jun 02 2015 Colin Walters <walters@redhat.com> - 2015.7-1
aba70a
- New upstream version
aba70a
aba70a
* Thu May 28 2015 Colin Walters <walters@redhat.com> - 2015.6-4
aba70a
- Add patch to ensure reliable bootloader ordering
aba70a
  See: #1225088
aba70a
aba70a
* Thu Apr 30 2015 Colin Walters <walters@redhat.com> - 2015.6-3
aba70a
- Close sysroot fd in finalize to fix Anaconda
aba70a
  https://bugzilla.redhat.com/show_bug.cgi?id=1217578
aba70a
aba70a
* Fri Apr 17 2015 Colin Walters <walters@redhat.com> - 2015.6-2
aba70a
- New upstream release
aba70a
aba70a
* Sun Apr 12 2015 Colin Walters <walters@redhat.com> - 2015.5-4
aba70a
- (Really) Handle null epoch as well; this was injected for https://github.com/cgwalters/rpmdistro-gitoverlay
aba70a
aba70a
* Tue Apr 07 2015 Colin Walters <walters@redhat.com> - 2015.5-2
aba70a
- New upstream release
aba70a
aba70a
* Mon Mar 30 2015 Dan Horák <dan[at]danny.cz> - 2015.4-5
aba70a
- ExcludeArch is a build restriction and is global, switching to %%ifnarch
aba70a
aba70a
* Fri Mar 27 2015 Colin Walters <walters@redhat.com> - 2015.4-4
aba70a
- Have grub2 subpackage match ExcludeArch with grub2
aba70a
aba70a
* Fri Mar 27 2015 Colin Walters <walters@redhat.com> - 2015.4-3
aba70a
- Handle null epoch as well; this was injected for https://github.com/cgwalters/rpmdistro-gitoverlay
aba70a
aba70a
* Wed Mar 25 2015 Colin Walters <walters@redhat.com> - 2015.4-2
aba70a
- New upstream release
aba70a
aba70a
* Mon Feb 16 2015 Colin Walters <walters@redhat.com> - 2015.3-3
aba70a
- Require latest libgsystem to ensure people have it
aba70a
aba70a
* Fri Jan 23 2015 Colin Walters <walters@redhat.com> - 2015.3-2
aba70a
- New upstream release
aba70a
aba70a
* Thu Jan 08 2015 Colin Walters <walters@redhat.com> - 2015.2-1
aba70a
- New upstream release
aba70a
aba70a
* Sun Jan 04 2015 Colin Walters <walters@redhat.com> - 2014.13-2
aba70a
- Add patch to ensure correct xattrs on modified config files
aba70a
  Fixes: #1178208
aba70a
aba70a
* Wed Dec 17 2014 Colin Walters <walters@redhat.com> - 2014.13-1
aba70a
- New upstream release
aba70a
aba70a
* Wed Nov 26 2014 Colin Walters <walters@redhat.com> - 2014.12-1
aba70a
- New upstream version
aba70a
aba70a
* Thu Oct 30 2014 Colin Walters <walters@redhat.com> - 2014.11-1
aba70a
- New upstream release
aba70a
aba70a
* Wed Oct 29 2014 Colin Walters <walters@redhat.com> - 2014.10.1.gedc3b9a-1
aba70a
- New upstream release
aba70a
aba70a
* Fri Oct 24 2014 Colin Walters <walters@redhat.com> - 2014.9-2
aba70a
- New upstream release
aba70a
aba70a
* Thu Oct 16 2014 Colin Walters <walters@redhat.com>
aba70a
- New upstream release
aba70a
aba70a
* Mon Sep 08 2014 Colin Walters <walters@redhat.com> - 2014.6-1
aba70a
- New upstream release
aba70a
aba70a
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.5-5
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
aba70a
aba70a
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 2014.5-4
aba70a
- Rebuilt for gobject-introspection 1.41.4
aba70a
aba70a
* Wed Jun 25 2014 Colin Walters <walters@verbum.org>
aba70a
- Rebuild to pick up new libsoup
aba70a
aba70a
* Fri Jun 13 2014 Colin Walters <walters@verbum.org> - 2014.4-2
aba70a
- Include /etc/ostree, even though it is empty
aba70a
aba70a
* Mon Jun 09 2014 Colin Walters <walters@verbum.org> - 2014.4-1
aba70a
- New upstream release
aba70a
aba70a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.4-3
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
aba70a
aba70a
* Sun Apr 13 2014 Colin Walters <walters@verbum.org> - 2014.4-1
aba70a
- New upstream release
aba70a
aba70a
* Mon Mar 31 2014 Colin Walters <walters@verbum.org>
aba70a
- New git snapshot for rpm-ostree
aba70a
aba70a
* Fri Mar 21 2014 Colin Walters <walters@verbum.org> - 2014.3-1
aba70a
- New upstream release
aba70a
aba70a
* Fri Mar 14 2014 Colin Walters <walters@verbum.org> - 2014.2-3
aba70a
- Move trusted.gpg.d to main runtime package, where it should be
aba70a
aba70a
* Fri Mar 07 2014 Colin Walters <walters@verbum.org> - 2014.2-2
aba70a
- Depend on gpgv2 
aba70a
- Resolves: #1073813
aba70a
aba70a
* Sat Mar 01 2014 Colin Walters <walters@verbum.org> - 2014.2-1
aba70a
- New upstream release
aba70a
- Depend on libselinux
aba70a
- Explicitly depend on libarchive too, we were actually failing
aba70a
  to disable it before
aba70a
aba70a
* Fri Jan 24 2014 Colin Walters <walters@verbum.org> - 2014.1-1
aba70a
- New upstream release
aba70a
aba70a
* Mon Jan 13 2014 Colin Walters <walters@verbum.org> - 2013.7-2
aba70a
- Add preset file so ostree-remount is enabled by default, since
aba70a
  it needs to be.
aba70a
aba70a
* Tue Oct 15 2013 Colin Walters <walters@verbum.org> - 2013.7-1
aba70a
- New upstream release
aba70a
- Now LGPLv2+ only
aba70a
- Enable libarchive since it might be useful for people
aba70a
- Enable new gpgme dependency
aba70a
aba70a
* Thu Sep 12 2013 Colin Walters <walters@verbum.org> - 2013.6-3
aba70a
- Enable introspection
aba70a
aba70a
* Mon Sep 09 2013 Colin Walters <walters@verbum.org> - 2013.6-2
aba70a
- Tweak description
aba70a
aba70a
* Mon Sep 09 2013 Colin Walters <walters@verbum.org> - 2013.6-1
aba70a
- New upstream release
aba70a
aba70a
* Sat Aug 25 2013 Colin Walters <walters@verbum.org> - 2013.5-3
aba70a
- And actually while we are here, drop all the embedded dependency
aba70a
  goop from this spec file; it may live on in the EPEL branch.
aba70a
aba70a
* Sat Aug 25 2013 Colin Walters <walters@verbum.org> - 2013.5-2
aba70a
- Drop requirement on linux-user-chroot
aba70a
  We now require triggers to be processed on the build server
aba70a
  by default, so ostree does not runtime-depend on linux-user-chroot.
aba70a
aba70a
* Sat Aug 17 2013 Colin Walters <walters@verbum.org> - 2013.5-1
aba70a
- New upstream release
aba70a
- Add devel package
aba70a
aba70a
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.4-2
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
aba70a
aba70a
* Tue Jul 16 2013 Colin Walters <walters@verbum.org> - 2013.4-1
aba70a
- New upstream release
aba70a
aba70a
* Sun Jul 07 2013 Colin Walters <walters@verbum.org> - 2013.3-1
aba70a
- New upstream release
aba70a
aba70a
* Mon Apr 01 2013 Colin Walters <walters@verbum.org> - 2013.1-1
aba70a
- New upstream release
aba70a
aba70a
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.13-2
aba70a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
aba70a
aba70a
* Sun Dec 23 2012 Colin Walters <walters@verbum.org> - 2012.13-1
aba70a
- New upstream release
aba70a
aba70a
* Tue Dec 18 2012 Colin Walters <walters@verbum.org> - 2012.12-2
aba70a
- Explicitly enable grub2 hook; otherwise we pick up whatever
aba70a
  the buildroot has, which is not what we want.
aba70a
aba70a
* Mon Nov 19 2012 Colin Walters <walters@verbum.org> - 2012.12-1
aba70a
- Initial import; thanks to Michel Alexandre Salim for review
aba70a
  https://bugzilla.redhat.com/show_bug.cgi?id=819951
aba70a