2023-09-01 17:09:26 +00:00
|
|
|
# We haven't tried to ship the tests on RHEL
|
|
|
|
%if 0%{?rhel}
|
2018-10-17 14:19:46 +00:00
|
|
|
%bcond_with tests
|
|
|
|
%else
|
|
|
|
%bcond_without tests
|
|
|
|
%endif
|
2023-12-04 18:35:36 +00:00
|
|
|
%if 0%{?rhel} < 10
|
|
|
|
%bcond_with composefs
|
|
|
|
%else
|
|
|
|
%bcond_without composefs
|
|
|
|
%endif
|
2018-10-17 14:19:46 +00:00
|
|
|
|
2014-10-24 17:35:47 +00:00
|
|
|
Summary: Tool for managing bootable, immutable filesystem trees
|
2012-11-19 21:05:28 +00:00
|
|
|
Name: ostree
|
2023-10-20 16:49:25 +00:00
|
|
|
Version: 2023.7
|
2023-12-04 18:47:08 +00:00
|
|
|
Release: 4%{?dist}
|
2017-02-07 19:27:17 +00:00
|
|
|
Source0: https://github.com/ostreedev/%{name}/releases/download/v%{version}/libostree-%{version}.tar.xz
|
2023-06-13 21:02:00 +00:00
|
|
|
License: LGPL-2.0-or-later
|
2016-10-27 07:45:11 +00:00
|
|
|
URL: https://ostree.readthedocs.io/en/latest/
|
2013-09-12 18:21:27 +00:00
|
|
|
|
2023-12-04 18:45:29 +00:00
|
|
|
# Conditional to ELN right now to reduce blast radius; xref
|
|
|
|
# https://github.com/containers/composefs/pull/229#issuecomment-1838735764
|
|
|
|
%if 0%{?rhel} >= 10
|
|
|
|
ExcludeArch: %{ix86}
|
|
|
|
%endif
|
|
|
|
|
2021-01-07 06:48:20 +00:00
|
|
|
BuildRequires: make
|
2015-04-30 17:57:30 +00:00
|
|
|
BuildRequires: git
|
2012-11-19 21:05:28 +00:00
|
|
|
# We always run autogen.sh
|
|
|
|
BuildRequires: autoconf automake libtool
|
|
|
|
# For docs
|
|
|
|
BuildRequires: gtk-doc
|
2013-09-12 18:21:27 +00:00
|
|
|
# Core requirements
|
2017-03-07 21:56:10 +00:00
|
|
|
BuildRequires: pkgconfig(zlib)
|
2017-03-07 21:49:04 +00:00
|
|
|
BuildRequires: pkgconfig(libcurl)
|
2017-09-04 16:19:47 +00:00
|
|
|
BuildRequires: openssl-devel
|
2023-09-01 17:09:26 +00:00
|
|
|
%if %{with tests}
|
2023-07-12 02:18:22 +00:00
|
|
|
BuildRequires: pkgconfig(libsoup-3.0)
|
2023-09-01 17:09:26 +00:00
|
|
|
%endif
|
2013-10-15 21:27:10 +00:00
|
|
|
BuildRequires: libattr-devel
|
2021-12-06 02:22:44 +00:00
|
|
|
# The tests require attr
|
|
|
|
BuildRequires: attr
|
2013-10-15 21:27:10 +00:00
|
|
|
# Extras
|
|
|
|
BuildRequires: pkgconfig(libarchive)
|
2014-06-09 22:42:38 +00:00
|
|
|
BuildRequires: pkgconfig(liblzma)
|
2014-03-01 20:16:19 +00:00
|
|
|
BuildRequires: pkgconfig(libselinux)
|
2017-01-18 22:57:46 +00:00
|
|
|
BuildRequires: pkgconfig(mount)
|
2022-05-19 15:00:50 +00:00
|
|
|
%if 0%{?fedora} <= 36
|
|
|
|
BuildRequires: pkgconfig(fuse)
|
|
|
|
%else
|
2022-04-01 22:23:49 +00:00
|
|
|
BuildRequires: pkgconfig(fuse3)
|
2022-05-19 15:00:50 +00:00
|
|
|
%endif
|
2014-06-09 23:58:05 +00:00
|
|
|
BuildRequires: pkgconfig(e2p)
|
2015-03-10 13:38:19 +00:00
|
|
|
BuildRequires: libcap-devel
|
2013-10-15 21:27:10 +00:00
|
|
|
BuildRequires: gpgme-devel
|
2016-06-23 14:26:48 +00:00
|
|
|
BuildRequires: pkgconfig(libsystemd)
|
2013-09-12 18:21:27 +00:00
|
|
|
BuildRequires: /usr/bin/g-ir-scanner
|
2013-07-08 01:51:28 +00:00
|
|
|
BuildRequires: dracut
|
2015-12-07 15:53:31 +00:00
|
|
|
BuildRequires: bison
|
2023-12-04 18:35:36 +00:00
|
|
|
%if %{with composefs}
|
2023-12-03 19:59:28 +00:00
|
|
|
BuildRequires: pkgconfig(composefs)
|
2023-12-04 18:35:36 +00:00
|
|
|
%endif
|
2012-11-19 21:05:28 +00:00
|
|
|
|
2013-09-12 18:21:27 +00:00
|
|
|
# Runtime requirements
|
2013-07-08 01:51:28 +00:00
|
|
|
Requires: dracut
|
2014-03-07 12:47:27 +00:00
|
|
|
Requires: /usr/bin/gpgv2
|
2013-08-17 22:05:33 +00:00
|
|
|
Requires: systemd-units
|
2018-10-11 20:25:23 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2023-12-03 19:59:28 +00:00
|
|
|
# Strictly speaking, this is not a current hard requirement, but it will
|
|
|
|
# be in the future.
|
2023-12-04 18:35:36 +00:00
|
|
|
%if %{with composefs}
|
2023-12-03 19:59:28 +00:00
|
|
|
Requires: composefs
|
2023-12-04 18:35:36 +00:00
|
|
|
%endif
|
2012-11-19 21:05:28 +00:00
|
|
|
|
|
|
|
%description
|
2017-12-04 19:08:36 +00:00
|
|
|
libostree is a shared library designed primarily for
|
|
|
|
use by higher level tools to manage host systems (e.g. rpm-ostree),
|
|
|
|
as well as container tools like flatpak and the atomic CLI.
|
2012-11-19 21:05:28 +00:00
|
|
|
|
2017-02-07 18:23:03 +00:00
|
|
|
%package libs
|
2022-04-13 18:58:17 +00:00
|
|
|
Summary: C shared libraries %{name}
|
2017-02-07 18:23:03 +00:00
|
|
|
|
|
|
|
%description libs
|
|
|
|
The %{name}-libs provides shared libraries for %{name}.
|
|
|
|
|
2013-08-17 22:05:33 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development headers for %{name}
|
2018-10-11 20:25:23 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2013-08-17 22:05:33 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package includes the header files for the %{name} library.
|
|
|
|
|
2018-08-11 16:06:46 +00:00
|
|
|
%ifnarch s390 s390x
|
2014-10-16 22:19:11 +00:00
|
|
|
%package grub2
|
|
|
|
Summary: GRUB2 integration for OSTree
|
2018-08-11 16:06:46 +00:00
|
|
|
%ifnarch aarch64 %{arm}
|
2014-10-16 22:19:11 +00:00
|
|
|
Requires: grub2
|
2016-05-08 11:17:07 +00:00
|
|
|
%else
|
|
|
|
Requires: grub2-efi
|
|
|
|
%endif
|
2017-02-07 20:38:33 +00:00
|
|
|
Requires: ostree
|
2014-10-16 22:19:11 +00:00
|
|
|
|
|
|
|
%description grub2
|
|
|
|
GRUB2 integration for OSTree
|
2015-03-30 11:00:14 +00:00
|
|
|
%endif
|
2014-10-16 22:19:11 +00:00
|
|
|
|
2018-10-17 14:19:46 +00:00
|
|
|
%if %{with tests}
|
2017-09-14 16:50:40 +00:00
|
|
|
%package tests
|
|
|
|
Summary: Tests for the %{name} package
|
2018-10-11 20:25:23 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2017-09-14 16:50:40 +00:00
|
|
|
|
|
|
|
%description tests
|
|
|
|
This package contains tests that can be used to verify
|
|
|
|
the functionality of the installed %{name} package.
|
2018-10-17 14:19:46 +00:00
|
|
|
%endif
|
2017-09-14 16:50:40 +00:00
|
|
|
|
2012-11-19 21:05:28 +00:00
|
|
|
%prep
|
2017-02-07 19:27:17 +00:00
|
|
|
%autosetup -Sgit -n libostree-%{version}
|
2012-11-19 21:05:28 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
env NOCONFIGURE=1 ./autogen.sh
|
|
|
|
%configure --disable-silent-rules \
|
2017-12-14 03:27:52 +00:00
|
|
|
--enable-gtk-doc \
|
|
|
|
--with-selinux \
|
|
|
|
--with-curl \
|
|
|
|
--with-openssl \
|
2023-12-04 18:42:27 +00:00
|
|
|
--without-soup \
|
2023-12-04 18:35:36 +00:00
|
|
|
%{?with_composefs:--with-composefs} \
|
2023-09-07 13:46:34 +00:00
|
|
|
%{?with_tests:--with-soup3} \
|
2018-10-17 14:19:46 +00:00
|
|
|
%{?with_tests:--enable-installed-tests=exclusive} \
|
2019-02-09 18:11:30 +00:00
|
|
|
--with-dracut=yesbutnoconf
|
2016-10-27 07:50:01 +00:00
|
|
|
%make_build
|
2012-11-19 21:05:28 +00:00
|
|
|
|
|
|
|
%install
|
2016-10-27 07:50:01 +00:00
|
|
|
%make_install INSTALL="install -p -c"
|
|
|
|
find %{buildroot} -name '*.la' -delete
|
2012-11-19 21:05:28 +00:00
|
|
|
|
2017-08-22 19:59:38 +00:00
|
|
|
# Needed to enable the service at compose time currently
|
|
|
|
%post
|
|
|
|
%systemd_post ostree-remount.service
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%systemd_preun ostree-remount.service
|
|
|
|
|
2012-11-19 21:05:28 +00:00
|
|
|
%files
|
2016-05-08 11:17:07 +00:00
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license COPYING
|
|
|
|
%doc README.md
|
2012-11-19 21:05:28 +00:00
|
|
|
%{_bindir}/ostree
|
2016-02-17 15:05:35 +00:00
|
|
|
%{_bindir}/rofiles-fuse
|
2017-08-12 19:43:30 +00:00
|
|
|
%{_datadir}/ostree
|
2017-08-16 19:20:57 +00:00
|
|
|
%{_datadir}/bash-completion/completions/*
|
2013-07-08 01:51:28 +00:00
|
|
|
%dir %{_prefix}/lib/dracut/modules.d/98ostree
|
2018-10-16 15:37:31 +00:00
|
|
|
%{_prefix}/lib/systemd/system/ostree*.*
|
2013-07-08 01:51:28 +00:00
|
|
|
%{_prefix}/lib/dracut/modules.d/98ostree/*
|
2014-03-31 21:41:56 +00:00
|
|
|
%{_mandir}/man*/*.gz
|
2017-05-16 17:00:24 +00:00
|
|
|
%{_prefix}/lib/systemd/system-generators/ostree-system-generator
|
2015-03-30 11:00:14 +00:00
|
|
|
%exclude %{_sysconfdir}/grub.d/*ostree
|
2017-02-03 19:14:47 +00:00
|
|
|
%exclude %{_libexecdir}/libostree/grub2*
|
2017-08-17 21:07:19 +00:00
|
|
|
%{_prefix}/lib/tmpfiles.d/*
|
2018-03-20 20:31:18 +00:00
|
|
|
%{_prefix}/lib/ostree
|
2017-01-05 14:00:11 +00:00
|
|
|
# Moved in git master
|
2017-02-03 19:14:47 +00:00
|
|
|
%{_libexecdir}/libostree/*
|
2012-11-19 21:05:28 +00:00
|
|
|
|
2017-02-07 18:23:03 +00:00
|
|
|
%files libs
|
|
|
|
%{_sysconfdir}/ostree
|
|
|
|
%{_libdir}/*.so.1*
|
|
|
|
%{_libdir}/girepository-1.0/OSTree-1.0.typelib
|
|
|
|
|
2013-08-17 22:05:33 +00:00
|
|
|
%files devel
|
|
|
|
%{_libdir}/lib*.so
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/pkgconfig/*
|
|
|
|
%dir %{_datadir}/gtk-doc/html/ostree
|
|
|
|
%{_datadir}/gtk-doc/html/ostree
|
2013-09-12 18:21:27 +00:00
|
|
|
%{_datadir}/gir-1.0/OSTree-1.0.gir
|
2013-08-17 22:05:33 +00:00
|
|
|
|
2018-08-11 16:06:46 +00:00
|
|
|
%ifnarch s390 s390x
|
2014-10-16 22:19:11 +00:00
|
|
|
%files grub2
|
|
|
|
%{_sysconfdir}/grub.d/*ostree
|
2017-08-22 17:58:12 +00:00
|
|
|
%dir %{_libexecdir}/libostree
|
2017-02-03 19:14:47 +00:00
|
|
|
%{_libexecdir}/libostree/grub2*
|
2015-03-30 11:00:14 +00:00
|
|
|
%endif
|
2014-10-16 22:19:11 +00:00
|
|
|
|
2018-10-17 14:19:46 +00:00
|
|
|
%if %{with tests}
|
2017-09-14 16:50:40 +00:00
|
|
|
%files tests
|
|
|
|
%{_libexecdir}/installed-tests
|
|
|
|
%{_datadir}/installed-tests
|
2018-10-17 14:19:46 +00:00
|
|
|
%endif
|
2017-09-14 16:50:40 +00:00
|
|
|
|
2012-11-19 21:05:28 +00:00
|
|
|
%changelog
|
2023-12-04 18:47:08 +00:00
|
|
|
* Mon Dec 04 2023 Colin Walters <walters@verbum.org> - 2023.7-4
|
|
|
|
- Enable composefs only on fedora/rhel10 to fix COPR builds
|
|
|
|
which pull from this dist-git
|
|
|
|
- Exclude x86 on FedoraELN since composefs is
|
|
|
|
- Always disable soup to re-sync with ostree upstream logic
|
|
|
|
|
2023-12-03 19:59:28 +00:00
|
|
|
* Sun Dec 03 2023 Colin Walters <walters@verbum.org> - 2023.7-3
|
|
|
|
- Add a composefs requirement; this is not actually a requirement
|
|
|
|
right now, but will be in the near future, so let's prepare for it.
|
|
|
|
|
2023-10-20 16:49:25 +00:00
|
|
|
* Fri Oct 20 2023 Colin Walters <walters@verbum.org> - 2023.7-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2023.7
|
|
|
|
|
2023-10-06 17:00:14 +00:00
|
|
|
* Fri Oct 06 2023 Colin Walters <walters@verbum.org> - 2023.6-2
|
|
|
|
- Cherry pick
|
|
|
|
https://github.com/ostreedev/ostree/pull/3060/commits/3b2fd6e9ff0a3a91a2b72f524492e4f198069dec
|
|
|
|
|
2023-08-25 15:24:04 +00:00
|
|
|
* Fri Aug 25 2023 Colin Walters <walters@verbum.org> - 2023.6-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2023.6
|
|
|
|
|
2023-07-20 18:23:42 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2023.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-06-30 19:16:50 +00:00
|
|
|
* Fri Jun 30 2023 Colin Walters <walters@verbum.org> - 2023.5-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2023.5
|
|
|
|
|
2023-06-26 09:43:22 +00:00
|
|
|
* Mon Jun 26 2023 Colin Walters <walters@verbum.org> - 2023.4-2
|
|
|
|
- Cherry pick patch to fix flatpak
|
|
|
|
|
2023-06-20 17:37:38 +00:00
|
|
|
* Tue Jun 20 2023 Colin Walters <walters@verbum.org> - 2023.4-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2023.4
|
|
|
|
|
2023-06-13 21:02:00 +00:00
|
|
|
* Tue Jun 13 2023 Joseph Marrero <jmarrero@fedoraproject.org> - 2023.3-4
|
|
|
|
- Switch License tags to SPDX
|
|
|
|
|
2023-06-01 14:49:51 +00:00
|
|
|
* Thu Jun 1 2023 Dusty Mabe <dusty@dustymabe.com> - 2023.3-3
|
|
|
|
- Backport log message fix in https://github.com/ostreedev/ostree/pull/2870
|
|
|
|
- Backport fallocate fix in https://github.com/ostreedev/ostree/pull/2871
|
|
|
|
|
2023-05-30 21:22:29 +00:00
|
|
|
* Tue May 30 2023 Dusty Mabe <dusty@dustymabe.com> - 2023.3-2
|
|
|
|
- Backport OSTree Autoprune fixes in https://github.com/ostreedev/ostree/pull/2866
|
|
|
|
|
2023-05-18 23:45:51 +00:00
|
|
|
* Thu May 18 2023 Joseph Marrero <jmarrero@fedoraproject.org> - 2023.3-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2023.3
|
|
|
|
|
2023-03-22 17:22:24 +00:00
|
|
|
* Wed Mar 22 2023 Colin Walters <walters@verbum.org> - 2023.2-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2023.2
|
|
|
|
|
2023-02-17 18:15:44 +00:00
|
|
|
* Fri Feb 17 2023 Colin Walters <walters@verbum.org> - 2023.1-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2023.1
|
|
|
|
|
2023-01-19 23:08:40 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2022.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-11-23 18:11:36 +00:00
|
|
|
* Wed Nov 23 2022 Colin Walters <walters@verbum.org> - 2022.7-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2022.7
|
|
|
|
|
2022-10-10 11:46:38 +00:00
|
|
|
* Mon Oct 10 2022 Luca BRUNO <lucab@lucabruno.net> - 2022.6-1
|
|
|
|
- New upstream version
|
|
|
|
https://github.com/ostreedev/ostree/releases/tag/v2022.6
|
|
|
|
|
2022-07-22 20:28:49 +00:00
|
|
|
* Fri Jul 22 2022 Colin Walters <walters@verbum.org> - 2022.5-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2022.5
|
|
|
|
|
2022-07-22 02:26:34 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2022.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-06 18:07:11 +00:00
|
|
|
* Mon Jun 06 2022 Colin Walters <walters@verbum.org> - 2022.4-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2022.4
|
|
|
|
|
2022-05-19 15:00:50 +00:00
|
|
|
* Thu May 19 2022 Jonathan Lebon <jonathan@jlebon.com> - 2022.3-3
|
|
|
|
- Only use FUSE 3 for rofiles-fuse on f37+
|
|
|
|
|
2022-05-04 19:11:01 +00:00
|
|
|
* Wed May 04 2022 Colin Walters <walters@verbum.org> - 2022.3-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2022.3
|
|
|
|
|
2022-04-01 22:23:49 +00:00
|
|
|
* Fri Apr 01 2022 Debarshi Ray <rishi@fedoraproject.org> - 2022.2-2
|
|
|
|
- Use FUSE 3 for rofiles-fuse
|
|
|
|
|
2022-04-01 09:57:46 +00:00
|
|
|
* Fri Apr 01 2022 Luca BRUNO <lucab@lucabruno.net> - 2022.2-1
|
|
|
|
- New upstream version
|
|
|
|
https://github.com/ostreedev/ostree/releases/tag/v2022.2
|
|
|
|
|
2022-01-20 22:39:49 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2022.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-06 10:22:19 +00:00
|
|
|
* Thu Jan 06 2022 Luca BRUNO <lucab@lucabruno.net> - 2022.1-1
|
|
|
|
- New upstream version
|
|
|
|
https://github.com/ostreedev/ostree/releases/tag/v2022.1
|
|
|
|
|
2021-12-09 09:21:16 +00:00
|
|
|
* Thu Dec 09 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 2021.6-3
|
|
|
|
- Summary locking fix (GH PR 2493)
|
|
|
|
|
2021-12-06 02:22:44 +00:00
|
|
|
* Mon Dec 06 2021 Joseph Marrero <jmarrero@fedoraproject.org> - 2021.6-2
|
|
|
|
- Add attr as a build dependency as we use it for running the tests
|
|
|
|
|
2021-11-23 15:42:26 +00:00
|
|
|
* Tue Nov 23 2021 Luca BRUNO <lucab@lucabruno.net> - 2021.6-1
|
|
|
|
- New upstream version
|
|
|
|
https://github.com/ostreedev/ostree/releases/tag/v2021.6
|
|
|
|
|
2021-10-06 13:38:39 +00:00
|
|
|
* Wed Oct 06 2021 Colin Walters <walters@verbum.org> - 2021.5-2
|
|
|
|
- https://github.com/coreos/ostree/releases/tag/v2021.5
|
|
|
|
|
2021-09-14 17:10:29 +00:00
|
|
|
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2021.4-3
|
|
|
|
- Rebuilt with OpenSSL 3.0.0
|
|
|
|
|
2021-09-09 14:23:11 +00:00
|
|
|
* Thu Sep 09 2021 Colin Walters <walters@verbum.org> - 2021.4-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2021.4
|
|
|
|
|
2021-07-22 17:30:27 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2021.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-13 13:06:04 +00:00
|
|
|
* Tue Jul 13 2021 Luca BRUNO <lucab@lucabruno.net> - 2021.3-1
|
|
|
|
- New upstream version
|
|
|
|
https://github.com/ostreedev/ostree/releases/tag/v2021.3
|
|
|
|
|
2021-05-10 21:22:18 +00:00
|
|
|
* Mon May 10 2021 Jeff Law <jlaw@tachyum.com> - 2021.2-3
|
|
|
|
- Re-enable LTO
|
|
|
|
|
2021-04-15 19:47:57 +00:00
|
|
|
* Thu Apr 15 2021 Colin Walters <walters@verbum.org> - 2021.2-2
|
|
|
|
- https://github.com/coreos/ostree/releases/tag/v2021.2
|
|
|
|
|
2021-03-23 21:05:11 +00:00
|
|
|
* Tue Mar 23 2021 Colin Walters <walters@verbum.org> - 2021.1-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2021.1
|
|
|
|
|
2021-01-26 22:45:32 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2020.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-11-18 08:47:19 +00:00
|
|
|
* Wed Nov 18 08:42:24 UTC 2020 Luca BRUNO <lucab@lucabruno.net> - 2020.8-1
|
|
|
|
- New upstream version
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.8
|
|
|
|
|
2020-10-30 17:46:23 +00:00
|
|
|
* Fri Oct 30 2020 Jeff Law <law@redhat.com> - 2020.7-4
|
|
|
|
- Fix volatile issues exposed by gcc-11
|
|
|
|
|
2020-10-15 16:44:12 +00:00
|
|
|
* Thu Oct 15 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.7-3
|
|
|
|
- Backport https://github.com/ostreedev/ostree/pull/2219 for
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1888436
|
|
|
|
|
2020-10-14 00:14:05 +00:00
|
|
|
* Wed Oct 14 2020 Colin Walters <walters@verbum.org> - 2020.7-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.7
|
|
|
|
|
2020-10-07 19:11:06 +00:00
|
|
|
* Wed Oct 07 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.6-5
|
|
|
|
- Backport https://github.com/ostreedev/ostree/pull/2211 for
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1886149
|
|
|
|
|
2020-09-24 21:54:26 +00:00
|
|
|
* Thu Sep 24 2020 Colin Walters <walters@verbum.org> - 2020.6-4
|
|
|
|
- Backport https://github.com/ostreedev/ostree/pull/2202
|
|
|
|
|
2020-09-18 21:06:55 +00:00
|
|
|
* Fri Sep 18 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.6-3
|
|
|
|
- Revert support for devicetrees
|
|
|
|
https://github.com/ostreedev/ostree/issues/2154
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1880499
|
|
|
|
|
2020-09-03 18:50:26 +00:00
|
|
|
* Thu Sep 03 2020 Colin Walters <walters@verbum.org> - 2020.6-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.6
|
|
|
|
|
2020-08-18 18:51:46 +00:00
|
|
|
* Tue Aug 18 2020 Colin Walters <walters@verbum.org> - 2020.5-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.5
|
|
|
|
|
2020-08-01 17:35:06 +00:00
|
|
|
* Sat Aug 01 2020 Colin Walters <walters@verbum.org> - 2020.4-4
|
|
|
|
- Backport patch for https://bugzilla.redhat.com/show_bug.cgi?id=1862568
|
|
|
|
|
2020-07-28 12:58:20 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2020.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-22 20:57:49 +00:00
|
|
|
* Wed Jul 22 2020 Colin Walters <walters@verbum.org> - 2020.4-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.4
|
|
|
|
|
2020-06-30 19:53:09 +00:00
|
|
|
* Tue Jun 30 2020 Jeff Law <law@redhat.com> - 2020.3-6
|
|
|
|
Disable LTO
|
|
|
|
|
2020-06-18 19:04:28 +00:00
|
|
|
* Thu Jun 18 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.3-5
|
|
|
|
- Backport patch to handle EOPNOTSUPP on NFS:
|
|
|
|
https://gitlab.gnome.org/GNOME/libglnx/-/merge_requests/18
|
|
|
|
|
2020-05-21 18:46:35 +00:00
|
|
|
* Thu May 21 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.3-4
|
|
|
|
- Backport patch to neuter sysroot.readonly for FCOS
|
|
|
|
https://github.com/coreos/fedora-coreos-tracker/issues/488
|
|
|
|
https://github.com/ostreedev/ostree/pull/2108
|
|
|
|
|
2020-04-17 19:36:52 +00:00
|
|
|
* Fri Apr 17 2020 Dusty Mabe <dusty@dustymabe.com> - 2020.3-3
|
|
|
|
- Backport patchset that should help us with concurrently pulling
|
|
|
|
https://github.com/ostreedev/ostree/pull/2077
|
|
|
|
|
2020-03-14 15:35:53 +00:00
|
|
|
* Sat Mar 14 2020 Colin Walters <walters@verbum.org> - 2020.3-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.3
|
|
|
|
|
2020-02-21 15:57:28 +00:00
|
|
|
* Fri Feb 21 2020 Colin Walters <walters@verbum.org> - 2020.2-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.2
|
|
|
|
|
2020-02-20 18:48:09 +00:00
|
|
|
* Thu Feb 20 2020 Colin Walters <walters@verbum.org> - 2020.1-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.1
|
|
|
|
|
2020-01-29 20:37:46 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2019.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-12-10 20:24:51 +00:00
|
|
|
* Tue Dec 10 2019 Colin Walters <walters@verbum.org> - 2019.6-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2019.6
|
|
|
|
|
2019-10-30 21:03:26 +00:00
|
|
|
* Wed Oct 30 2019 Colin Walters <walters@verbum.org> - 2019.5-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2019.5
|
|
|
|
|
2019-10-07 14:38:51 +00:00
|
|
|
* Thu Sep 26 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4-2
|
|
|
|
- Revert ostree-grub2 patch to fix duplicate entries
|
|
|
|
https://github.com/ostreedev/ostree/pull/1929#issuecomment-539022174
|
|
|
|
|
2019-09-26 18:03:27 +00:00
|
|
|
* Thu Sep 26 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4-2
|
|
|
|
- Backport patch to fix duplicate GRUB2 entries when using BLS
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1751272#c27
|
|
|
|
|
2019-09-25 15:18:06 +00:00
|
|
|
* Wed Sep 25 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2019.4
|
|
|
|
|
2019-08-22 19:24:57 +00:00
|
|
|
* Thu Aug 22 2019 Colin Walters <walters@verbum.org> - 2019.3-3
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2019.3
|
|
|
|
|
2019-07-25 23:47:32 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-26 16:27:11 +00:00
|
|
|
* Wed Apr 24 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.2-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2019.2
|
|
|
|
|
2019-02-09 18:11:30 +00:00
|
|
|
* Sat Feb 09 2019 Dusty Mabe <dusty@dustymabe.com> - 2019.1-5
|
|
|
|
- Re-enable http2 in ostree build
|
|
|
|
|
2019-02-01 17:43:06 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-17 13:59:21 +00:00
|
|
|
* Thu Jan 17 2019 Sinny Kumari <ksinny@gmail.com> - 2019.1-3
|
|
|
|
- Backport patch to fix bare → bare imports
|
|
|
|
- Backport patch to Set xattr on correct fd for bare-user → bare-user imports
|
|
|
|
|
2019-01-11 18:45:09 +00:00
|
|
|
* Fri Jan 11 2019 Colin Walters <walters@verbum.org> - 2019.1-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2019.1
|
|
|
|
|
2019-01-11 14:05:40 +00:00
|
|
|
* Fri Jan 11 2019 Colin Walters <walters@verbum.org> - 2018.9-2
|
|
|
|
- Work around https://src.fedoraproject.org/rpms/nfs-utils/pull-request/7
|
|
|
|
|
2018-10-25 14:48:47 +00:00
|
|
|
* Thu Oct 25 2018 Colin Walters <walters@verbum.org> - 2018.9-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.9
|
|
|
|
|
2018-10-17 14:19:46 +00:00
|
|
|
* Wed Oct 17 2018 Jonathan Lebon <jonathan@jlebon.com>
|
|
|
|
- Add conditional for tests and disable by default on RHEL > 7
|
|
|
|
|
2018-08-22 14:40:25 +00:00
|
|
|
* Wed Aug 22 2018 Colin Walters <walters@verbum.org> - 2018.8-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.8
|
|
|
|
|
2018-08-11 16:06:46 +00:00
|
|
|
* Sun Aug 12 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2018.7-2
|
|
|
|
- Enable grub2 support on ARMv7
|
|
|
|
|
2018-07-20 20:47:15 +00:00
|
|
|
* Fri Jul 20 2018 Colin Walters <walters@verbum.org> - 2018.7-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.7
|
|
|
|
|
2018-07-13 15:19:51 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.6-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-04 16:18:26 +00:00
|
|
|
* Wed Jul 04 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6-4
|
|
|
|
- Backport patch to fix /var mountpoints
|
|
|
|
https://github.com/ostreedev/ostree/issues/1667
|
|
|
|
|
2018-06-21 14:10:34 +00:00
|
|
|
* Thu Jun 21 2018 Colin Walters <walters@redhat.com> - 2018.6-3
|
2018-06-21 14:10:34 +00:00
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.6
|
|
|
|
|
2018-05-11 17:36:48 +00:00
|
|
|
* Fri May 11 2018 Colin Walters <walters@verbum.org> - 2018.5-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.5
|
|
|
|
|
2018-04-03 09:08:32 +00:00
|
|
|
* Tue Apr 03 2018 Kalev Lember <klember@redhat.com> - 2018.3-2
|
|
|
|
- Backport a patch to avoid writing to parent repo
|
|
|
|
|
2018-03-21 18:44:45 +00:00
|
|
|
* Wed Mar 21 2018 Colin Walters <walters@verbum.org> - 2018.3-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.3
|
|
|
|
|
2018-03-02 14:41:18 +00:00
|
|
|
* Fri Mar 02 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.2-2
|
|
|
|
- Drop ostree-remount systemd service preset, already in fedora-release
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1550799
|
|
|
|
|
2018-02-15 15:24:35 +00:00
|
|
|
* Thu Feb 15 2018 Colin Walters <walters@verbum.org> - 2018.2-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.2
|
|
|
|
|
2018-02-08 18:02:11 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-15 15:46:12 +00:00
|
|
|
* Mon Jan 15 2018 Colin Walters <walters@verbum.org> - 2018.1-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2018.1
|
|
|
|
|
2017-12-20 10:10:24 +00:00
|
|
|
* Wed Dec 20 2017 Colin Walters <walters@verbum.org> - 2017.15-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2017.15
|
|
|
|
- Drop upstreamed patches; note this build disabled HTTP2 by
|
|
|
|
default for now since we are hitting it with koji. For more
|
|
|
|
information see https://github.com/ostreedev/ostree/issues/1362
|
|
|
|
|
2017-12-18 17:22:38 +00:00
|
|
|
* Mon Dec 18 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.14-2
|
|
|
|
- Backport patch to drop HTTP2
|
|
|
|
|
2017-12-04 19:08:36 +00:00
|
|
|
* Mon Dec 04 2017 Colin Walters <walters@verbum.org> - 2017.14-1
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2017.14
|
|
|
|
- Update description
|
|
|
|
|
2017-11-27 16:20:59 +00:00
|
|
|
* Mon Nov 27 2017 Colin Walters <walters@verbum.org> - 2017.13-4
|
|
|
|
- Backport patch to drop curl low speed checks; requested by flatpak
|
|
|
|
|
2017-11-07 16:14:25 +00:00
|
|
|
* Tue Nov 07 2017 Kalev Lember <klember@redhat.com> - 2017.13-3
|
|
|
|
- Backport a patch to fix a gnome-software crash when installing flatpaks
|
|
|
|
(#1497642)
|
|
|
|
|
2017-11-02 14:39:02 +00:00
|
|
|
* Thu Nov 02 2017 Colin Walters <walters@verbum.org> - 2017.13-2
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2017.13
|
|
|
|
|
2017-10-03 18:54:39 +00:00
|
|
|
* Tue Oct 03 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.12-2
|
|
|
|
- Let tests subpackage own ostree-trivial-httpd
|
|
|
|
|
2017-10-02 17:17:27 +00:00
|
|
|
* Mon Oct 02 2017 Colin Walters <walters@verbum.org> - 2017.12-1
|
|
|
|
- New upstream version
|
|
|
|
- https://github.com/ostreedev/ostree/releases/tag/v2017.12
|
|
|
|
|
2017-09-14 16:50:40 +00:00
|
|
|
* Thu Sep 14 2017 Colin Walters <walters@verbum.org> - 2017.11-1
|
|
|
|
- New upstream version
|
|
|
|
- Add tests subpackage, prep for https://fedoraproject.org/wiki/CI
|
|
|
|
|
2017-08-22 17:58:12 +00:00
|
|
|
* Tue Aug 22 2017 Ville Skyttä <ville.skytta@iki.fi> - 2017.10-3
|
|
|
|
- Own the %%{_libexecdir}/libostree dir
|
|
|
|
|
2017-08-17 20:43:20 +00:00
|
|
|
* Thu Aug 17 2017 Colin Walters <walters@verbum.org> - 2017.10-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-08-12 19:43:30 +00:00
|
|
|
* Sat Aug 12 2017 Ville Skyttä <ville.skytta@iki.fi> - 2017.9-5
|
|
|
|
- Own the %%{_datadir}/ostree dir
|
|
|
|
|
2017-08-03 04:42:03 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.9-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-30 19:53:59 +00:00
|
|
|
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 2017.9-3
|
|
|
|
- Rebuild with binutils fix for ppc64le (#1475636)
|
|
|
|
|
2017-07-27 13:22:03 +00:00
|
|
|
* Thu Jul 27 2017 Colin Walters <walters@verbum.org> - 2017.9-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-07-27 02:00:30 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-17 15:34:19 +00:00
|
|
|
* Mon Jul 17 2017 Colin Walters <walters@verbum.org> - 2017.8-3
|
|
|
|
- Switch to libcurl for F26+
|
|
|
|
I think it works well; to recap the arguments below:
|
|
|
|
It has various advantages like HTTP2, plus now that NetworkManager
|
|
|
|
switched we are the last thing left in Fedora Atomic Host depending
|
|
|
|
on libsoup.
|
|
|
|
|
2017-07-06 19:10:56 +00:00
|
|
|
* Thu Jul 06 2017 Colin Walters <walters@verbum.org> - 2017.8-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-06-19 16:13:08 +00:00
|
|
|
* Mon Jun 19 2017 Colin Walters <walters@verbum.org> - 2017.7-2
|
|
|
|
- Update to new upstream
|
|
|
|
|
2017-06-02 20:48:53 +00:00
|
|
|
* Fri Jun 02 2017 Colin Walters <walters@verbum.org> - 2017.6-4
|
|
|
|
- Fix previous commit to actually work
|
|
|
|
|
2017-05-18 13:47:30 +00:00
|
|
|
* Thu May 18 2017 Colin Walters <walters@verbum.org> - 2017.6-3
|
|
|
|
- Enable curl+openssl on f27+
|
|
|
|
It has various advantages like HTTP2, plus now that NetworkManager
|
|
|
|
switched we are the last thing left in Fedora Atomic Host depending
|
|
|
|
on libsoup.
|
|
|
|
|
2017-05-17 21:49:02 +00:00
|
|
|
* Wed May 17 2017 Colin Walters <walters@verbum.org> - 2017.6-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-04-19 00:53:53 +00:00
|
|
|
* Wed Apr 19 2017 Colin Walters <walters@verbum.org> - 2017.5-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-04-12 19:19:30 +00:00
|
|
|
* Wed Apr 12 2017 Colin Walters <walters@verbum.org> - 2017.4-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-03-10 19:02:39 +00:00
|
|
|
* Fri Mar 10 2017 Colin Walters <walters@verbum.org> - 2017.3-2
|
|
|
|
- New upstream version
|
|
|
|
|
|
|
|
* Fri Mar 03 2017 Colin Walters <walters@redhat.com> - 2017.2-4
|
2017-03-03 15:34:53 +00:00
|
|
|
- Add patch for ppc64le grub2
|
|
|
|
|
2017-02-23 16:05:00 +00:00
|
|
|
* Thu Feb 23 2017 Colin Walters <walters@verbum.org> - 2017.2-3
|
|
|
|
- Backport libmount unref patch
|
|
|
|
|
2017-02-14 18:52:34 +00:00
|
|
|
* Tue Feb 14 2017 Colin Walters <walters@verbum.org> - 2017.2-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-02-11 01:06:04 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-02-07 20:38:33 +00:00
|
|
|
* Tue Feb 07 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.1-4
|
|
|
|
- Make ostree-grub2 require ostree
|
|
|
|
|
2017-02-07 18:23:03 +00:00
|
|
|
* Tue Feb 07 2017 Colin Walters <walters@verbum.org> - 2017.1-3
|
|
|
|
- Split off ostree-libs. This is the inverse of upstream
|
|
|
|
https://github.com/ostreedev/ostree/pull/659
|
|
|
|
but renaming the package would be hard for low immediate gain.
|
|
|
|
With this at least, flatpak could theoretically depend just on libostree.
|
|
|
|
And similarly for rpm-ostree compose tree (when that gets split out).
|
|
|
|
|
2017-01-23 21:25:38 +00:00
|
|
|
* Mon Jan 23 2017 Colin Walters <walters@verbum.org> - 2017.1-2
|
|
|
|
- New upstream version
|
|
|
|
|
2017-01-18 22:57:46 +00:00
|
|
|
* Wed Jan 18 2017 Colin Walters <walters@verbum.org> - 2016.15-2
|
|
|
|
- Enable libmount for /boot readonly
|
|
|
|
|
2016-12-12 17:57:59 +00:00
|
|
|
* Mon Dec 12 2016 walters@redhat.com - 2016.15-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-12-10 19:07:17 +00:00
|
|
|
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2016.14-3
|
|
|
|
- Rebuild for gpgme 1.18
|
|
|
|
|
2016-11-29 10:59:30 +00:00
|
|
|
* Tue Nov 29 2016 Kalev Lember <klember@redhat.com> - 2016.14-2
|
|
|
|
- Backport a patch to remove an accidental print statement
|
|
|
|
|
2016-11-23 17:02:22 +00:00
|
|
|
* Wed Nov 23 2016 walters@redhat.com - 2016.14-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-11-15 16:46:56 +00:00
|
|
|
* Tue Nov 15 2016 walters@redhat.com - 2016.13-2
|
|
|
|
- New upstream version
|
|
|
|
- Require glib-networking to fix https://pagure.io/pungi-fedora/pull-request/103
|
|
|
|
|
2016-10-23 21:53:31 +00:00
|
|
|
* Sun Oct 23 2016 walters@verbum.org - 2016.12-1
|
|
|
|
- New upstream release
|
|
|
|
|
2016-10-07 20:52:48 +00:00
|
|
|
* Fri Oct 07 2016 walters@redhat.com - 2016.11-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-09-20 21:41:02 +00:00
|
|
|
* Tue Sep 20 2016 walters@redhat.com - 2016.10-8
|
|
|
|
- Backport another patch for systemd journal
|
|
|
|
Resolves: #1265295
|
|
|
|
|
2016-09-16 12:39:25 +00:00
|
|
|
* Fri Sep 16 2016 walters@verbum.org - 2016.10-6
|
|
|
|
- Set --with-dracut=yesbutnoconf
|
|
|
|
Resolves: #1331369
|
|
|
|
|
2016-09-15 22:39:36 +00:00
|
|
|
* Thu Sep 15 2016 walters@verbum.org - 2016.10-4
|
2016-09-15 22:39:36 +00:00
|
|
|
- Backport patch to fix bug#1265295
|
|
|
|
|
2016-09-12 13:11:59 +00:00
|
|
|
* Mon Sep 12 2016 Kalev Lember <klember@redhat.com> - 2016.10-3
|
|
|
|
- pull: Do allow executing deltas when mirroring into bare{,-user}
|
|
|
|
|
2016-09-09 08:00:37 +00:00
|
|
|
* Fri Sep 09 2016 Kalev Lember <klember@redhat.com> - 2016.10-2
|
|
|
|
- Drop libgsystem dependency
|
|
|
|
|
2016-09-09 00:54:27 +00:00
|
|
|
* Thu Sep 08 2016 walters@redhat.com - 2016.10-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-08-31 19:11:44 +00:00
|
|
|
* Wed Aug 31 2016 Colin Walters <walters@verbum.org> - 2016.9-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-08-09 20:02:00 +00:00
|
|
|
* Tue Aug 09 2016 walters@redhat.com - 2016.8-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-08-09 00:39:12 +00:00
|
|
|
* Tue Aug 09 2016 Colin Walters <walters@verbum.org> - 2016.7-4
|
|
|
|
- Add pending patch to fix date-based pruning
|
|
|
|
|
2016-07-08 20:36:27 +00:00
|
|
|
* Fri Jul 08 2016 walters@redhat.com - 2016.7-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-06-20 17:26:45 +00:00
|
|
|
* Mon Jun 20 2016 Colin Walters <walters@redhat.com> - 2016.6-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-05-08 11:17:07 +00:00
|
|
|
* Sun May 8 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.5-3
|
|
|
|
- aarch64 only has grub2-efi
|
|
|
|
- Use %%license
|
|
|
|
|
2016-04-15 18:52:44 +00:00
|
|
|
* Fri Apr 15 2016 Colin Walters <walters@redhat.com> - 2016.5-2
|
|
|
|
- New upstream version
|
|
|
|
|
2016-03-23 20:03:07 +00:00
|
|
|
* Wed Mar 23 2016 Colin Walters <walters@redhat.com> - 2016.4-2
|
|
|
|
- New upstream version
|
|
|
|
|
2016-02-26 17:38:02 +00:00
|
|
|
* Fri Feb 26 2016 Colin Walters <walters@redhat.com> - 2016.3-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-02-23 00:56:10 +00:00
|
|
|
* Tue Feb 23 2016 Colin Walters <walters@redhat.com> - 2016.2-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-02-04 11:45:00 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2016.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-12 14:09:00 +00:00
|
|
|
* Tue Jan 12 2016 Colin Walters <walters@redhat.com> - 2016.1-2
|
|
|
|
- New upstream version
|
|
|
|
|
2015-12-04 15:23:59 +00:00
|
|
|
* Fri Dec 04 2015 Colin Walters <walters@redhat.com> - 2015.11-2
|
|
|
|
- New upstream version
|
|
|
|
|
2015-11-22 15:58:52 +00:00
|
|
|
* Sun Nov 22 2015 Colin Walters <walters@redhat.com> - 2015.10-1
|
2015-11-22 15:47:50 +00:00
|
|
|
- New upstream version
|
|
|
|
|
2015-11-16 15:29:11 +00:00
|
|
|
* Thu Nov 12 2015 Matthew Barnes <mbarnes@redhat.com> - 2015.9-3
|
|
|
|
- Add ostree-tmp-chmod.service to fix /tmp permissions on existing installs.
|
|
|
|
Resolves: #1276775
|
|
|
|
|
2015-10-30 21:14:08 +00:00
|
|
|
* Fri Oct 30 2015 Colin Walters <walters@redhat.com> - 2015.9-2
|
|
|
|
- Add patch to fix permissions of /tmp
|
|
|
|
Resolves: #1276775
|
|
|
|
|
2015-09-23 16:18:33 +00:00
|
|
|
* Wed Sep 23 2015 Colin Walters <walters@redhat.com> - 2015.9-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-08-26 21:53:24 +00:00
|
|
|
* Wed Aug 26 2015 Colin Walters <walters@redhat.com> - 2015.8-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-06-18 00:29:23 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2015.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-02 17:15:05 +00:00
|
|
|
* Tue Jun 02 2015 Colin Walters <walters@redhat.com> - 2015.7-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-05-28 23:56:33 +00:00
|
|
|
* Thu May 28 2015 Colin Walters <walters@redhat.com> - 2015.6-4
|
|
|
|
- Add patch to ensure reliable bootloader ordering
|
|
|
|
See: #1225088
|
|
|
|
|
2015-04-30 17:57:30 +00:00
|
|
|
* Thu Apr 30 2015 Colin Walters <walters@redhat.com> - 2015.6-3
|
|
|
|
- Close sysroot fd in finalize to fix Anaconda
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1217578
|
|
|
|
|
2015-04-17 18:47:23 +00:00
|
|
|
* Fri Apr 17 2015 Colin Walters <walters@redhat.com> - 2015.6-2
|
|
|
|
- New upstream release
|
|
|
|
|
2015-04-12 12:47:54 +00:00
|
|
|
* Sun Apr 12 2015 Colin Walters <walters@redhat.com> - 2015.5-4
|
|
|
|
- (Really) Handle null epoch as well; this was injected for https://github.com/cgwalters/rpmdistro-gitoverlay
|
|
|
|
|
2015-04-07 20:55:48 +00:00
|
|
|
* Tue Apr 07 2015 Colin Walters <walters@redhat.com> - 2015.5-2
|
|
|
|
- New upstream release
|
|
|
|
|
2015-03-30 11:00:14 +00:00
|
|
|
* Mon Mar 30 2015 Dan Horák <dan[at]danny.cz> - 2015.4-5
|
|
|
|
- ExcludeArch is a build restriction and is global, switching to %%ifnarch
|
|
|
|
|
2015-03-27 13:02:49 +00:00
|
|
|
* Fri Mar 27 2015 Colin Walters <walters@redhat.com> - 2015.4-4
|
|
|
|
- Have grub2 subpackage match ExcludeArch with grub2
|
|
|
|
|
2015-03-27 11:50:49 +00:00
|
|
|
* Fri Mar 27 2015 Colin Walters <walters@redhat.com> - 2015.4-3
|
|
|
|
- Handle null epoch as well; this was injected for https://github.com/cgwalters/rpmdistro-gitoverlay
|
|
|
|
|
2015-03-25 18:18:57 +00:00
|
|
|
* Wed Mar 25 2015 Colin Walters <walters@redhat.com> - 2015.4-2
|
|
|
|
- New upstream release
|
|
|
|
|
2015-02-16 18:14:15 +00:00
|
|
|
* Mon Feb 16 2015 Colin Walters <walters@redhat.com> - 2015.3-3
|
|
|
|
- Require latest libgsystem to ensure people have it
|
|
|
|
|
2015-01-23 21:50:08 +00:00
|
|
|
* Fri Jan 23 2015 Colin Walters <walters@redhat.com> - 2015.3-2
|
|
|
|
- New upstream release
|
|
|
|
|
2015-01-08 22:29:27 +00:00
|
|
|
* Thu Jan 08 2015 Colin Walters <walters@redhat.com> - 2015.2-1
|
2015-01-08 18:33:09 +00:00
|
|
|
- New upstream release
|
|
|
|
|
2015-01-04 01:52:09 +00:00
|
|
|
* Sun Jan 04 2015 Colin Walters <walters@redhat.com> - 2014.13-2
|
|
|
|
- Add patch to ensure correct xattrs on modified config files
|
|
|
|
Fixes: #1178208
|
|
|
|
|
2014-12-17 16:59:00 +00:00
|
|
|
* Wed Dec 17 2014 Colin Walters <walters@redhat.com> - 2014.13-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-11-26 16:57:54 +00:00
|
|
|
* Wed Nov 26 2014 Colin Walters <walters@redhat.com> - 2014.12-1
|
|
|
|
- New upstream version
|
|
|
|
|
2014-10-30 18:30:22 +00:00
|
|
|
* Thu Oct 30 2014 Colin Walters <walters@redhat.com> - 2014.11-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-10-29 22:00:17 +00:00
|
|
|
* Wed Oct 29 2014 Colin Walters <walters@redhat.com> - 2014.10.1.gedc3b9a-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-10-24 17:35:47 +00:00
|
|
|
* Fri Oct 24 2014 Colin Walters <walters@redhat.com> - 2014.9-2
|
|
|
|
- New upstream release
|
|
|
|
|
2014-10-16 22:19:11 +00:00
|
|
|
* Thu Oct 16 2014 Colin Walters <walters@redhat.com>
|
|
|
|
- New upstream release
|
|
|
|
|
2014-09-08 18:05:45 +00:00
|
|
|
* Mon Sep 08 2014 Colin Walters <walters@redhat.com> - 2014.6-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-08-17 14:23:03 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.5-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-22 18:17:33 +00:00
|
|
|
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 2014.5-4
|
|
|
|
- Rebuilt for gobject-introspection 1.41.4
|
|
|
|
|
2014-06-25 21:15:23 +00:00
|
|
|
* Wed Jun 25 2014 Colin Walters <walters@verbum.org>
|
|
|
|
- Rebuild to pick up new libsoup
|
|
|
|
|
2014-06-13 18:51:11 +00:00
|
|
|
* Fri Jun 13 2014 Colin Walters <walters@verbum.org> - 2014.4-2
|
|
|
|
- Include /etc/ostree, even though it is empty
|
|
|
|
|
2014-06-09 22:42:38 +00:00
|
|
|
* Mon Jun 09 2014 Colin Walters <walters@verbum.org> - 2014.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-06-07 17:30:13 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-13 17:58:57 +00:00
|
|
|
* Sun Apr 13 2014 Colin Walters <walters@verbum.org> - 2014.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-03-31 21:41:56 +00:00
|
|
|
* Mon Mar 31 2014 Colin Walters <walters@verbum.org>
|
|
|
|
- New git snapshot for rpm-ostree
|
|
|
|
|
2014-03-21 19:06:03 +00:00
|
|
|
* Fri Mar 21 2014 Colin Walters <walters@verbum.org> - 2014.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-03-14 18:28:54 +00:00
|
|
|
* Fri Mar 14 2014 Colin Walters <walters@verbum.org> - 2014.2-3
|
|
|
|
- Move trusted.gpg.d to main runtime package, where it should be
|
|
|
|
|
2014-03-07 12:47:27 +00:00
|
|
|
* Fri Mar 07 2014 Colin Walters <walters@verbum.org> - 2014.2-2
|
|
|
|
- Depend on gpgv2
|
|
|
|
- Resolves: #1073813
|
|
|
|
|
2014-03-01 20:16:19 +00:00
|
|
|
* Sat Mar 01 2014 Colin Walters <walters@verbum.org> - 2014.2-1
|
|
|
|
- New upstream release
|
|
|
|
- Depend on libselinux
|
|
|
|
- Explicitly depend on libarchive too, we were actually failing
|
|
|
|
to disable it before
|
|
|
|
|
2014-01-24 06:47:34 +00:00
|
|
|
* Fri Jan 24 2014 Colin Walters <walters@verbum.org> - 2014.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-01-14 15:38:43 +00:00
|
|
|
* Mon Jan 13 2014 Colin Walters <walters@verbum.org> - 2013.7-2
|
|
|
|
- Add preset file so ostree-remount is enabled by default, since
|
|
|
|
it needs to be.
|
|
|
|
|
2013-10-15 21:27:10 +00:00
|
|
|
* Tue Oct 15 2013 Colin Walters <walters@verbum.org> - 2013.7-1
|
|
|
|
- New upstream release
|
|
|
|
- Now LGPLv2+ only
|
|
|
|
- Enable libarchive since it might be useful for people
|
|
|
|
- Enable new gpgme dependency
|
|
|
|
|
2013-09-12 18:21:27 +00:00
|
|
|
* Thu Sep 12 2013 Colin Walters <walters@verbum.org> - 2013.6-3
|
|
|
|
- Enable introspection
|
|
|
|
|
2013-09-10 02:17:52 +00:00
|
|
|
* Mon Sep 09 2013 Colin Walters <walters@verbum.org> - 2013.6-2
|
|
|
|
- Tweak description
|
|
|
|
|
2013-09-10 02:14:23 +00:00
|
|
|
* Mon Sep 09 2013 Colin Walters <walters@verbum.org> - 2013.6-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-08-26 02:46:25 +00:00
|
|
|
* Sat Aug 25 2013 Colin Walters <walters@verbum.org> - 2013.5-3
|
|
|
|
- And actually while we are here, drop all the embedded dependency
|
|
|
|
goop from this spec file; it may live on in the EPEL branch.
|
|
|
|
|
2013-08-25 20:56:30 +00:00
|
|
|
* Sat Aug 25 2013 Colin Walters <walters@verbum.org> - 2013.5-2
|
|
|
|
- Drop requirement on linux-user-chroot
|
|
|
|
We now require triggers to be processed on the build server
|
|
|
|
by default, so ostree does not runtime-depend on linux-user-chroot.
|
|
|
|
|
2013-08-17 22:05:33 +00:00
|
|
|
* Sat Aug 17 2013 Colin Walters <walters@verbum.org> - 2013.5-1
|
|
|
|
- New upstream release
|
|
|
|
- Add devel package
|
|
|
|
|
2013-08-03 16:08:22 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-17 00:54:25 +00:00
|
|
|
* Tue Jul 16 2013 Colin Walters <walters@verbum.org> - 2013.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-07-08 01:51:28 +00:00
|
|
|
* Sun Jul 07 2013 Colin Walters <walters@verbum.org> - 2013.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-04-02 13:18:41 +00:00
|
|
|
* Mon Apr 01 2013 Colin Walters <walters@verbum.org> - 2013.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-02-14 09:37:44 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-23 22:54:25 +00:00
|
|
|
* Sun Dec 23 2012 Colin Walters <walters@verbum.org> - 2012.13-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-12-18 17:06:21 +00:00
|
|
|
* Tue Dec 18 2012 Colin Walters <walters@verbum.org> - 2012.12-2
|
|
|
|
- Explicitly enable grub2 hook; otherwise we pick up whatever
|
|
|
|
the buildroot has, which is not what we want.
|
2012-11-19 21:05:28 +00:00
|
|
|
|
|
|
|
* Mon Nov 19 2012 Colin Walters <walters@verbum.org> - 2012.12-1
|
|
|
|
- Initial import; thanks to Michel Alexandre Salim for review
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=819951
|
|
|
|
|