Blame SPECS/rpm-ostree.spec

eb6277
# The canonical copy of this spec file is upstream at:
eb6277
# https://github.com/coreos/rpm-ostree/blob/main/packaging/rpm-ostree.spec.in
eb6277
eb6277
Summary: Hybrid image/package system
eb6277
Name: rpm-ostree
3e9a1c
Version: 2022.19
0d9b0d
Release: 3%{?dist}
eb6277
License: LGPLv2+
eb6277
URL: https://github.com/coreos/rpm-ostree
eb6277
# This tarball is generated via "cd packaging && make -f Makefile.dist-packaging dist-snapshot"
eb6277
# in the upstream git.  It also contains vendored Rust sources.
eb6277
Source0: https://github.com/coreos/rpm-ostree/releases/download/v%{version}/rpm-ostree-%{version}.tar.xz
eb6277
eb6277
ExclusiveArch: %{rust_arches}
eb6277
eb6277
BuildRequires: make
eb6277
%if 0%{?rhel} && !0%{?eln}
eb6277
BuildRequires: rust-toolset
eb6277
%else
eb6277
BuildRequires: rust-packaging
eb6277
BuildRequires: cargo
eb6277
BuildRequires: rust
eb6277
%endif
eb6277
eb6277
# Enable ASAN + UBSAN
eb6277
%bcond_with sanitizers
87f66e
# Embedded unit tests
87f66e
%bcond_with bin_unit_tests
87f66e
87f66e
# This is copied from the libdnf spec
87f66e
%if 0%{?rhel} && ! 0%{?centos}
87f66e
%bcond_without rhsm
87f66e
%else
87f66e
%bcond_with rhsm
87f66e
%endif
eb6277
eb6277
# RHEL (8,9) doesn't ship zchunk today.  Keep this in sync
eb6277
# with libdnf: https://gitlab.com/redhat/centos-stream/rpms/libdnf/-/blob/762f631e36d1e42c63a794882269d26c156b68c1/libdnf.spec#L45
eb6277
%if 0%{?rhel}
eb6277
%bcond_with zchunk
eb6277
%else
eb6277
%bcond_without zchunk
eb6277
%endif
eb6277
eb6277
# For the autofiles bits below
eb6277
BuildRequires: /usr/bin/python3
eb6277
# We always run autogen.sh
eb6277
BuildRequires: autoconf automake libtool git
eb6277
# For docs
eb6277
BuildRequires: chrpath
eb6277
BuildRequires: gtk-doc
eb6277
BuildRequires: /usr/bin/g-ir-scanner
eb6277
# Core requirements
eb6277
# 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)
eb6277
BuildRequires: pkgconfig(ostree-1) >= 2021.5
eb6277
BuildRequires: pkgconfig(polkit-gobject-1)
eb6277
BuildRequires: pkgconfig(json-glib-1.0)
87f66e
BuildRequires: pkgconfig(rpm) >= 4.14.0
eb6277
BuildRequires: pkgconfig(libarchive)
eb6277
BuildRequires: pkgconfig(libsystemd)
eb6277
BuildRequires: libcap-devel
eb6277
BuildRequires: libattr-devel
eb6277
eb6277
# We currently interact directly with librepo (libdnf below also pulls it in,
eb6277
# but duplicating to be clear)
eb6277
BuildRequires: pkgconfig(librepo)
eb6277
eb6277
# Needed by curl-rust
eb6277
BuildRequires: pkgconfig(libcurl)
eb6277
eb6277
BuildRequires: cmake
eb6277
BuildRequires: pkgconfig(expat)
eb6277
BuildRequires: pkgconfig(check)
eb6277
eb6277
# We use some libsolv types directly too (libdnf below also pulls it in,
eb6277
# but duplicating to be clear)
eb6277
BuildRequires: pkgconfig(libsolv)
eb6277
87f66e
# These are build deps which aren't strictly required in Koji/Brew builds, but
87f66e
# are required for git builds. Since they're few and tiny, we just add it here
87f66e
# to keep it part of `dnf builddep`.
87f66e
BuildRequires: jq
eb6277
87f66e
#########################################################################
87f66e
#                         libdnf build deps                             #
87f66e
#                                                                       #
87f66e
# Copy/pasted from libdnf/libdnf.spec. Removed the irrelevant bits like #
87f66e
# valgrind, rhsm, swig, python, and sanitizer stuff.                    #
87f66e
#########################################################################
eb6277
87f66e
87f66e
%global libsolv_version 0.7.21
87f66e
%global libmodulemd_version 2.13.0
87f66e
%global librepo_version 1.13.1
87f66e
87f66e
BuildRequires:  cmake
87f66e
BuildRequires:  gcc
87f66e
BuildRequires:  gcc-c++
eb6277
BuildRequires:  libsolv-devel >= %{libsolv_version}
87f66e
BuildRequires:  pkgconfig(librepo) >= %{librepo_version}
87f66e
BuildRequires:  pkgconfig(check)
87f66e
BuildRequires:  pkgconfig(gio-unix-2.0) >= 2.46.0
87f66e
BuildRequires:  pkgconfig(gtk-doc)
87f66e
BuildRequires:  rpm-devel >= 4.15.0
3e9a1c
%if %{with rhsm}
3e9a1c
BuildRequires:  pkgconfig(librhsm) >= 0.0.3
3e9a1c
%endif
eb6277
%if %{with zchunk}
eb6277
BuildRequires:  pkgconfig(zck) >= 0.9.11
eb6277
%endif
87f66e
BuildRequires:  pkgconfig(sqlite3)
87f66e
BuildRequires:  pkgconfig(json-c)
87f66e
BuildRequires:  pkgconfig(cppunit)
87f66e
BuildRequires:  pkgconfig(modulemd-2.0) >= %{libmodulemd_version}
87f66e
BuildRequires:  pkgconfig(smartcols)
87f66e
BuildRequires:  gettext
eb6277
BuildRequires:  gpgme-devel
eb6277
eb6277
Requires:       libmodulemd%{?_isa} >= %{libmodulemd_version}
eb6277
Requires:       libsolv%{?_isa} >= %{libsolv_version}
eb6277
Requires:       librepo%{?_isa} >= %{librepo_version}
eb6277
87f66e
#########################################################################
87f66e
#                     end of libdnf build deps                          #
87f66e
#########################################################################
87f66e
eb6277
# For now...see https://github.com/projectatomic/rpm-ostree/pull/637
eb6277
# and https://github.com/fedora-infra/fedmsg-atomic-composer/pull/17
eb6277
# etc.  We'll drop this dependency at some point in the future when
eb6277
# rpm-ostree wraps more of ostree (such as `ostree admin unlock` etc.)
eb6277
Requires: ostree
eb6277
Requires: bubblewrap
eb6277
Requires: fuse
eb6277
87f66e
# For container functionality
87f66e
# https://github.com/coreos/rpm-ostree/issues/3286
87f66e
Recommends: skopeo
87f66e
eb6277
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
eb6277
eb6277
%description
eb6277
rpm-ostree is a hybrid image/package system.  It supports
eb6277
"composing" packages on a build server into an OSTree repository,
eb6277
which can then be replicated by client systems with atomic upgrades.
eb6277
Additionally, unlike many "pure" image systems, with rpm-ostree
eb6277
each client system can layer on additional packages, providing
eb6277
a "best of both worlds" approach.
eb6277
eb6277
%package libs
eb6277
Summary: Shared library for rpm-ostree
eb6277
eb6277
%description libs
eb6277
The %{name}-libs package includes the shared library for %{name}.
eb6277
eb6277
%package devel
eb6277
Summary: Development headers for %{name}
eb6277
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
eb6277
eb6277
%description devel
eb6277
The %{name}-devel package includes the header files for %{name}-libs.
eb6277
eb6277
%prep
eb6277
%autosetup -Sgit -n %{name}-%{version}
eb6277
%if 0%{?__isa_bits} == 32
87f66e
sed -ie 's,^lto = true,lto = false,' Cargo.toml
eb6277
%endif
eb6277
eb6277
%build
eb6277
env NOCONFIGURE=1 ./autogen.sh
eb6277
# Since we're hybrid C++/Rust we need to propagate this manually;
eb6277
# the %%configure macro today assumes (reasonably) that one is building
eb6277
# C/C++ and sets C{,XX}FLAGS
eb6277
%if 0%{?build_rustflags:1}
eb6277
export RUSTFLAGS="%{build_rustflags}"
eb6277
%endif
87f66e
%configure --disable-silent-rules --enable-gtk-doc %{?rpmdb_default} %{?with_sanitizers:--enable-sanitizers}  %{?with_bin_unit_tests:--enable-bin-unit-tests} \
87f66e
  %{?with_rhsm:--enable-featuresrs=rhsm}
