Blame SPECS/rpm-ostree.spec

073af0
# The canonical copy of this spec file is upstream at:
073af0
# https://github.com/projectatomic/rpm-ostree/blob/master/packaging/rpm-ostree.spec.in
073af0
cb59a0
Summary: Hybrid image/package system
cb59a0
Name: rpm-ostree
073af0
Version: 2019.6
073af0
Release: 8%{?dist}
cb59a0
#VCS: https://github.com/cgwalters/rpm-ostree
cb59a0
# This tarball is generated via "cd packaging && make -f Makefile.dist-packaging dist-snapshot"
cb59a0
# in the upstream git.  If rust is enabled, it contains vendored sources.
cb59a0
Source0: rpm-ostree-%{version}.tar.xz
cb59a0
License: LGPLv2+
cb59a0
URL: https://github.com/projectatomic/rpm-ostree
cb59a0
073af0
Patch0: 0001-app-status-Fix-printf-format-string-for-32-bit.patch
073af0
Patch1: 0001-unpacker-Build-with-older-libarchive-without-zstd.patch
073af0
Patch2: 0001-libpriv-kernel-Use-g_build_filename-instead-of-g_str.patch
073af0
Patch3: 0002-libpriv-kernel-Hack-around-vmlinuz-path-in-HMAC-file.patch
073af0
Patch4: 0001-libpriv-kernel-add-cap_mknod-to-dracut-run.patch
073af0
Patch5: 0001-kargs-Support-append-and-delete-simultaneously.patch
073af0
Patch6: 0001-status-Quote-initramfs-args-if-necessary.patch
073af0
Patch7: 0001-initramfs-Fix-using-local-etc-when-also-replacing-ke.patch 
073af0
3bb185
%if !%{defined rust_arches}
3bb185
# It's not defined yet in the base CentOS7 root
3bb185
%define rust_arches x86_64 i686 armv7hl aarch64 ppc64 ppc64le s390x
3bb185
%endif # defined rust_arches
3bb185
cb59a0
ExclusiveArch: %{rust_arches}
3bb185
3bb185
%if 0%{?fedora}
cb59a0
BuildRequires: cargo
377225
BuildRequires: rust
3bb185
%else
377225
# assume el8
3bb185
BuildRequires: rust-toolset
3bb185
%endif
cb59a0
cb59a0
# For the autofiles bits below
cb59a0
BuildRequires: /usr/bin/python3
cb59a0
# We always run autogen.sh
cb59a0
BuildRequires: autoconf automake libtool git
cb59a0
# For docs
cb59a0
BuildRequires: chrpath
cb59a0
BuildRequires: gtk-doc
cb59a0
BuildRequires: gperf
cb59a0
BuildRequires: gnome-common
cb59a0
BuildRequires: /usr/bin/g-ir-scanner
cb59a0
# Core requirements
377225
# One way to check this: `objdump -p /path/to/rpm-ostree | grep LIBOSTREE` and pick the highest (though that might miss e.g. new struct members)
073af0
BuildRequires: pkgconfig(ostree-1) >= 2019.2
cb59a0
BuildRequires: pkgconfig(polkit-gobject-1)
cb59a0
BuildRequires: pkgconfig(json-glib-1.0)
cb59a0
BuildRequires: pkgconfig(rpm)
cb59a0
BuildRequires: pkgconfig(libarchive)
cb59a0
BuildRequires: pkgconfig(libsystemd)
cb59a0
BuildRequires: libcap-devel
cb59a0
BuildRequires: libattr-devel
cb59a0
cb59a0
# We currently interact directly with librepo
cb59a0
BuildRequires: pkgconfig(librepo)
cb59a0
cb59a0
# Needed by curl-rust
cb59a0
BuildRequires: pkgconfig(libcurl)
cb59a0
cb59a0
# libdnf bundling
cb59a0
# We're using RPATH to pick up our bundled version
cb59a0
%global __requires_exclude ^libdnf[.]so[.].*$
cb59a0
377225
# Our bundled libdnf.so.2 is for us only
cb59a0
%global __provides_exclude_from ^%{_libdir}/%{name}/.*$
cb59a0
cb59a0
BuildRequires: cmake
cb59a0
BuildRequires: pkgconfig(expat)
cb59a0
BuildRequires: pkgconfig(check)
cb59a0
BuildRequires: pkgconfig(libsolv)
cb59a0
cb59a0
# We need g++ for libdnf
cb59a0
BuildRequires: gcc-c++
cb59a0
377225
377225
# more libdnf build deps (see libdnf's spec for versions)
377225
%global swig_version 3.0.12
377225
%global libmodulemd_version 1.6.1
377225
BuildRequires:  swig >= %{swig_version}
377225
BuildRequires:  pkgconfig(modulemd) >= %{libmodulemd_version}
377225
BuildRequires:  pkgconfig(json-c)
377225
BuildRequires:  pkgconfig(cppunit)
377225
BuildRequires:  pkgconfig(sqlite3)
377225
BuildRequires:  pkgconfig(smartcols)
377225
BuildRequires:  gpgme-devel
377225
073af0
Requires:       libmodulemd1%{?_isa} >= %{libmodulemd_version}
cb59a0
cb59a0
# For now...see https://github.com/projectatomic/rpm-ostree/pull/637
cb59a0
# and https://github.com/fedora-infra/fedmsg-atomic-composer/pull/17
cb59a0
# etc.  We'll drop this dependency at some point in the future when
cb59a0
# rpm-ostree wraps more of ostree (such as `ostree admin unlock` etc.)
cb59a0
Requires: ostree
cb59a0
Requires: bubblewrap
cb59a0
Requires: fuse
cb59a0
cb59a0
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
cb59a0
cb59a0
%description
cb59a0
rpm-ostree is a hybrid image/package system.  It supports
cb59a0
"composing" packages on a build server into an OSTree repository,
cb59a0
which can then be replicated by client systems with atomic upgrades.
cb59a0
Additionally, unlike many "pure" image systems, with rpm-ostree
cb59a0
each client system can layer on additional packages, providing
cb59a0
a "best of both worlds" approach.
cb59a0
cb59a0
%package libs
cb59a0
Summary: Shared library for rpm-ostree
cb59a0
cb59a0
%description libs
cb59a0
The %{name}-libs package includes the shared library for %{name}.
cb59a0
cb59a0
%package devel
cb59a0
Summary: Development headers for %{name}
cb59a0
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
cb59a0
cb59a0
%description devel
cb59a0
The %{name}-devel package includes the header files for %{name}-libs.
cb59a0
cb59a0
%prep
cb59a0
%autosetup -Sgit -n %{name}-%{version}
cb59a0
cb59a0
%build
3bb185
env NOCONFIGURE=1 ./autogen.sh
3bb185
%configure --disable-silent-rules --enable-gtk-doc
3bb185
make %{?_smp_mflags}
cb59a0
cb59a0
%install
3bb185
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p -c"
cb59a0
find $RPM_BUILD_ROOT -name '*.la' -delete
cb59a0
cb59a0
# I try to do continuous delivery via rpmdistro-gitoverlay while
cb59a0
# reusing the existing spec files.  Currently RPM only supports
cb59a0
# mandatory file entries.  What this is doing is making each file
cb59a0
# entry optional - if it exists it will be picked up.  That
cb59a0
# way the same spec file works more easily across multiple versions where e.g. an
cb59a0
# older version might not have a systemd unit file.
cb59a0
cat > autofiles.py <
cb59a0
import os,sys,glob
cb59a0
os.chdir(os.environ['RPM_BUILD_ROOT'])
cb59a0
for line in sys.argv[1:]:
cb59a0
    if line == '':
