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