eb6277
eb6277
%make_build
eb6277
eb6277
%install
eb6277
%make_install INSTALL="install -p -c"
eb6277
find $RPM_BUILD_ROOT -name '*.la' -delete
eb6277
eb6277
# I try to do continuous delivery via rpmdistro-gitoverlay while
eb6277
# reusing the existing spec files.  Currently RPM only supports
eb6277
# mandatory file entries.  What this is doing is making each file
eb6277
# entry optional - if it exists it will be picked up.  That
eb6277
# way the same spec file works more easily across multiple versions where e.g. an
eb6277
# older version might not have a systemd unit file.
eb6277
cat > autofiles.py <
eb6277
import os,sys,glob
eb6277
os.chdir(os.environ['RPM_BUILD_ROOT'])
eb6277
for line in sys.argv[1:]:
eb6277
    if line == '':
eb6277
        break
eb6277
    if line[0] != '/':
eb6277
        sys.stdout.write(line + '\n')
eb6277
    else:
eb6277
        files = glob.glob(line[1:])
eb6277
        if len(files) > 0:
eb6277
            sys.stderr.write('{0} matched {1} files\n'.format(line, len(files)))
eb6277
            sys.stdout.write(line + '\n')
eb6277
        else:
eb6277
            sys.stderr.write('{0} did not match any files\n'.format(line))
eb6277
EOF
eb6277
PYTHON=python3
eb6277
if ! test -x /usr/bin/python3; then
eb6277
    PYTHON=python2
eb6277
fi
eb6277
$PYTHON autofiles.py > files \
eb6277
  '%{_bindir}/*' \
eb6277
  '%{_libdir}/%{name}' \
eb6277
  '%{_mandir}/man*/*' \
eb6277
  '%{_datadir}/dbus-1/system.d/*' \
eb6277
  '%{_sysconfdir}/rpm-ostreed.conf' \
eb6277
  '%{_prefix}/lib/systemd/system/*' \
eb6277
  '%{_libexecdir}/rpm-ostree*' \
87f66e
  '%{_libexecdir}/libostree/ext/*' \
eb6277
  '%{_datadir}/polkit-1/actions/*.policy' \
87f66e
  '%{_datadir}/dbus-1/system-services/*' \
eb6277
  '%{_datadir}/bash-completion/completions/*'
eb6277
eb6277
$PYTHON autofiles.py > files.lib \
eb6277
  '%{_libdir}/*.so.*' \
eb6277
  '%{_libdir}/girepository-1.0/*.typelib'
eb6277
eb6277
$PYTHON autofiles.py > files.devel \
eb6277
  '%{_libdir}/lib*.so' \
eb6277
  '%{_includedir}/*' \
eb6277
  '%{_datadir}/dbus-1/interfaces/org.projectatomic.rpmostree1.xml' \