cb59a0
        break
cb59a0
    if line[0] != '/':
cb59a0
        sys.stdout.write(line + '\n')
cb59a0
    else:
cb59a0
        files = glob.glob(line[1:])
cb59a0
        if len(files) > 0:
cb59a0
            sys.stderr.write('{0} matched {1} files\n'.format(line, len(files)))
cb59a0
            sys.stdout.write(line + '\n')
cb59a0
        else:
cb59a0
            sys.stderr.write('{0} did not match any files\n'.format(line))
cb59a0
EOF
cb59a0
PYTHON=python3
cb59a0
if ! test -x /usr/bin/python3; then
cb59a0
    PYTHON=python2
cb59a0
fi
cb59a0
$PYTHON autofiles.py > files \
cb59a0
  '%{_bindir}/*' \
cb59a0
  '%{_libdir}/%{name}' \
cb59a0
  '%{_mandir}/man*/*' \
073af0
  '%{_datadir}/dbus-1/system.d/*' \
cb59a0
  '%{_sysconfdir}/rpm-ostreed.conf' \
cb59a0
  '%{_prefix}/lib/systemd/system/*' \
cb59a0
  '%{_libexecdir}/rpm-ostree*' \
cb59a0
  '%{_datadir}/polkit-1/actions/*.policy' \
