Blame SPECS/rpm-ostree.spec

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