eb6277
  '%{_libdir}/pkgconfig/*' \
eb6277
  '%{_datadir}/gtk-doc/html/*' \
eb6277
  '%{_datadir}/gir-1.0/*-1.0.gir'
eb6277
eb6277
%files -f files
eb6277
%doc COPYING.GPL COPYING.LGPL LICENSE README.md
eb6277
eb6277
%files libs -f files.lib
eb6277
eb6277
%files devel -f files.devel
3e9a1c
eb6277
%changelog
3e9a1c
* Tue Dec 20 2022 Colin Walters <walters@verbum.org> - 2022.19-3
3e9a1c
- https://github.com/coreos/rpm-ostree/releases/tag/v2022.19
3e9a1c
  Resolves: rhbz#2153460
3e9a1c
3e9a1c
* Wed Dec 14 2022 Colin Walters <walters@verbum.org> - 2022.18-2
3e9a1c
- https://github.com/coreos/rpm-ostree/releases/tag/v2022.18
3e9a1c
  Resolves: rhbz#2153460
3e9a1c
3e9a1c
* Tue Nov 22 2022 Colin Walters <walters@verbum.org> - 2022.16-2
3e9a1c
- Rebase to 2022.16
3e9a1c
  Resolves: rhbz#2144586
3e9a1c
3e9a1c
* Thu Oct 13 2022 Joseph Marrero <jmarrero@fedoraproject.org> - 2022.14-1
3e9a1c
- https://github.com/coreos/rpm-ostree/releases/tag/v2022.14
3e9a1c
3e9a1c
* Tue Sep 13 2022 Luca BRUNO <lucab@redhat.com> - 2022.13-1
3e9a1c
- New upstream version
3e9a1c
  https://github.com/coreos/rpm-ostree/releases/tag/v2022.12
3e9a1c
  Resolves: rhbz#2126108
0d9b0d
87f66e
* Tue Jul 19 2022 Colin Walters <walters@verbum.org> - 2022.12-2
87f66e
- https://github.com/coreos/rpm-ostree/releases/tag/v2022.12
87f66e
87f66e
* Mon Jul 11 2022 Colin Walters <walters@verbum.org> - 2022.11-2
87f66e
- https://github.com/coreos/rpm-ostree/releases/tag/v2022.11
87f66e
  Resolves: rhbz#2105405
87f66e
87f66e
* Thu Jun 09 2022 Jonathan Lebon <jonathan@jlebon.com> - 2022.8-3
87f66e
- Backport https://github.com/coreos/rpm-ostree/pull/3721
87f66e
  Resolves: rhbz#2094085
87f66e
87f66e
* Thu Apr 21 2022 Colin Walters <walters@verbum.org> - 2022.8-2
87f66e
- https://github.com/coreos/rpm-ostree/releases/tag/v2022.8
87f66e
  Resolves: rhbz#2077062
87f66e
  Resolves: rhbz#2023325
87f66e
87f66e
* Mon Apr 11 2022 Colin Walters <walters@verbum.org> - 2022.7-2
87f66e
- https://github.com/coreos/rpm-ostree/releases/tag/v2022.7
87f66e
eb6277
* Mon Feb 07 2022 Colin Walters <walters@verbum.org> - 2022.2-2
eb6277
- Rebase to 2022.2
eb6277
eb6277
* Mon Jan 10 2022 Colin Walters <walters@verbum.org> - 2022.1-2
eb6277
- Rebase to 2022.1
eb6277
  Resolves: rhbz#2027476
eb6277
eb6277
* Wed Dec 01 2021 Colin Walters <walters@verbum.org> - 2021.14-3
eb6277
- Drop zchunk dependency
eb6277
  Resolves: rhbz#2028167
eb6277
eb6277
* Mon Nov 29 2021 Colin Walters <walters@verbum.org> - 2021.14-2
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2021.14
eb6277
  Resolves: rhbz#2027476
eb6277
eb6277
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2021.6-2
eb6277
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
eb6277
  Related: rhbz#1991688
eb6277
eb6277
* Tue Jun 22 2021 Colin Walters <walters@verbum.org>
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2021.6
eb6277
eb6277
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 2021.5-3
eb6277
- Rebuilt for RHEL 9 BETA for openssl 3.0
eb6277
  Related: rhbz#1971065
eb6277
eb6277
* Tue Jun 01 2021 Colin Walters <walters@verbum.org> - 2021.5-2
eb6277
- Support OpenSSL 3
eb6277
eb6277
* Wed May 12 2021 Luca BRUNO <lucab@lucabruno.net> - 2021.5-1
eb6277
- New upstream version
eb6277
  https://github.com/coreos/rpm-ostree/releases/tag/v2021.5