377225
  '%{_datadir}/dbus-1/system-services' \
377225
  '%{_datadir}/bash-completion/completions/*'
cb59a0
cb59a0
$PYTHON autofiles.py > files.lib \
cb59a0
  '%{_libdir}/*.so.*' \
cb59a0
  '%{_libdir}/girepository-1.0/*.typelib'
cb59a0
cb59a0
$PYTHON autofiles.py > files.devel \
cb59a0
  '%{_libdir}/lib*.so' \
cb59a0
  '%{_includedir}/*' \
cb59a0
  '%{_datadir}/dbus-1/interfaces/org.projectatomic.rpmostree1.xml' \
cb59a0
  '%{_libdir}/pkgconfig/*' \
cb59a0
  '%{_datadir}/gtk-doc/html/*' \
cb59a0
  '%{_datadir}/gir-1.0/*-1.0.gir'
cb59a0
cb59a0
%files -f files
073af0
%doc COPYING.GPL COPYING.LGPL LICENSE README.md
cb59a0
cb59a0
%files libs -f files.lib
cb59a0
cb59a0
%files devel -f files.devel
cb59a0
cb59a0
%changelog
073af0
* Tue Mar 03 2020 Colin Walters <walters@verbum.org> - 2019.6-8
073af0
- Backport patches for initramfs /etc
073af0
  Resolves: #1808459
073af0
073af0
* Thu Feb 27 2020 Colin Walters <walters@verbum.org> - 2019.6-7
073af0
- Backport f295f543064f1a0b5833fefccd6bb203b3527623
073af0
  Resolves: #1807487
073af0
073af0
* Thu Dec 05 2019 Jonathan Lebon <jlebon@redhat.com> - 2019.6-6
073af0
- Backport dracut mknod patch for FIPS:
073af0
  https://github.com/coreos/rpm-ostree/pull/1946
073af0
073af0
* Thu Oct 31 2019 Jonathan Lebon <jlebon@redhat.com> - 2019.6-5
073af0
- Backport HMAC patch for FIPS:
073af0
  https://github.com/coreos/rpm-ostree/pull/1934
