virtbuilder_pel7ppc64bebuilder0
6 years ago
4 changed files with 726 additions and 0 deletions
@ -0,0 +1,37 @@
@@ -0,0 +1,37 @@
|
||||
From c79d792fd583e92750bdaabcbc9275866bda9976 Mon Sep 17 00:00:00 2001 |
||||
From: Colin Walters <walters@verbum.org> |
||||
Date: Wed, 16 Jan 2019 08:30:53 -0500 |
||||
Subject: [PATCH 1/2] =?UTF-8?q?lib/commit:=20Fix=20bare=20=E2=86=92=20bare?= |
||||
=?UTF-8?q?=20imports?= |
||||
MIME-Version: 1.0 |
||||
Content-Type: text/plain; charset=UTF-8 |
||||
Content-Transfer-Encoding: 8bit |
||||
|
||||
Regression from https://github.com/ostreedev/ostree/pull/1771 |
||||
|
||||
This broke rpmostreepayload in Anaconda where we import a bare repo: |
||||
https://openqa.fedoraproject.org/tests/345339#step/_do_install_and_reboot/4 |
||||
|
||||
Reported-by: Adam Williamson <adamwill@fedoraproject.org> |
||||
|
||||
Closes: #1803 |
||||
Approved by: jlebon |
||||
--- |
||||
src/libostree/ostree-repo-commit.c | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git a/src/libostree/ostree-repo-commit.c b/src/libostree/ostree-repo-commit.c |
||||
index 533cf03a..c95e0b61 100644 |
||||
--- a/src/libostree/ostree-repo-commit.c |
||||
+++ b/src/libostree/ostree-repo-commit.c |
||||
@@ -4269,7 +4269,7 @@ import_one_object_direct (OstreeRepo *dest_repo, |
||||
G_IN_SET (src_repo->mode, OSTREE_REPO_MODE_BARE, OSTREE_REPO_MODE_BARE_USER); |
||||
if (src_is_bare_or_bare_user && !OSTREE_OBJECT_TYPE_IS_META(objtype)) |
||||
{ |
||||
- if (src_repo == OSTREE_REPO_MODE_BARE) |
||||
+ if (src_repo->mode == OSTREE_REPO_MODE_BARE) |
||||
{ |
||||
g_autoptr(GVariant) xattrs = NULL; |
||||
if (!glnx_fd_get_all_xattrs (src_fd, &xattrs, |
||||
-- |
||||
2.20.1 |
@ -0,0 +1,40 @@
@@ -0,0 +1,40 @@
|
||||
From 2ccf36ae3ded1da48dd659d46a4ccabdee0e0775 Mon Sep 17 00:00:00 2001 |
||||
From: Colin Walters <walters@verbum.org> |
||||
Date: Fri, 4 Jan 2019 15:44:56 +0000 |
||||
Subject: [PATCH] sysroot: Remove immutable bit from /etc/sysconfig/nfs |
||||
|
||||
Work around for https://src.fedoraproject.org/rpms/nfs-utils/pull-request/7 |
||||
Currently Fedora-only. |
||||
--- |
||||
src/libostree/ostree-sysroot-cleanup.c | 16 ++++++++++++++++ |
||||
1 file changed, 16 insertions(+) |
||||
|
||||
diff --git a/src/libostree/ostree-sysroot-cleanup.c b/src/libostree/ostree-sysroot-cleanup.c |
||||
index 7a352e6b..b8ec9970 100644 |
||||
--- a/src/libostree/ostree-sysroot-cleanup.c |
||||
+++ b/src/libostree/ostree-sysroot-cleanup.c |
||||
@@ -271,6 +271,22 @@ _ostree_sysroot_rmrf_deployment (OstreeSysroot *self, |
||||
return FALSE; |
||||
if (!glnx_shutil_rm_rf_at (self->sysroot_fd, origin_relpath, cancellable, error)) |
||||
return FALSE; |
||||
+ |
||||
+ /* Special hack for Fedora's NFS package which is abusing the immutable bit |
||||
+ * https://src.fedoraproject.org/rpms/nfs-utils/pull-request/7 |
||||
+ */ |
||||
+ { |
||||
+ glnx_autofd int nfs_sysconfig_fd = -1; |
||||
+ if (!ot_openat_ignore_enoent (deployment_fd, "etc/sysconfig/nfs", &nfs_sysconfig_fd, error)) |
||||
+ return FALSE; |
||||
+ if (nfs_sysconfig_fd != -1) |
||||
+ { |
||||
+ if (!_ostree_linuxfs_fd_alter_immutable_flag (nfs_sysconfig_fd, FALSE, |
||||
+ cancellable, error)) |
||||
+ return FALSE; |
||||
+ } |
||||
+ } |
||||
+ |
||||
if (!glnx_shutil_rm_rf_at (self->sysroot_fd, deployment_path, cancellable, error)) |
||||
return FALSE; |
||||
|
||||
-- |
||||
2.19.2 |
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
From c63ee3cef4fc77f995999035bcc57833653a94b0 Mon Sep 17 00:00:00 2001 |
||||
From: Colin Walters <walters@verbum.org> |
||||
Date: Wed, 16 Jan 2019 08:36:55 -0500 |
||||
Subject: [PATCH 2/2] =?UTF-8?q?lib/commit:=20Set=20xattr=20on=20correct=20?= |
||||
=?UTF-8?q?fd=20for=20bare-user=20=E2=86=92=20bare-user=20imports?= |
||||
MIME-Version: 1.0 |
||||
Content-Type: text/plain; charset=UTF-8 |
||||
Content-Transfer-Encoding: 8bit |
||||
|
||||
Another fix to https://github.com/ostreedev/ostree/pull/1771 |
||||
|
||||
Closes: #1803 |
||||
Approved by: jlebon |
||||
--- |
||||
src/libostree/ostree-repo-commit.c | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git a/src/libostree/ostree-repo-commit.c b/src/libostree/ostree-repo-commit.c |
||||
index c95e0b61..dfdd4853 100644 |
||||
--- a/src/libostree/ostree-repo-commit.c |
||||
+++ b/src/libostree/ostree-repo-commit.c |
||||
@@ -4287,7 +4287,7 @@ import_one_object_direct (OstreeRepo *dest_repo, |
||||
if (bytes == NULL) |
||||
return FALSE; |
||||
|
||||
- if (TEMP_FAILURE_RETRY (fsetxattr (src_fd, "user.ostreemeta", |
||||
+ if (TEMP_FAILURE_RETRY (fsetxattr (tmp_dest.fd, "user.ostreemeta", |
||||
(char*)g_bytes_get_data (bytes, NULL), |
||||
g_bytes_get_size (bytes), 0)) != 0) |
||||
return glnx_throw_errno_prefix (error, "fsetxattr"); |
||||
-- |
||||
2.20.1 |
@ -0,0 +1,617 @@
@@ -0,0 +1,617 @@
|
||||
# Don't ship tests on RHEL > 7. |
||||
%if 0%{?rhel} > 7 |
||||
%bcond_with tests |
||||
%else |
||||
%bcond_without tests |
||||
%endif |
||||
|
||||
Summary: Tool for managing bootable, immutable filesystem trees |
||||
Name: ostree |
||||
Version: 2019.1 |
||||
Release: 5%{?dist} |
||||
Source0: https://github.com/ostreedev/%{name}/releases/download/v%{version}/libostree-%{version}.tar.xz |
||||
License: LGPLv2+ |
||||
URL: https://ostree.readthedocs.io/en/latest/ |
||||
|
||||
# Work around https://src.fedoraproject.org/rpms/nfs-utils/pull-request/7 |
||||
Patch0: 0001-sysroot-Remove-immutable-bit-from-etc-sysconfig-nfs.patch |
||||
Patch1: 0001-lib-commit-Fix-bare-bare-imports.patch |
||||
Patch2: 0002-lib-commit-Set-xattr-on-correct-fd-for-bare-user-bar.patch |
||||
|
||||
BuildRequires: git |
||||
# We always run autogen.sh |
||||
BuildRequires: autoconf automake libtool |
||||
# For docs |
||||
BuildRequires: gtk-doc |
||||
# Core requirements |
||||
BuildRequires: pkgconfig(zlib) |
||||
BuildRequires: pkgconfig(libcurl) |
||||
BuildRequires: openssl-devel |
||||
# The tests still require soup |
||||
BuildRequires: pkgconfig(libsoup-2.4) |
||||
BuildRequires: libattr-devel |
||||
# Extras |
||||
BuildRequires: pkgconfig(libarchive) |
||||
BuildRequires: pkgconfig(liblzma) |
||||
BuildRequires: pkgconfig(libselinux) |
||||
BuildRequires: pkgconfig(mount) |
||||
BuildRequires: pkgconfig(fuse) |
||||
BuildRequires: pkgconfig(e2p) |
||||
BuildRequires: libcap-devel |
||||
BuildRequires: gpgme-devel |
||||
BuildRequires: pkgconfig(libsystemd) |
||||
BuildRequires: /usr/bin/g-ir-scanner |
||||
BuildRequires: dracut |
||||
BuildRequires: bison |
||||
|
||||
# Runtime requirements |
||||
Requires: dracut |
||||
Requires: /usr/bin/gpgv2 |
||||
Requires: systemd-units |
||||
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} |
||||
|
||||
%description |
||||
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. |
||||
|
||||
%package libs |
||||
Summary: Development headers for %{name} |
||||
|
||||
%description libs |
||||
The %{name}-libs provides shared libraries for %{name}. |
||||
|
||||
%package devel |
||||
Summary: Development headers for %{name} |
||||
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} |
||||
|
||||
%description devel |
||||
The %{name}-devel package includes the header files for the %{name} library. |
||||
|
||||
%ifnarch s390 s390x |
||||
%package grub2 |
||||
Summary: GRUB2 integration for OSTree |
||||
%ifnarch aarch64 %{arm} |
||||
Requires: grub2 |
||||
%else |
||||
Requires: grub2-efi |
||||
%endif |
||||
Requires: ostree |
||||
|
||||
%description grub2 |
||||
GRUB2 integration for OSTree |
||||
%endif |
||||
|
||||
%if %{with tests} |
||||
%package tests |
||||
Summary: Tests for the %{name} package |
||||
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} |
||||
Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} |
||||
|
||||
%description tests |
||||
This package contains tests that can be used to verify |
||||
the functionality of the installed %{name} package. |
||||
%endif |
||||
|
||||
%prep |
||||
%autosetup -Sgit -n libostree-%{version} |
||||
|
||||
%build |
||||
env NOCONFIGURE=1 ./autogen.sh |
||||
%configure --disable-silent-rules \ |
||||
--enable-gtk-doc \ |
||||
--with-selinux \ |
||||
--with-curl \ |
||||
--with-openssl \ |
||||
%{?with_tests:--enable-installed-tests=exclusive} \ |
||||
--with-dracut=yesbutnoconf |
||||
%make_build |
||||
|
||||
%install |
||||
%make_install INSTALL="install -p -c" |
||||
find %{buildroot} -name '*.la' -delete |
||||
|
||||
# Needed to enable the service at compose time currently |
||||
%post |
||||
%systemd_post ostree-remount.service |
||||
|
||||
%preun |
||||
%systemd_preun ostree-remount.service |
||||
|
||||
%files |
||||
%{!?_licensedir:%global license %%doc} |
||||
%license COPYING |
||||
%doc README.md |
||||
%{_bindir}/ostree |
||||
%{_bindir}/rofiles-fuse |
||||
%{_datadir}/ostree |
||||
%{_datadir}/bash-completion/completions/* |
||||
%dir %{_prefix}/lib/dracut/modules.d/98ostree |
||||
%{_prefix}/lib/systemd/system/ostree*.* |
||||
%{_prefix}/lib/dracut/modules.d/98ostree/* |
||||
%{_mandir}/man*/*.gz |
||||
%{_prefix}/lib/systemd/system-generators/ostree-system-generator |
||||
%exclude %{_sysconfdir}/grub.d/*ostree |
||||
%exclude %{_libexecdir}/libostree/grub2* |
||||
%exclude %{_libexecdir}/libostree/ostree-trivial-httpd |
||||
%{_prefix}/lib/tmpfiles.d/* |
||||
%{_prefix}/lib/ostree |
||||
# Moved in git master |
||||
%{_libexecdir}/libostree/* |
||||
|
||||
%files libs |
||||
%{_sysconfdir}/ostree |
||||
%{_libdir}/*.so.1* |
||||
%{_libdir}/girepository-1.0/OSTree-1.0.typelib |
||||
|
||||
%files devel |
||||
%{_libdir}/lib*.so |
||||
%{_includedir}/* |
||||
%{_libdir}/pkgconfig/* |
||||
%dir %{_datadir}/gtk-doc/html/ostree |
||||
%{_datadir}/gtk-doc/html/ostree |
||||
%{_datadir}/gir-1.0/OSTree-1.0.gir |
||||
|
||||
%ifnarch s390 s390x |
||||
%files grub2 |
||||
%{_sysconfdir}/grub.d/*ostree |
||||
%dir %{_libexecdir}/libostree |
||||
%{_libexecdir}/libostree/grub2* |
||||
%endif |
||||
|
||||
%if %{with tests} |
||||
%files tests |
||||
%{_libexecdir}/installed-tests |
||||
%{_datadir}/installed-tests |
||||
%{_libexecdir}/libostree/ostree-trivial-httpd |
||||
%endif |
||||
|
||||
%changelog |
||||
* Sat Feb 09 2019 Dusty Mabe <dusty@dustymabe.com> - 2019.1-5 |
||||
- Re-enable http2 in ostree build |
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.1-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||
|
||||
* 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 |
||||
|
||||
* Fri Jan 11 2019 Colin Walters <walters@verbum.org> - 2019.1-2 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2019.1 |
||||
|
||||
* Fri Jan 11 2019 Colin Walters <walters@verbum.org> - 2018.9-2 |
||||
- Work around https://src.fedoraproject.org/rpms/nfs-utils/pull-request/7 |
||||
|
||||
* Thu Oct 25 2018 Colin Walters <walters@verbum.org> - 2018.9-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.9 |
||||
|
||||
* Wed Oct 17 2018 Jonathan Lebon <jonathan@jlebon.com> |
||||
- Add conditional for tests and disable by default on RHEL > 7 |
||||
|
||||
* Wed Aug 22 2018 Colin Walters <walters@verbum.org> - 2018.8-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.8 |
||||
|
||||
* Sun Aug 12 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2018.7-2 |
||||
- Enable grub2 support on ARMv7 |
||||
|
||||
* Fri Jul 20 2018 Colin Walters <walters@verbum.org> - 2018.7-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.7 |
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.6-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* 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 |
||||
|
||||
* Thu Jun 21 2018 Colin Walters <walters@redhat.com> - 2018.6-3 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.6 |
||||
|
||||
* Fri May 11 2018 Colin Walters <walters@verbum.org> - 2018.5-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.5 |
||||
|
||||
* Tue Apr 03 2018 Kalev Lember <klember@redhat.com> - 2018.3-2 |
||||
- Backport a patch to avoid writing to parent repo |
||||
|
||||
* Wed Mar 21 2018 Colin Walters <walters@verbum.org> - 2018.3-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.3 |
||||
|
||||
* 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 |
||||
|
||||
* Thu Feb 15 2018 Colin Walters <walters@verbum.org> - 2018.2-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.2 |
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.1-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Mon Jan 15 2018 Colin Walters <walters@verbum.org> - 2018.1-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2018.1 |
||||
|
||||
* 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 |
||||
|
||||
* Mon Dec 18 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.14-2 |
||||
- Backport patch to drop HTTP2 |
||||
|
||||
* Mon Dec 04 2017 Colin Walters <walters@verbum.org> - 2017.14-1 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2017.14 |
||||
- Update description |
||||
|
||||
* Mon Nov 27 2017 Colin Walters <walters@verbum.org> - 2017.13-4 |
||||
- Backport patch to drop curl low speed checks; requested by flatpak |
||||
|
||||
* 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) |
||||
|
||||
* Thu Nov 02 2017 Colin Walters <walters@verbum.org> - 2017.13-2 |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2017.13 |
||||
|
||||
* Tue Oct 03 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.12-2 |
||||
- Let tests subpackage own ostree-trivial-httpd |
||||
|
||||
* Mon Oct 02 2017 Colin Walters <walters@verbum.org> - 2017.12-1 |
||||
- New upstream version |
||||
- https://github.com/ostreedev/ostree/releases/tag/v2017.12 |
||||
|
||||
* 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 |
||||
|
||||
* Tue Aug 22 2017 Ville Skyttä <ville.skytta@iki.fi> - 2017.10-3 |
||||
- Own the %%{_libexecdir}/libostree dir |
||||
|
||||
* Thu Aug 17 2017 Colin Walters <walters@verbum.org> - 2017.10-2 |
||||
- New upstream version |
||||
|
||||
* Sat Aug 12 2017 Ville Skyttä <ville.skytta@iki.fi> - 2017.9-5 |
||||
- Own the %%{_datadir}/ostree dir |
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.9-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
||||
|
||||
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 2017.9-3 |
||||
- Rebuild with binutils fix for ppc64le (#1475636) |
||||
|
||||
* Thu Jul 27 2017 Colin Walters <walters@verbum.org> - 2017.9-2 |
||||
- New upstream version |
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.8-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* 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. |
||||
|
||||
* Thu Jul 06 2017 Colin Walters <walters@verbum.org> - 2017.8-2 |
||||
- New upstream version |
||||
|
||||
* Mon Jun 19 2017 Colin Walters <walters@verbum.org> - 2017.7-2 |
||||
- Update to new upstream |
||||
|
||||
* Fri Jun 02 2017 Colin Walters <walters@verbum.org> - 2017.6-4 |
||||
- Fix previous commit to actually work |
||||
|
||||
* 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. |
||||
|
||||
* Wed May 17 2017 Colin Walters <walters@verbum.org> - 2017.6-2 |
||||
- New upstream version |
||||
|
||||
* Wed Apr 19 2017 Colin Walters <walters@verbum.org> - 2017.5-2 |
||||
- New upstream version |
||||
|
||||
* Wed Apr 12 2017 Colin Walters <walters@verbum.org> - 2017.4-2 |
||||
- New upstream version |
||||
|
||||
* 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 |
||||
- Add patch for ppc64le grub2 |
||||
|
||||
* Thu Feb 23 2017 Colin Walters <walters@verbum.org> - 2017.2-3 |
||||
- Backport libmount unref patch |
||||
|
||||
* Tue Feb 14 2017 Colin Walters <walters@verbum.org> - 2017.2-2 |
||||
- New upstream version |
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.1-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Tue Feb 07 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.1-4 |
||||
- Make ostree-grub2 require ostree |
||||
|
||||
* 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). |
||||
|
||||
* Mon Jan 23 2017 Colin Walters <walters@verbum.org> - 2017.1-2 |
||||
- New upstream version |
||||
|
||||
* Wed Jan 18 2017 Colin Walters <walters@verbum.org> - 2016.15-2 |
||||
- Enable libmount for /boot readonly |
||||
|
||||
* Mon Dec 12 2016 walters@redhat.com - 2016.15-1 |
||||
- New upstream version |
||||
|
||||
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2016.14-3 |
||||
- Rebuild for gpgme 1.18 |
||||
|
||||
* Tue Nov 29 2016 Kalev Lember <klember@redhat.com> - 2016.14-2 |
||||
- Backport a patch to remove an accidental print statement |
||||
|
||||
* Wed Nov 23 2016 walters@redhat.com - 2016.14-1 |
||||
- New upstream version |
||||
|
||||
* 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 |
||||
|
||||
* Sun Oct 23 2016 walters@verbum.org - 2016.12-1 |
||||
- New upstream release |
||||
|
||||
* Fri Oct 07 2016 walters@redhat.com - 2016.11-1 |
||||
- New upstream version |
||||
|
||||
* Tue Sep 20 2016 walters@redhat.com - 2016.10-8 |
||||
- Backport another patch for systemd journal |
||||
Resolves: #1265295 |
||||
|
||||
* Fri Sep 16 2016 walters@verbum.org - 2016.10-6 |
||||
- Set --with-dracut=yesbutnoconf |
||||
Resolves: #1331369 |
||||
|
||||
* Thu Sep 15 2016 walters@verbum.org - 2016.10-4 |
||||
- Backport patch to fix bug#1265295 |
||||
|
||||
* Mon Sep 12 2016 Kalev Lember <klember@redhat.com> - 2016.10-3 |
||||
- pull: Do allow executing deltas when mirroring into bare{,-user} |
||||
|
||||
* Fri Sep 09 2016 Kalev Lember <klember@redhat.com> - 2016.10-2 |
||||
- Drop libgsystem dependency |
||||
|
||||
* Thu Sep 08 2016 walters@redhat.com - 2016.10-1 |
||||
- New upstream version |
||||
|
||||
* Wed Aug 31 2016 Colin Walters <walters@verbum.org> - 2016.9-1 |
||||
- New upstream version |
||||
|
||||
* Tue Aug 09 2016 walters@redhat.com - 2016.8-1 |
||||
- New upstream version |
||||
|
||||
* Tue Aug 09 2016 Colin Walters <walters@verbum.org> - 2016.7-4 |
||||
- Add pending patch to fix date-based pruning |
||||
|
||||
* Fri Jul 08 2016 walters@redhat.com - 2016.7-1 |
||||
- New upstream version |
||||
|
||||
* Mon Jun 20 2016 Colin Walters <walters@redhat.com> - 2016.6-1 |
||||
- New upstream version |
||||
|
||||
* Sun May 8 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.5-3 |
||||
- aarch64 only has grub2-efi |
||||
- Use %%license |
||||
|
||||
* Fri Apr 15 2016 Colin Walters <walters@redhat.com> - 2016.5-2 |
||||
- New upstream version |
||||
|
||||
* Wed Mar 23 2016 Colin Walters <walters@redhat.com> - 2016.4-2 |
||||
- New upstream version |
||||
|
||||
* Fri Feb 26 2016 Colin Walters <walters@redhat.com> - 2016.3-1 |
||||
- New upstream version |
||||
|
||||
* Tue Feb 23 2016 Colin Walters <walters@redhat.com> - 2016.2-1 |
||||
- New upstream version |
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2016.1-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Tue Jan 12 2016 Colin Walters <walters@redhat.com> - 2016.1-2 |
||||
- New upstream version |
||||
|
||||
* Fri Dec 04 2015 Colin Walters <walters@redhat.com> - 2015.11-2 |
||||
- New upstream version |
||||
|
||||
* Sun Nov 22 2015 Colin Walters <walters@redhat.com> - 2015.10-1 |
||||
- New upstream version |
||||
|
||||
* 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 |
||||
|
||||
* Fri Oct 30 2015 Colin Walters <walters@redhat.com> - 2015.9-2 |
||||
- Add patch to fix permissions of /tmp |
||||
Resolves: #1276775 |
||||
|
||||
* Wed Sep 23 2015 Colin Walters <walters@redhat.com> - 2015.9-1 |
||||
- New upstream version |
||||
|
||||
* Wed Aug 26 2015 Colin Walters <walters@redhat.com> - 2015.8-1 |
||||
- New upstream version |
||||
|
||||
* 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 |
||||
|
||||
* Tue Jun 02 2015 Colin Walters <walters@redhat.com> - 2015.7-1 |
||||
- New upstream version |
||||
|
||||
* Thu May 28 2015 Colin Walters <walters@redhat.com> - 2015.6-4 |
||||
- Add patch to ensure reliable bootloader ordering |
||||
See: #1225088 |
||||
|
||||
* 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 |
||||
|
||||
* Fri Apr 17 2015 Colin Walters <walters@redhat.com> - 2015.6-2 |
||||
- New upstream release |
||||
|
||||
* 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 |
||||
|
||||
* Tue Apr 07 2015 Colin Walters <walters@redhat.com> - 2015.5-2 |
||||
- New upstream release |
||||
|
||||
* 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 |
||||
|
||||
* Fri Mar 27 2015 Colin Walters <walters@redhat.com> - 2015.4-4 |
||||
- Have grub2 subpackage match ExcludeArch with grub2 |
||||
|
||||
* 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 |
||||
|
||||
* Wed Mar 25 2015 Colin Walters <walters@redhat.com> - 2015.4-2 |
||||
- New upstream release |
||||
|
||||
* Mon Feb 16 2015 Colin Walters <walters@redhat.com> - 2015.3-3 |
||||
- Require latest libgsystem to ensure people have it |
||||
|
||||
* Fri Jan 23 2015 Colin Walters <walters@redhat.com> - 2015.3-2 |
||||
- New upstream release |
||||
|
||||
* Thu Jan 08 2015 Colin Walters <walters@redhat.com> - 2015.2-1 |
||||
- New upstream release |
||||
|
||||
* Sun Jan 04 2015 Colin Walters <walters@redhat.com> - 2014.13-2 |
||||
- Add patch to ensure correct xattrs on modified config files |
||||
Fixes: #1178208 |
||||
|
||||
* Wed Dec 17 2014 Colin Walters <walters@redhat.com> - 2014.13-1 |
||||
- New upstream release |
||||
|
||||
* Wed Nov 26 2014 Colin Walters <walters@redhat.com> - 2014.12-1 |
||||
- New upstream version |
||||
|
||||
* Thu Oct 30 2014 Colin Walters <walters@redhat.com> - 2014.11-1 |
||||
- New upstream release |
||||
|
||||
* Wed Oct 29 2014 Colin Walters <walters@redhat.com> - 2014.10.1.gedc3b9a-1 |
||||
- New upstream release |
||||
|
||||
* Fri Oct 24 2014 Colin Walters <walters@redhat.com> - 2014.9-2 |
||||
- New upstream release |
||||
|
||||
* Thu Oct 16 2014 Colin Walters <walters@redhat.com> |
||||
- New upstream release |
||||
|
||||
* Mon Sep 08 2014 Colin Walters <walters@redhat.com> - 2014.6-1 |
||||
- New upstream release |
||||
|
||||
* 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 |
||||
|
||||
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 2014.5-4 |
||||
- Rebuilt for gobject-introspection 1.41.4 |
||||
|
||||
* Wed Jun 25 2014 Colin Walters <walters@verbum.org> |
||||
- Rebuild to pick up new libsoup |
||||
|
||||
* Fri Jun 13 2014 Colin Walters <walters@verbum.org> - 2014.4-2 |
||||
- Include /etc/ostree, even though it is empty |
||||
|
||||
* Mon Jun 09 2014 Colin Walters <walters@verbum.org> - 2014.4-1 |
||||
- New upstream release |
||||
|
||||
* 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 |
||||
|
||||
* Sun Apr 13 2014 Colin Walters <walters@verbum.org> - 2014.4-1 |
||||
- New upstream release |
||||
|
||||
* Mon Mar 31 2014 Colin Walters <walters@verbum.org> |
||||
- New git snapshot for rpm-ostree |
||||
|
||||
* Fri Mar 21 2014 Colin Walters <walters@verbum.org> - 2014.3-1 |
||||
- New upstream release |
||||
|
||||
* Fri Mar 14 2014 Colin Walters <walters@verbum.org> - 2014.2-3 |
||||
- Move trusted.gpg.d to main runtime package, where it should be |
||||
|
||||
* Fri Mar 07 2014 Colin Walters <walters@verbum.org> - 2014.2-2 |
||||
- Depend on gpgv2 |
||||
- Resolves: #1073813 |
||||
|
||||
* 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 |
||||
|
||||
* Fri Jan 24 2014 Colin Walters <walters@verbum.org> - 2014.1-1 |
||||
- New upstream release |
||||
|
||||
* 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. |
||||
|
||||
* 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 |
||||
|
||||
* Thu Sep 12 2013 Colin Walters <walters@verbum.org> - 2013.6-3 |
||||
- Enable introspection |
||||
|
||||
* Mon Sep 09 2013 Colin Walters <walters@verbum.org> - 2013.6-2 |
||||
- Tweak description |
||||
|
||||
* Mon Sep 09 2013 Colin Walters <walters@verbum.org> - 2013.6-1 |
||||
- New upstream release |
||||
|
||||
* 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. |
||||
|
||||
* 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. |
||||
|
||||
* Sat Aug 17 2013 Colin Walters <walters@verbum.org> - 2013.5-1 |
||||
- New upstream release |
||||
- Add devel package |
||||
|
||||
* 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 |
||||
|
||||
* Tue Jul 16 2013 Colin Walters <walters@verbum.org> - 2013.4-1 |
||||
- New upstream release |
||||
|
||||
* Sun Jul 07 2013 Colin Walters <walters@verbum.org> - 2013.3-1 |
||||
- New upstream release |
||||
|
||||
* Mon Apr 01 2013 Colin Walters <walters@verbum.org> - 2013.1-1 |
||||
- New upstream release |
||||
|
||||
* 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 |
||||
|
||||
* Sun Dec 23 2012 Colin Walters <walters@verbum.org> - 2012.13-1 |
||||
- New upstream release |
||||
|
||||
* 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. |
||||
|
||||
* 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 |
Loading…
Reference in new issue