eb6277
eb6277
* Sun May 09 2021 Jeff Law <jlaw@tachyum.com> - 2021.4-4
eb6277
- Re-enable LTO
eb6277
eb6277
* Wed Apr 28 2021 Colin Walters <walters@verbum.org> - 2021.4-3
eb6277
- Backport another patch for https://pagure.io/fedora-infrastructure/issue/9909
eb6277
eb6277
* Tue Apr 27 2021 Colin Walters <walters@verbum.org> - 2021.4-2
eb6277
- Backport patch for https://pagure.io/fedora-infrastructure/issue/9909
eb6277
eb6277
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2021.2-3
eb6277
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
eb6277
eb6277
* Mon Apr 12 2021 Jonathan Lebon <jonathan@jlebon.com> - 2021.4-1
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2021.4
eb6277
eb6277
* Wed Mar 17 2021 Colin Walters <walters@verbum.org> - 2021.3-2
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2021.3
eb6277
eb6277
* Wed Feb 17 2021 Colin Walters <walters@verbum.org> - 2021.2-2
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2021.2
eb6277
eb6277
* Wed Feb 10 2021 Colin Walters <walters@verbum.org> - 2021.1-4
eb6277
- Backport patches from https://github.com/coreos/rpm-ostree/pull/2553
eb6277
eb6277
* Tue Jan 26 2021 Jonathan Lebon <jonathan@jlebon.com> - 2021.1-3
eb6277
- Backport https://github.com/coreos/rpm-ostree/pull/2490 for rawhide
eb6277
eb6277
* Tue Jan 19 15:08:59 UTC 2021 Colin Walters <walters@verbum.org> - 2021.1-2
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2021.1
eb6277
eb6277
* Fri Dec 11 19:13:03 UTC 2020 Colin Walters <walters@verbum.org> - 2020.10-3
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2020.10
eb6277
eb6277
* Fri Dec 11 13:42:33 UTC 2020 Colin Walters <walters@verbum.org> - 2020.9-2
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2020.9
eb6277
eb6277
* Sat Nov 14 14:51:20 UTC 2020 Colin Walters <walters@verbum.org> - 2020.8-1
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2020.8
eb6277
eb6277
* Mon Nov 02 2020 Luca BRUNO <lucab@lucabruno.net> - 2020.7-1
eb6277
- New upstream version
eb6277
  https://github.com/coreos/rpm-ostree/releases/tag/v2020.7