073af0
073af0
* Fri Oct 18 2019 Colin Walters <walters@verbum.org> - 2019.6-4
073af0
- Backport zchunk patch
073af0
073af0
* Tue Oct 15 2019 Colin Walters <walters@verbum.org> - 2019.6-3
073af0
- https://github.com/coreos/rpm-ostree/releases/tag/v20196
073af0
- Backport zstd patch
073af0
377225
* Fri May 17 2019 Jonathan Lebon <jlebon@redhat.com> - 2019.3-3
377225
- Rebuild for rhel-8.1.0 branch
377225
377225
* Fri Mar 29 2019 Colin Walters <walters@verbum.org> - 2019.3-2
377225
- Backport patch for pivot rebases
377225
377225
* Wed Mar 27 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.3-1
377225
- New upstream version
377225
377225
* Thu Feb 14 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.2-1
377225
- New upstream version
377225
377225
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.1-2
377225
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
377225
377225
* Tue Jan 22 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.1-1
377225
- New upstream version
377225
377225
* Fri Dec 14 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.10-1
377225
- New upstream version
377225
377225
* Tue Dec 04 2018 Jonathan Lebon <jonathan@jlebon.com>
377225
- Simplify Rust conditionals
377225
377225
* Fri Nov 02 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.9-3
377225
- Backport patch for https://pagure.io/dusty/failed-composes/issue/956
377225
377225
* Tue Oct 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2018.9-2
377225
- Rebuild for libsolv 0.7
377225
377225
* Sun Oct 28 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.9-1
377225
- New upstream version
3bb185
cb59a0
* Mon Oct 15 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.8-2
cb59a0
- Add new source and patch to drop cbindgen requirement
cb59a0
cb59a0
* Tue Sep 11 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.8-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Thu Aug 09 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.7-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Wed Aug 01 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6.42.gda27b94b-1
cb59a0
- git master snapshot for https://bugzilla.redhat.com/show_bug.cgi?id=1565647
cb59a0
cb59a0
* Mon Jul 30 2018 Colin Walters <walters@verbum.org> - 2018.6-4
cb59a0
- Backport patch for https://bugzilla.redhat.com/show_bug.cgi?id=1607223
cb59a0
  from https://github.com/projectatomic/rpm-ostree/pull/1469
cb59a0
- Also https://github.com/projectatomic/rpm-ostree/pull/1461
cb59a0
cb59a0
* Mon Jul 16 2018 Colin Walters <walters@verbum.org> - 2018.6-3
cb59a0
- Make build python3-only compatible for distributions that want that
cb59a0
cb59a0
* Fri Jun 29 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6-2
cb59a0
- Rebuild for yummy Rusty bitsy
cb59a0
cb59a0
* Fri Jun 29 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Tue May 15 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.5-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Mon Mar 26 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.4-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Sun Mar 18 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2018.3-4
cb59a0
- Update Python 2 dependency declarations to new packaging standards
cb59a0
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
cb59a0
cb59a0
* Wed Mar 07 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.3-3
cb59a0
- Add BR on gcc-c++
cb59a0
cb59a0
* Thu Mar 01 2018 Dusty Mabe <dusty@dustymabe.com> - 2018.3-2
cb59a0
- backport treating FUSE as netfs
cb59a0
- See https://github.com/projectatomic/rpm-ostree/pull/1285
cb59a0
cb59a0
* Sun Feb 18 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.3-1
cb59a0
- New upstream version (minor bugfix release)
cb59a0
cb59a0
* Fri Feb 16 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.2-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.1-3
cb59a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
cb59a0
cb59a0
* Fri Jan 19 2018 Dusty Mabe <dusty@dustymabe.com> - 2018.1-2
cb59a0
- Revert the ostree:// formatting in the output.
cb59a0
- See https://github.com/projectatomic/rpm-ostree/pull/1136#issuecomment-358122137
cb59a0
cb59a0
* Mon Jan 15 2018 Colin Walters <walters@verbum.org> - 2018.1-1
cb59a0
- https://github.com/projectatomic/rpm-ostree/releases/tag/v2018.1
cb59a0
cb59a0
* Tue Dec 05 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.11-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Wed Nov 22 2017 Colin Walters <walters@verbum.org> - 2017.10-3
cb59a0
- Backport patch for NFS issues
cb59a0
- https://pagure.io/atomic-wg/issue/387
cb59a0
cb59a0
* Sun Nov 12 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.10-2
cb59a0
- Backport fix for --repo handling
cb59a0
  https://github.com/projectatomic/rpm-ostree/pull/1101
