Blame SPECS/rpm-ostree.spec

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