eb6277
eb6277
* Mon Nov 02 2020 Jeff Law <law@redhat.com> - 2020.6-2
eb6277
- Fix invalid use of volatile caught by gcc-11
eb6277
eb6277
* Fri Oct 30 16:48:43 UTC 2020 Colin Walters <walters@verbum.org> - 2020.6-1
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2020.6
eb6277
eb6277
* Wed Oct 28 2020 Peter Robinson <pbrobinson@fedoraproject.org> - 2020.5-2
eb6277
- sysroot: Fix usage of sd_journal_send on 32 bit (gh#2276)
eb6277
eb6277
* Tue Sep 15 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.5-1
eb6277
- New upstream version
eb6277
  https://github.com/coreos/rpm-ostree/releases/tag/v2020.5
eb6277
eb6277
* Mon Aug 17 2020 Colin Walters <walters@verbum.org> - 2020.4.15.g8b0bcd7b-2
eb6277
- Update to latest upstream git for
eb6277
  https://bugzilla.redhat.com/show_bug.cgi?id=1865397
eb6277
eb6277
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2020.4-2
eb6277
- Second attempt - Rebuilt for
eb6277
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
eb6277
eb6277
* Wed Jul 29 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.4-1
eb6277
- New upstream version
eb6277
  https://github.com/coreos/rpm-ostree/releases/tag/v2020.4
eb6277
eb6277
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2020.3-3
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
eb6277
eb6277
* Tue Jun 30 2020 Jeff Law <aw@redhat.com> - 2020.3-2
eb6277
- Disable LTO
eb6277
eb6277
* Fri Jun 19 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.3-1
eb6277
- New upstream version
eb6277
  https://github.com/coreos/rpm-ostree/releases/tag/v2020.3
eb6277
eb6277
* Fri May 15 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.2-3
eb6277
- Backport https://github.com/coreos/rpm-ostree/pull/2096
eb6277
  See https://github.com/coreos/fedora-coreos-tracker/issues/481
eb6277
eb6277
* Fri May 15 2020 Colin Walters <walters@verbum.org> - 2020.2-2
eb6277
- https://github.com/coreos/rpm-ostree/releases/tag/v2020.2
eb6277
eb6277
* Tue Apr 21 2020 Björn Esser <besser82@fedoraproject.org> - 2020.1.80.g3ec5e287-2
eb6277
- Rebuild (json-c)
eb6277
eb6277
* Mon Apr 20 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.1.80.g3ec5e287-1
eb6277
- git master snapshot for using strict mode and lockfile-repos in FCOS:
eb6277
  https://github.com/coreos/rpm-ostree/pull/1858
eb6277
  https://github.com/coreos/rpm-ostree/pull/2058
eb6277
  https://github.com/coreos/fedora-coreos-tracker/issues/454
eb6277
eb6277
* Fri Mar 13 2020 Colin Walters <walters@verbum.org> - 2020.1.21.ge9011530-2
eb6277
- Backport https://github.com/coreos/rpm-ostree/pull/2015
eb6277
  See https://github.com/coreos/fedora-coreos-tracker/issues/343
eb6277
eb6277
* Thu Feb 27 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.1.21.ge9011530-1
eb6277
- git master snapshot for using base initramfs kargs in RHCOS:
eb6277
  https://github.com/coreos/rpm-ostree/pull/1998
eb6277
  https://github.com/coreos/rpm-ostree/pull/1997
eb6277
  https://bugzilla.redhat.com/show_bug.cgi?id=1806588
eb6277
eb6277
* Wed Feb 05 2020 Jonathan Lebon <jonathan@jlebon.com> - 2020.1-1
eb6277
- New upstream version
eb6277
eb6277
* Tue Feb 04 2020 Jonathan Lebon <jonathan@jlebon.com> - 2019.7.31.g70c38563-1
eb6277
- git master snapshot for Silverblue rawhide compose fixes
eb6277
  https://pagure.io/releng/failed-composes/issue/717
eb6277
  https://pagure.io/releng/failed-composes/issue/929
eb6277
  https://github.com/rpm-software-management/libdnf/pull/885
eb6277
eb6277
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2019.7-3
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
eb6277
eb6277
* Thu Jan 09 2020 Jonathan Lebon <jonathan@jlebon.com> - 2019.7-2
eb6277
- Backport patch for Silverblue composes:
eb6277
  https://pagure.io/releng/failed-composes/issue/717
eb6277
eb6277
* Thu Dec 19 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.7-1
eb6277
- New upstream version
eb6277
eb6277
* Sat Dec 14 2019 Jeff Law <law@redhat.com> - 2019.6.24.gfec61ce5-2
eb6277
- Fix missing #includes for gcc-10
eb6277
eb6277
* Thu Oct 31 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.6.27.g3b8a1ec6-1
eb6277
- git master snapshot for dracut cpio cap_mknod fix:
eb6277
  https://github.com/coreos/rpm-ostree/pull/1946
eb6277
eb6277
* Thu Oct 31 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.6.24.gfec61ce5-1
eb6277
- git master snapshot for HMAC path fix for FIPS:
eb6277
  https://github.com/coreos/rpm-ostree/pull/1934
eb6277
eb6277
* Wed Sep 25 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.6-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Aug 22 2019 Colin Walters <walters@verbum.org> - 2019.5.7.gcac5aa41-3
eb6277
- New upstream git snapshot, mainly for backporting the arch-includes conditionals
eb6277
  to aid Fedora CoreOS on s390x.
eb6277
eb6277
* Wed Jul 31 2019 Stephen Gallagher <sgallagh@redhat.com> - 2019.5-2
eb6277
- Fix libmodulemd dependencies
eb6277
eb6277
* Thu Jul 25 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.5-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Jul 19 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4.39.g8d90d03d-1
eb6277
- git master snapshot for --parent and lockfile overrides
eb6277
  https://github.com/projectatomic/rpm-ostree/pull/1871
eb6277
  https://github.com/projectatomic/rpm-ostree/pull/1867
eb6277
eb6277
* Fri Jul 12 2019 Colin Walters <walters@verbum.org> - 2019.4.28.g44395673-3
eb6277
- Update rpmostree-rust.h in sources
eb6277
eb6277
* Fri Jul 12 2019 Colin Walters <walters@verbum.org> - 2019.4.28.g44395673-2
eb6277
- Update with git snapshot for zstd support
eb6277
eb6277
* Wed Jul 10 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4.27.gb381e029-1
eb6277
- git master snapshot for add-commit-metadata
eb6277
  https://github.com/projectatomic/rpm-ostree/pull/1865/
eb6277
eb6277
* Fri Jun 14 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4.15.gbbc9aa9f-1
eb6277
- git master snapshot for OSTree layers
eb6277
  https://github.com/projectatomic/rpm-ostree/pull/1830/
eb6277
eb6277
* Mon Jun 10 22:13:22 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2019.4.10.gc1cc0827-3
eb6277
- Rebuild for RPM 4.15
eb6277
eb6277
* Mon Jun 10 15:42:05 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2019.4.10.gc1cc0827-2
eb6277
- Rebuild for RPM 4.15
eb6277
eb6277
* Thu Jun 06 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4.10.gc1cc0827-1
eb6277
- git master snapshot for lockfile
eb6277
  https://github.com/projectatomic/rpm-ostree/pull/1745/
eb6277
eb6277
* Tue May 28 2019 Dusty Mabe <dusty@dustymabe.com> - 2019.4-3
eb6277
- Add back in ppc64le and ppc64
eb6277
eb6277
* Thu May 23 2019 Dusty Mabe <dusty@dustymabe.com> - 2019.4-2
eb6277
- Backport patch for db diff --format=json
eb6277
eb6277
* Tue May 21 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.4-1
eb6277
- New upstream version
eb6277
eb6277
* Mon May 06 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.3.5.g0da9f997-2
eb6277
- Add temporary hack to avoid UTF-8 for Bodhi
eb6277
  https://pagure.io/releng/issue/8330
eb6277
eb6277
* Tue Apr 09 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.3.5.g0da9f997-1
eb6277
- git master snapshot to test coreos-continuous tag
eb6277
eb6277
* Wed Mar 27 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.3-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Feb 14 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.2-1
eb6277
- New upstream version
eb6277
eb6277
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.1-2
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
eb6277
eb6277
* Tue Jan 22 2019 Jonathan Lebon <jonathan@jlebon.com> - 2019.1-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Dec 14 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.10-1
eb6277
- New upstream version
eb6277
eb6277
* Tue Dec 04 2018 Jonathan Lebon <jonathan@jlebon.com>
eb6277
- Simplify Rust conditionals
eb6277
eb6277
* Fri Nov 02 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.9-3
eb6277
- Backport patch for https://pagure.io/dusty/failed-composes/issue/956
eb6277
eb6277
* Tue Oct 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2018.9-2
eb6277
- Rebuild for libsolv 0.7
eb6277
eb6277
* Sun Oct 28 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.9-1
eb6277
- New upstream version
eb6277
eb6277
* Tue Sep 11 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.8-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Aug 09 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.7-1
eb6277
- New upstream version
eb6277
eb6277
* Wed Aug 01 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6.42.gda27b94b-1
eb6277
- git master snapshot for https://bugzilla.redhat.com/show_bug.cgi?id=1565647
eb6277
eb6277
* Mon Jul 30 2018 Colin Walters <walters@verbum.org> - 2018.6-4
eb6277
- Backport patch for https://bugzilla.redhat.com/show_bug.cgi?id=1607223
eb6277
  from https://github.com/projectatomic/rpm-ostree/pull/1469
eb6277
- Also https://github.com/projectatomic/rpm-ostree/pull/1461
eb6277
eb6277
* Mon Jul 16 2018 Colin Walters <walters@verbum.org> - 2018.6-3
eb6277
- Make build python3-only compatible for distributions that want that
eb6277
eb6277
* Fri Jun 29 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6-2
eb6277
- Rebuild for yummy Rusty bitsy
eb6277
eb6277
* Fri Jun 29 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.6-1
eb6277
- New upstream version
eb6277
eb6277
* Tue May 15 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.5-1
eb6277
- New upstream version
eb6277
eb6277
* Mon Mar 26 2018 Jonathan Lebon <jonathan@jlebon.com> - 2018.4-1
eb6277
- New upstream version
eb6277
eb6277
* Sun Mar 18 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2018.3-4
eb6277
- Update Python 2 dependency declarations to new packaging standards
eb6277
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
eb6277
eb6277
* Wed Mar 07 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.3-3
eb6277
- Add BR on gcc-c++
eb6277
eb6277
* Thu Mar 01 2018 Dusty Mabe <dusty@dustymabe.com> - 2018.3-2
eb6277
- backport treating FUSE as netfs
eb6277
- See https://github.com/projectatomic/rpm-ostree/pull/1285
eb6277
eb6277
* Sun Feb 18 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.3-1
eb6277
- New upstream version (minor bugfix release)
eb6277
eb6277
* Fri Feb 16 2018 Jonathan Lebon <jlebon@redhat.com> - 2018.2-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.1-3
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
eb6277
eb6277
* Fri Jan 19 2018 Dusty Mabe <dusty@dustymabe.com> - 2018.1-2
eb6277
- Revert the ostree:// formatting in the output.
eb6277
- See https://github.com/projectatomic/rpm-ostree/pull/1136#issuecomment-358122137
eb6277
eb6277
* Mon Jan 15 2018 Colin Walters <walters@verbum.org> - 2018.1-1
eb6277
- https://github.com/projectatomic/rpm-ostree/releases/tag/v2018.1
eb6277
eb6277
* Tue Dec 05 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.11-1
eb6277
- New upstream version
eb6277
eb6277
* Wed Nov 22 2017 Colin Walters <walters@verbum.org> - 2017.10-3
eb6277
- Backport patch for NFS issues
eb6277
- https://pagure.io/atomic-wg/issue/387
eb6277
eb6277
* Sun Nov 12 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.10-2
eb6277
- Backport fix for --repo handling
eb6277
  https://github.com/projectatomic/rpm-ostree/pull/1101
eb6277
eb6277
* Thu Nov 02 2017 Colin Walters <walters@verbum.org> - 2017.10-1
eb6277
- https://github.com/projectatomic/rpm-ostree/releases/tag/v2017.10
eb6277
eb6277
* Mon Sep 25 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.9-1
eb6277
- New upstream version
eb6277
eb6277
* Mon Aug 21 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.8-2
eb6277
- Patch to allow metadata_expire=0
eb6277
  https://github.com/projectatomic/rpm-ostree/issues/930
eb6277
eb6277
* Fri Aug 18 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.8-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 2017.7-7
eb6277
- Rebuilt for RPM soname bump
eb6277
eb6277
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 2017.7-6
eb6277
- Rebuilt for RPM soname bump
eb6277
eb6277
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.7-5
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
eb6277
eb6277
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.7-4
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
eb6277
eb6277
* Fri Jul 21 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.7-3
eb6277
- Tweak new pkg name to rpm-ostree-libs to be more consistent with the main
eb6277
  package name and ostree's ostree-libs.
eb6277
eb6277
* Fri Jul 21 2017 Colin Walters <walters@verbum.org> - 2017.7-2
eb6277
- Enable introspection, rename shared lib to librpmostree
eb6277
  Due to an oversight, we were not actually building with introspection.
eb6277
  Fix that.  And while we are here, split out a shared library package,
eb6277
  so that e.g. containers can do `from gi.repository import RpmOstree`
eb6277
  without dragging in the systemd service, etc. (RHBZ#1473701)
eb6277
eb6277
* Mon Jul 10 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.7-1
eb6277
- New upstream version
eb6277
eb6277
* Sat Jun 24 2017 Colin Walters <walters@verbum.org>
eb6277
- Update to git snapshot to help debug compose failure
eb6277
eb6277
* Wed May 31 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.6-3
eb6277
- Make sure we don't auto-provide libdnf (RHBZ#1457089)
eb6277
eb6277
* Fri May 26 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.6-2
eb6277
- Bump libostree dep
eb6277
eb6277
* Fri May 26 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.6-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Apr 28 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.5-2
eb6277
- Bump libostree dep and rebuild in override
eb6277
eb6277
* Fri Apr 28 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.5-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Apr 14 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.4-2
eb6277
- Backport patch to allow unprivileged `rpm-ostree status`
eb6277
eb6277
* Thu Apr 13 2017 Jonathan Lebon <jlebon@redhat.com> - 2017.4-1
eb6277
- New upstream version.
eb6277
eb6277
* Fri Apr 07 2017 Colin Walters <walters@verbum.org> - 2017.3-4
eb6277
- Backport patch to add API devices for running on CentOS 7
eb6277
  https://github.com/projectatomic/rpm-ostree/issues/727
eb6277
eb6277
* Thu Mar 16 2017 Colin Walters <walters@verbum.org> - 2017.3-3
eb6277
- Add patch to fix f26 altfiles
eb6277
eb6277
* Fri Mar 10 2017 Colin Walters <walters@verbum.org> - 2017.3-2
eb6277
- Backport patch for running in koji
eb6277
eb6277
* Mon Mar 06 2017 Colin Walters <walters@verbum.org> - 2017.3-1
eb6277
- New upstream version
eb6277
  Fixes: CVE-2017-2623
eb6277
  Resolves: #1422157
eb6277
eb6277
* Fri Mar 03 2017 Colin Walters <walters@verbum.org> - 2017.2-5
eb6277
- Add patch to bump requires for ostree
eb6277
eb6277
* Mon Feb 27 2017 Colin Walters <walters@verbum.org> - 2017.2-4
eb6277
- Add requires on ostree
eb6277
eb6277
* Sat Feb 18 2017 Colin Walters <walters@verbum.org> - 2017.2-3
eb6277
- Add patch for gperf 3.1 compatibility
eb6277
  Resolves: #1424268
eb6277
eb6277
* Wed Feb 15 2017 Colin Walters <walters@verbum.org> - 2017.2-2
eb6277
- New upstream version
eb6277
eb6277
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.1-4
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
eb6277
eb6277
* Fri Jan 27 2017 Colin Walters <walters@verbum.org> - 2017.1-3
eb6277
- Back out netns usage for now for https://pagure.io/releng/issue/6602
eb6277
eb6277
* Sun Jan 22 2017 Colin Walters <walters@verbum.org> - 2017.1-2
eb6277
- New upstream version
eb6277
eb6277
* Mon Dec 12 2016 walters@redhat.com - 2016.13-1
eb6277
- New upstream version
eb6277
eb6277
* Sat Nov 26 2016 walters@redhat.com - 2016.12-4
eb6277
- Backport patch to fix install-langs
eb6277
eb6277
* Tue Nov 15 2016 walters@redhat.com - 2016.11-2
eb6277
- New upstream version
eb6277
eb6277
* Mon Oct 24 2016 walters@verbum.org - 2016.11-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Oct 07 2016 walters@redhat.com - 2016.10-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Sep 08 2016 walters@redhat.com - 2016.9-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Sep 08 2016 walters@redhat.com - 2016.8-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Sep 01 2016 walters@redhat.com - 2016.7-4
eb6277
- Add requires on fuse https://github.com/projectatomic/rpm-ostree/issues/443
eb6277
eb6277
* Wed Aug 31 2016 Colin Walters <walters@verbum.org> - 2016.7-3
eb6277
- Backport patch for running inside mock
eb6277
eb6277
* Sat Aug 13 2016 walters@redhat.com - 2016.6-3
eb6277
- New upstream version
eb6277
eb6277
* Sat Aug 13 2016 Colin Walters <walters@verbum.org> - 2016.6-2
eb6277
- Backport patches from master to fix non-containerized composes
eb6277
eb6277
* Thu Aug 11 2016 walters@redhat.com - 2016.6-1
eb6277
- New upstream version
eb6277
eb6277
* Mon Jul 25 2016 Colin Walters <walters@verbum.org> - 2016.5-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Jul 08 2016 walters@verbum.org - 2016.4-2
eb6277
- Require bubblewrap
eb6277
eb6277
* Fri Jul 08 2016 walters@redhat.com - 2016.4-1
eb6277
- New upstream version
eb6277
eb6277
* Thu Jul 07 2016 Colin Walters <walters@verbum.org> - 2016.3.5.g4219a96-1
eb6277
- Backport fixes from https://github.com/projectatomic/rpm-ostree/commits/2016.3-fixes
eb6277
eb6277
* Wed Jun 15 2016 Colin Walters <walters@verbum.org> - 2016.3.3.g17fb980-2
eb6277
- Backport fixes from https://github.com/projectatomic/rpm-ostree/commits/2016.3-fixes
eb6277
eb6277
* Fri May 20 2016 Colin Walters <walters@redhat.com> - 2016.3-2
eb6277
- New upstream version
eb6277
eb6277
* Thu Mar 31 2016 Colin Walters <walters@redhat.com> - 2016.1-3
eb6277
- Backport patch to fix Fedora composes writing data into source file:/// URIs
eb6277
eb6277
* Thu Mar 24 2016 Colin Walters <walters@redhat.com> - 2016.1-2
eb6277
- New upstream version
eb6277
eb6277
* Tue Feb 23 2016 Colin Walters <walters@redhat.com> - 2015.11.43.ga2c052b-2
eb6277
- New git snapshot, just getting some new code out there
eb6277
- We are now bundling a copy of libhif, as otherwise coordinated releases with
eb6277
  PackageKit/dnf would be required, and we are not ready for that yet.
eb6277
eb6277
* Wed Feb 10 2016 Matthew Barnes <mbarnes@redhat.com> - 2015.11-3
eb6277
- Fix URL: https://github.com/projectatomic/rpm-ostree
eb6277
eb6277
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2015.11-2
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
eb6277
eb6277
* Tue Dec 15 2015 Colin Walters <walters@redhat.com> - 2015.11-1
eb6277
- New upstream version
eb6277
eb6277
* Sat Nov 21 2015 Colin Walters <walters@redhat.com> - 2015.10-1
eb6277
- New upstream version
eb6277
eb6277
* Mon Nov 09 2015 Colin Walters <walters@redhat.com> - 2015.9-4
eb6277
- Fix files list for -devel, which should in turn fix Anaconda
eb6277
  builds which pull in rpm-ostree, but should not have devel bits.
eb6277
eb6277
* Sat Oct 31 2015 Colin Walters <walters@redhat.com> - 2015.9-3
eb6277
- Add patch that should fix bodhis use of --workdir-tmpfs
eb6277
eb6277
* Sat Sep 05 2015 Kalev Lember <klember@redhat.com> - 2015.9-2
eb6277
- Rebuilt for librpm soname bump
eb6277
eb6277
* Wed Aug 26 2015 Colin Walters <walters@redhat.com> - 2015.9-2
eb6277
- New upstream version
eb6277
eb6277
* Tue Aug 04 2015 Colin Walters <walters@redhat.com> - 2015.8-1
eb6277
- New upstream version
eb6277
eb6277
* Mon Jul 27 2015 Colin Walters <walters@redhat.com> - 2015.7-5
eb6277
- rebuilt
eb6277
eb6277
* Mon Jul 20 2015 Colin Walters <walters@redhat.com> - 2015.7-4
eb6277
- Rebuild for CentOS update to libhif
eb6277
eb6277
* Tue Jun 16 2015 Colin Walters <walters@redhat.com> - 2015.7-3
eb6277
- Rebuild to pick up hif_source_set_required()
eb6277
eb6277
* Mon Jun 15 2015 Colin Walters <walters@redhat.com> - 2015.7-2
eb6277
- New upstream version
eb6277
eb6277
* Tue Jun 09 2015 Colin Walters <walters@redhat.com> - 2015.6-2
eb6277
- New upstream version
eb6277
eb6277
* Tue May 12 2015 Colin Walters <walters@redhat.com> - 2015.5-3
eb6277
- Add patch to fix rawhide composes
eb6277
eb6277
* Mon May 11 2015 Colin Walters <walters@redhat.com> - 2015.5-2
eb6277
- New upstream release
eb6277
  Adds shared library and -devel subpackage
eb6277
eb6277
* Fri Apr 10 2015 Colin Walters <walters@redhat.com> - 2015.4-2
eb6277
- New upstream release
eb6277
  Port to libhif, drops dependency on yum.
eb6277
eb6277
* Thu Apr 09 2015 Colin Walters <walters@redhat.com> - 2015.3-8
eb6277
- Cherry pick f21 patch to disable read only /etc with yum which
eb6277
  breaks when run inside docker
eb6277
eb6277
* Wed Apr 08 2015 Colin Walters <walters@redhat.com> - 2015.3-7
eb6277
- Add patch to use yum-deprecated
eb6277
  Resolves: #1209695
eb6277
eb6277
* Fri Feb 27 2015 Colin Walters <walters@redhat.com> - 2015.3-5
eb6277
- Drop /usr/bin/atomic, now provided by the "atomic" package
eb6277
eb6277
* Fri Feb 06 2015 Dennis Gilmore <dennis@ausil.us> - 2015.3-4
eb6277
- add git to BuildRequires
eb6277
eb6277
* Thu Feb 05 2015 Colin Walters <walters@redhat.com> - 2015.3-3
eb6277
- Adapt to Hawkey 0.5.3 API break
eb6277
eb6277
* Thu Feb 05 2015 Dennis Gilmore <dennis@ausil.us> - 2015.3-3
eb6277
- rebuild for libhawkey soname bump
eb6277
eb6277
* Fri Jan 23 2015 Colin Walters <walters@redhat.com> - 2015.3-2
eb6277
- New upstream release
eb6277
eb6277
* Thu Jan 08 2015 Colin Walters <walters@redhat.com> - 2015.2-1
eb6277
- New upstream release
eb6277
eb6277
* Wed Dec 17 2014 Colin Walters <walters@redhat.com> - 2014.114-2
eb6277
- New upstream release
eb6277
eb6277
* Tue Nov 25 2014 Colin Walters <walters@redhat.com> - 2014.113-1
eb6277
- New upstream release
eb6277
eb6277
* Mon Nov 24 2014 Colin Walters <walters@redhat.com> - 2014.112-1
eb6277
- New upstream release
eb6277
eb6277
* Mon Nov 17 2014 Colin Walters <walters@redhat.com> - 2014.111-1
eb6277
- New upstream release
eb6277
eb6277
* Fri Nov 14 2014 Colin Walters <walters@redhat.com> - 2014.110-1
eb6277
- New upstream release
eb6277
eb6277
* Fri Oct 24 2014 Colin Walters <walters@redhat.com> - 2014.109-1
eb6277
- New upstream release
eb6277
eb6277
* Sat Oct 04 2014 Colin Walters <walters@redhat.com> - 2014.107-2
eb6277
- New upstream release
eb6277
eb6277
* Mon Sep 08 2014 Colin Walters <walters@redhat.com> - 2014.106-3
eb6277
- New upstream release
eb6277
- Bump requirement on ostree
eb6277
eb6277
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.105-3
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
eb6277
eb6277
* Fri Aug 08 2014 Colin Walters <walters@verbum.org> - 2014.105-2
eb6277
- New upstream release
eb6277
eb6277
* Sun Jul 13 2014 Colin Walters <walters@verbum.org>
eb6277
- New upstream release
eb6277
eb6277
* Sat Jun 21 2014 Colin Walters <walters@verbum.org>
eb6277
- New upstream release
eb6277
- Bump OSTree requirements
eb6277
- Enable hawkey package diff, we have new enough versions
eb6277
  of libsolv/hawkey
eb6277
- Enable /usr/bin/atomic symbolic link
eb6277
eb6277
* Tue Jun 10 2014 Colin Walters <walters@verbum.org>
eb6277
- New upstream git snapshot
eb6277
eb6277
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.101-2
eb6277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
eb6277
eb6277
* Fri May 30 2014 Colin Walters <walters@verbum.org>
eb6277
- New upstream release
eb6277
eb6277
* Fri May 23 2014 Colin Walters <walters@verbum.org>
eb6277
- Previous autobuilder code is split off into rpm-ostree-toolbox
eb6277
eb6277
* Sun Apr 13 2014 Colin Walters <walters@verbum.org>
eb6277
- New upstream release
eb6277
eb6277
* Tue Apr 08 2014 Colin Walters <walters@verbum.org>
eb6277
- Drop requires on yum to allow minimal images without it
eb6277
eb6277
* Mon Mar 31 2014 Colin Walters <walters@verbum.org>
eb6277
- New upstream release
eb6277
eb6277
* Sat Mar 22 2014 Colin Walters <walters@verbum.org> - 2014.6.3.g5707fa7-2
eb6277
- Bump ostree version requirement
eb6277
eb6277
* Sat Mar 22 2014 Colin Walters <walters@verbum.org> - 2014.6.3.g5707fa7-1
eb6277
- New git snapshot, add rpm-ostree-sign to file list
eb6277
eb6277
* Sat Mar 22 2014 Colin Walters <walters@verbum.org> - 2014.6-1
eb6277
- New upstream version
eb6277
eb6277
* Fri Mar 07 2014 Colin Walters <walters@verbum.org> - 2014.5-1
eb6277
- Initial package
eb6277