cb59a0
cb59a0
* Thu Nov 02 2017 Colin Walters <walters@verbum.org> - 2017.10-1
cb59a0
- https://github.com/projectatomic/rpm-ostree/releases/tag/v2017.10
cb59a0
cb59a0
* Mon Sep 25 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.9-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Mon Aug 21 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.8-2
cb59a0
- Patch to allow metadata_expire=0
cb59a0
  https://github.com/projectatomic/rpm-ostree/issues/930
cb59a0
cb59a0
* Fri Aug 18 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.8-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 2017.7-7
cb59a0
- Rebuilt for RPM soname bump
cb59a0
cb59a0
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 2017.7-6
cb59a0
- Rebuilt for RPM soname bump
cb59a0
cb59a0
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.7-5
cb59a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
cb59a0
cb59a0
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.7-4
cb59a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
cb59a0
cb59a0
* Fri Jul 21 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.7-3
cb59a0
- Tweak new pkg name to rpm-ostree-libs to be more consistent with the main
cb59a0
  package name and ostree's ostree-libs.
cb59a0
cb59a0
* Fri Jul 21 2017 Colin Walters <walters@verbum.org> - 2017.7-2
cb59a0
- Enable introspection, rename shared lib to librpmostree
cb59a0
  Due to an oversight, we were not actually building with introspection.
cb59a0
  Fix that.  And while we are here, split out a shared library package,
cb59a0
  so that e.g. containers can do `from gi.repository import RpmOstree`
cb59a0
  without dragging in the systemd service, etc. (RHBZ#1473701)
cb59a0
cb59a0
* Mon Jul 10 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.7-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Sat Jun 24 2017 Colin Walters <walters@verbum.org>
cb59a0
- Update to git snapshot to help debug compose failure
cb59a0
cb59a0
* Wed May 31 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.6-3
cb59a0
- Make sure we don't auto-provide libdnf (RHBZ#1457089)
cb59a0
cb59a0
* Fri May 26 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.6-2
cb59a0
- Bump libostree dep
cb59a0
cb59a0
* Fri May 26 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.6-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Fri Apr 28 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.5-2
cb59a0
- Bump libostree dep and rebuild in override
cb59a0
cb59a0
* Fri Apr 28 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.5-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Fri Apr 14 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.4-2
cb59a0
- Backport patch to allow unprivileged `rpm-ostree status`
cb59a0
cb59a0
* Thu Apr 13 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.4-1
cb59a0
- New upstream version.
cb59a0
cb59a0
* Fri Apr 07 2017 Colin Walters <walters@verbum.org> - 2017.3-4
cb59a0
- Backport patch to add API devices for running on CentOS 7
cb59a0
  https://github.com/projectatomic/rpm-ostree/issues/727
cb59a0
cb59a0
* Thu Mar 16 2017 Colin Walters <walters@verbum.org> - 2017.3-3
cb59a0
- Add patch to fix f26 altfiles
cb59a0
cb59a0
* Fri Mar 10 2017 Colin Walters <walters@verbum.org> - 2017.3-2
cb59a0
- Backport patch for running in koji
cb59a0
cb59a0
* Mon Mar 06 2017 Colin Walters <walters@verbum.org> - 2017.3-1
cb59a0
- New upstream version
cb59a0
  Fixes: CVE-2017-2623
cb59a0
  Resolves: #1422157
cb59a0
cb59a0
* Fri Mar 03 2017 Colin Walters <walters@verbum.org> - 2017.2-5
cb59a0
- Add patch to bump requires for ostree
cb59a0
cb59a0
* Mon Feb 27 2017 Colin Walters <walters@verbum.org> - 2017.2-4
cb59a0
- Add requires on ostree
cb59a0
cb59a0
* Sat Feb 18 2017 Colin Walters <walters@verbum.org> - 2017.2-3
cb59a0
- Add patch for gperf 3.1 compatibility
cb59a0
  Resolves: #1424268
cb59a0
cb59a0
* Wed Feb 15 2017 Colin Walters <walters@verbum.org> - 2017.2-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.1-4
cb59a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cb59a0
cb59a0
* Fri Jan 27 2017 Colin Walters <walters@verbum.org> - 2017.1-3
cb59a0
- Back out netns usage for now for https://pagure.io/releng/issue/6602
cb59a0
cb59a0
* Sun Jan 22 2017 Colin Walters <walters@verbum.org> - 2017.1-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Mon Dec 12 2016 walters@redhat.com - 2016.13-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Sat Nov 26 2016 walters@redhat.com - 2016.12-4
cb59a0
- Backport patch to fix install-langs
cb59a0
cb59a0
* Tue Nov 15 2016 walters@redhat.com - 2016.11-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Mon Oct 24 2016 walters@verbum.org - 2016.11-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Fri Oct 07 2016 walters@redhat.com - 2016.10-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Thu Sep 08 2016 walters@redhat.com - 2016.9-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Thu Sep 08 2016 walters@redhat.com - 2016.8-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Thu Sep 01 2016 walters@redhat.com - 2016.7-4
cb59a0
- Add requires on fuse https://github.com/projectatomic/rpm-ostree/issues/443
cb59a0
cb59a0
* Wed Aug 31 2016 Colin Walters <walters@verbum.org> - 2016.7-3
cb59a0
- Backport patch for running inside mock
cb59a0
cb59a0
* Sat Aug 13 2016 walters@redhat.com - 2016.6-3
cb59a0
- New upstream version
cb59a0
cb59a0
* Sat Aug 13 2016 Colin Walters <walters@verbum.org> - 2016.6-2
cb59a0
- Backport patches from master to fix non-containerized composes
cb59a0
cb59a0
* Thu Aug 11 2016 walters@redhat.com - 2016.6-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Mon Jul 25 2016 Colin Walters <walters@verbum.org> - 2016.5-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Fri Jul 08 2016 walters@verbum.org - 2016.4-2
cb59a0
- Require bubblewrap
cb59a0
cb59a0
* Fri Jul 08 2016 walters@redhat.com - 2016.4-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Thu Jul 07 2016 Colin Walters <walters@verbum.org> - 2016.3.5.g4219a96-1
cb59a0
- Backport fixes from https://github.com/projectatomic/rpm-ostree/commits/2016.3-fixes
cb59a0
cb59a0
* Wed Jun 15 2016 Colin Walters <walters@verbum.org> - 2016.3.3.g17fb980-2
cb59a0
- Backport fixes from https://github.com/projectatomic/rpm-ostree/commits/2016.3-fixes
cb59a0
cb59a0
* Fri May 20 2016 Colin Walters <walters@redhat.com> - 2016.3-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Thu Mar 31 2016 Colin Walters <walters@redhat.com> - 2016.1-3
cb59a0
- Backport patch to fix Fedora composes writing data into source file:/// URIs
cb59a0
cb59a0
* Thu Mar 24 2016 Colin Walters <walters@redhat.com> - 2016.1-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Tue Feb 23 2016 Colin Walters <walters@redhat.com> - 2015.11.43.ga2c052b-2
cb59a0
- New git snapshot, just getting some new code out there
cb59a0
- We are now bundling a copy of libhif, as otherwise coordinated releases with
cb59a0
  PackageKit/dnf would be required, and we are not ready for that yet.
cb59a0
cb59a0
* Wed Feb 10 2016 Matthew Barnes <mbarnes@redhat.com> - 2015.11-3
cb59a0
- Fix URL: https://github.com/projectatomic/rpm-ostree
cb59a0
cb59a0
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2015.11-2
cb59a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
cb59a0
cb59a0
* Tue Dec 15 2015 Colin Walters <walters@redhat.com> - 2015.11-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Sat Nov 21 2015 Colin Walters <walters@redhat.com> - 2015.10-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Mon Nov 09 2015 Colin Walters <walters@redhat.com> - 2015.9-4
cb59a0
- Fix files list for -devel, which should in turn fix Anaconda
cb59a0
  builds which pull in rpm-ostree, but should not have devel bits.
cb59a0
cb59a0
* Sat Oct 31 2015 Colin Walters <walters@redhat.com> - 2015.9-3
cb59a0
- Add patch that should fix bodhis use of --workdir-tmpfs
cb59a0
cb59a0
* Sat Sep 05 2015 Kalev Lember <klember@redhat.com> - 2015.9-2
cb59a0
- Rebuilt for librpm soname bump
cb59a0
cb59a0
* Wed Aug 26 2015 Colin Walters <walters@redhat.com> - 2015.9-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Tue Aug 04 2015 Colin Walters <walters@redhat.com> - 2015.8-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Mon Jul 27 2015 Colin Walters <walters@redhat.com> - 2015.7-5
cb59a0
- rebuilt
cb59a0
cb59a0
* Mon Jul 20 2015 Colin Walters <walters@redhat.com> - 2015.7-4
cb59a0
- Rebuild for CentOS update to libhif
cb59a0
cb59a0
* Tue Jun 16 2015 Colin Walters <walters@redhat.com> - 2015.7-3
cb59a0
- Rebuild to pick up hif_source_set_required()
cb59a0
cb59a0
* Mon Jun 15 2015 Colin Walters <walters@redhat.com> - 2015.7-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Tue Jun 09 2015 Colin Walters <walters@redhat.com> - 2015.6-2
cb59a0
- New upstream version
cb59a0
cb59a0
* Tue May 12 2015 Colin Walters <walters@redhat.com> - 2015.5-3
cb59a0
- Add patch to fix rawhide composes
cb59a0
cb59a0
* Mon May 11 2015 Colin Walters <walters@redhat.com> - 2015.5-2
cb59a0
- New upstream release
cb59a0
  Adds shared library and -devel subpackage
cb59a0
cb59a0
* Fri Apr 10 2015 Colin Walters <walters@redhat.com> - 2015.4-2
cb59a0
- New upstream release
cb59a0
  Port to libhif, drops dependency on yum.
cb59a0
cb59a0
* Thu Apr 09 2015 Colin Walters <walters@redhat.com> - 2015.3-8
cb59a0
- Cherry pick f21 patch to disable read only /etc with yum which
cb59a0
  breaks when run inside docker
cb59a0
cb59a0
* Wed Apr 08 2015 Colin Walters <walters@redhat.com> - 2015.3-7
cb59a0
- Add patch to use yum-deprecated
cb59a0
  Resolves: #1209695
cb59a0
cb59a0
* Fri Feb 27 2015 Colin Walters <walters@redhat.com> - 2015.3-5
cb59a0
- Drop /usr/bin/atomic, now provided by the "atomic" package
cb59a0
cb59a0
* Fri Feb 06 2015 Dennis Gilmore <dennis@ausil.us> - 2015.3-4
cb59a0
- add git to BuildRequires
cb59a0
cb59a0
* Thu Feb 05 2015 Colin Walters <walters@redhat.com> - 2015.3-3
cb59a0
- Adapt to Hawkey 0.5.3 API break
cb59a0
cb59a0
* Thu Feb 05 2015 Dennis Gilmore <dennis@ausil.us> - 2015.3-3
cb59a0
- rebuild for libhawkey soname bump
cb59a0
cb59a0
* Fri Jan 23 2015 Colin Walters <walters@redhat.com> - 2015.3-2
cb59a0
- New upstream release
cb59a0
cb59a0
* Thu Jan 08 2015 Colin Walters <walters@redhat.com> - 2015.2-1
cb59a0
- New upstream release
cb59a0
cb59a0
* Wed Dec 17 2014 Colin Walters <walters@redhat.com> - 2014.114-2
cb59a0
- New upstream release
cb59a0
cb59a0
* Tue Nov 25 2014 Colin Walters <walters@redhat.com> - 2014.113-1
cb59a0
- New upstream release
cb59a0
cb59a0
* Mon Nov 24 2014 Colin Walters <walters@redhat.com> - 2014.112-1
cb59a0
- New upstream release
cb59a0
cb59a0
* Mon Nov 17 2014 Colin Walters <walters@redhat.com> - 2014.111-1
cb59a0
- New upstream release
cb59a0
cb59a0
* Fri Nov 14 2014 Colin Walters <walters@redhat.com> - 2014.110-1
cb59a0
- New upstream release
cb59a0
cb59a0
* Fri Oct 24 2014 Colin Walters <walters@redhat.com> - 2014.109-1
cb59a0
- New upstream release
cb59a0
cb59a0
* Sat Oct 04 2014 Colin Walters <walters@redhat.com> - 2014.107-2
cb59a0
- New upstream release
cb59a0
cb59a0
* Mon Sep 08 2014 Colin Walters <walters@redhat.com> - 2014.106-3
cb59a0
- New upstream release
cb59a0
- Bump requirement on ostree
cb59a0
cb59a0
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.105-3
cb59a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
cb59a0
cb59a0
* Fri Aug 08 2014 Colin Walters <walters@verbum.org> - 2014.105-2
cb59a0
- New upstream release
cb59a0
cb59a0
* Sun Jul 13 2014 Colin Walters <walters@verbum.org>
cb59a0
- New upstream release
cb59a0
cb59a0
* Sat Jun 21 2014 Colin Walters <walters@verbum.org>
cb59a0
- New upstream release
cb59a0
- Bump OSTree requirements
cb59a0
- Enable hawkey package diff, we have new enough versions
cb59a0
  of libsolv/hawkey
cb59a0
- Enable /usr/bin/atomic symbolic link
cb59a0
cb59a0
* Tue Jun 10 2014 Colin Walters <walters@verbum.org>
cb59a0
- New upstream git snapshot
cb59a0
cb59a0
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.101-2
cb59a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cb59a0
cb59a0
* Fri May 30 2014 Colin Walters <walters@verbum.org>
cb59a0
- New upstream release
cb59a0
cb59a0
* Fri May 23 2014 Colin Walters <walters@verbum.org>
cb59a0
- Previous autobuilder code is split off into rpm-ostree-toolbox
cb59a0
cb59a0
* Sun Apr 13 2014 Colin Walters <walters@verbum.org>
cb59a0
- New upstream release
cb59a0
cb59a0
* Tue Apr 08 2014 Colin Walters <walters@verbum.org>
cb59a0
- Drop requires on yum to allow minimal images without it
cb59a0
cb59a0
* Mon Mar 31 2014 Colin Walters <walters@verbum.org>
cb59a0
- New upstream release
cb59a0
cb59a0
* Sat Mar 22 2014 Colin Walters <walters@verbum.org> - 2014.6.3.g5707fa7-2
cb59a0
- Bump ostree version requirement
cb59a0
cb59a0
* Sat Mar 22 2014 Colin Walters <walters@verbum.org> - 2014.6.3.g5707fa7-1
cb59a0
- New git snapshot, add rpm-ostree-sign to file list
cb59a0
cb59a0
* Sat Mar 22 2014 Colin Walters <walters@verbum.org> - 2014.6-1
cb59a0
- New upstream version
cb59a0
cb59a0
* Fri Mar 07 2014 Colin Walters <walters@verbum.org> - 2014.5-1
cb59a0
- Initial package
cb59a0