diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f7cc0bd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/rpm-ostree-2018.8.tar.xz diff --git a/.rpm-ostree.metadata b/.rpm-ostree.metadata new file mode 100644 index 0000000..64f8f59 --- /dev/null +++ b/.rpm-ostree.metadata @@ -0,0 +1 @@ +5cd96fcc7f2ced01a0e4803ab956cf508d727e6a SOURCES/rpm-ostree-2018.8.tar.xz diff --git a/SOURCES/0001-Backport-f50f9e8d-to-v2018.8-for-RHEL8.patch b/SOURCES/0001-Backport-f50f9e8d-to-v2018.8-for-RHEL8.patch new file mode 100644 index 0000000..b350dae --- /dev/null +++ b/SOURCES/0001-Backport-f50f9e8d-to-v2018.8-for-RHEL8.patch @@ -0,0 +1,183 @@ +From 603f7e1d6ca4b0dffdb0275550a75e67d7a04623 Mon Sep 17 00:00:00 2001 +From: Jonathan Lebon +Date: Thu, 11 Oct 2018 14:16:02 -0400 +Subject: [PATCH] Backport f50f9e8d to v2018.8 for RHEL8 + +We don't want to use cbindgen there, we want to use the vendored +rpmostree-rust.h. +--- + Makefile-rpm-ostree.am | 22 +++++++++++++++++++--- + bindgen/.gitignore | 2 ++ + bindgen/Cargo.toml | 12 ++++++++++++ + rust/build.rs => bindgen/src/main.rs | 10 ++++++---- + configure.ac | 12 ++++++++++++ + packaging/make-git-snapshot.sh | 7 +++++++ + rust/Cargo.toml | 4 ---- + 7 files changed, 58 insertions(+), 11 deletions(-) + create mode 100644 bindgen/.gitignore + create mode 100644 bindgen/Cargo.toml + rename rust/build.rs => bindgen/src/main.rs (61%) + +diff --git a/Makefile-rpm-ostree.am b/Makefile-rpm-ostree.am +index 50a57e8e..9198961b 100644 +--- a/Makefile-rpm-ostree.am ++++ b/Makefile-rpm-ostree.am +@@ -82,6 +82,16 @@ if BUILDOPT_NEW_NAME + INSTALL_DATA_HOOKS += install-bin-hook + endif + ++if !HAVE_PREBUILT_CBINDGEN ++if !HAVE_EXTERNAL_CBINDGEN ++rpmostree-bindgen: bindgen/Cargo.toml bindgen/src/main.rs ++ cd $(top_srcdir)/bindgen && \ ++ export CARGO_TARGET_DIR=@abs_top_builddir@/bindgen-target && \ ++ $(cargo) build --verbose && \ ++ ln -sf $${CARGO_TARGET_DIR}/debug/rpmostree-bindgen $(abs_top_builddir)/rpmostree-bindgen ++endif ++endif ++ + librpmostree_rust_path = @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/librpmostree_rust.a + # If the target directory exists, use --frozen; we don't + # want to (by default) touch the Internet during builds here. +@@ -95,11 +105,17 @@ $(librpmostree_rust_path): Makefile $(LIBRPMOSTREE_RUST_SRCS) + $(cargo) build --verbose $${frozen} $(CARGO_RELEASE_ARGS) + EXTRA_DIST += $(LIBRPMOSTREE_RUST_SRCS) rust/Cargo.lock + +-# See rust/build.rs - it uses cbindgen as part of the Rust build ++# Generate bindings from Rust to C ++if !HAVE_PREBUILT_CBINDGEN ++if HAVE_EXTERNAL_CBINDGEN + rpmostree-rust.h: $(librpmostree_rust_path) +- $(AM_V_GEN) src=$$(find @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/ -name 'rpmostree-rust.h') && \ +- test -n "$${src}" && ln -sfr "$${src}" rpmostree-rust.h ++ $(AM_V_GEN) cbindgen -c rust/cbindgen.toml -o $@ $(top_srcdir)/rust ++else ++rpmostree-rust.h: $(librpmostree_rust_path) rpmostree-bindgen ++ $(AM_V_GEN) ./rpmostree-bindgen $(top_srcdir)/rust ++endif + BUILT_SOURCES += rpmostree-rust.h ++endif + + rpm_ostree_CFLAGS += $(PKGDEP_RPMOSTREE_RS_CFLAGS) + rpm_ostree_LDADD += $(librpmostree_rust_path) $(PKGDEP_RPMOSTREE_RS_LIBS) +diff --git a/bindgen/.gitignore b/bindgen/.gitignore +new file mode 100644 +index 00000000..fa8d85ac +--- /dev/null ++++ b/bindgen/.gitignore +@@ -0,0 +1,2 @@ ++Cargo.lock ++target +diff --git a/bindgen/Cargo.toml b/bindgen/Cargo.toml +new file mode 100644 +index 00000000..5a9e09ef +--- /dev/null ++++ b/bindgen/Cargo.toml +@@ -0,0 +1,12 @@ ++[package] ++name = "rpmostree-bindgen" ++version = "0.1.0" ++authors = ["Colin Walters "] ++ ++[dependencies] ++cbindgen = "0.6.3" ++ ++# Might as well keep these from the main Rust source ++[profile.release] ++panic = "abort" ++debug = true +diff --git a/rust/build.rs b/bindgen/src/main.rs +similarity index 61% +rename from rust/build.rs +rename to bindgen/src/main.rs +index b2e487ee..502a021d 100644 +--- a/rust/build.rs ++++ b/bindgen/src/main.rs +@@ -4,12 +4,14 @@ + extern crate cbindgen; + + fn run() -> Result<(), String> { +- let out_dir_v = std::env::var("OUT_DIR").expect("OUT_DIR is unset"); +- let out_dir = std::path::Path::new(&out_dir_v); +- let bindings = cbindgen::generate(std::path::Path::new(".")).map_err(|e| e.to_string())?; ++ let args: Vec = std::env::args().collect(); ++ let rustdir = std::path::Path::new(&args[1]); ++ let out = std::path::Path::new("rpmostree-rust.h"); ++ ++ let bindings = cbindgen::generate(rustdir).map_err(|e| e.to_string())?; + // This uses unwraps internally; it'd be good to submit a patch + // to add a Result-based API. +- bindings.write_to_file(out_dir.join("rpmostree-rust.h")); ++ bindings.write_to_file(out); + Ok(()) + } + +diff --git a/configure.ac b/configure.ac +index 89cb2add..3d768e7d 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -213,6 +213,17 @@ AS_IF([test -z "$cargo"], [AC_MSG_ERROR([cargo is required for --enable-rust])]) + AC_PATH_PROG([rustc], [rustc]) + AS_IF([test -z "$rustc"], [AC_MSG_ERROR([rustc is required for --enable-rust])]) + ++dnl https://github.com/projectatomic/rpm-ostree/pull/1573 ++dnl We support 3 modes for bindgen: ++dnl - External /usr/bin/cbindgen (Fedora + CI) ++dnl - Downloading it from crates.io (CentOS + CI builds) ++dnl - Not running it at all, and using a pre-built rpmostree-rust.h (Koji) ++AS_IF([test -d "${srcdir}"/rust/vendor], ++ [cbindgen=dist], ++ [AC_PATH_PROG([cbindgen], [cbindgen])]) ++AM_CONDITIONAL(HAVE_PREBUILT_CBINDGEN, [test "${cbindgen}" = "dist"]) ++AM_CONDITIONAL(HAVE_EXTERNAL_CBINDGEN, [test -n "${cbindgen}" && test "${cbindgen}" != dist]) ++ + AC_MSG_CHECKING(whether to build in debug mode) + debug_release=release + if $(echo $CFLAGS |grep -q -E "(-O0|-Og)"); then +@@ -279,4 +290,5 @@ echo " + bubblewrap: $with_bubblewrap + gtk-doc: $enable_gtk_doc + rust: $rust_debug_release ++ cbindgen: ${cbindgen:-internal} + " +diff --git a/packaging/make-git-snapshot.sh b/packaging/make-git-snapshot.sh +index bbcf0092..da285e8c 100755 +--- a/packaging/make-git-snapshot.sh ++++ b/packaging/make-git-snapshot.sh +@@ -47,4 +47,11 @@ mkdir ${tmpd} && touch ${tmpd}/.tmp + cp ${TOP}/rust/cargo-vendor-config .cargo/config + tar --transform="s,^,${PKG_VER}/rust/," -rf ${TARFILE_TMP} * .cargo/ + ) ++ ++# And finally, vendor rpmostree-rust.h; it's generated by cbindgen, ++# and it's easier than vendoring all of the source for that too. ++# This is currently the *only* generated file we treat this way. See also ++# https://github.com/projectatomic/rpm-ostree/pull/1573 ++(cd ${srcdir} && tar --transform "s,^,${PKG_VER}/," -rf ${TARFILE_TMP} rpmostree-rust.h) ++ + mv ${TARFILE_TMP} ${TARFILE} +diff --git a/rust/Cargo.toml b/rust/Cargo.toml +index ee95b012..258da5fa 100644 +--- a/rust/Cargo.toml ++++ b/rust/Cargo.toml +@@ -2,7 +2,6 @@ + name = "rpmostree-rust" + version = "0.1.0" + authors = ["Colin Walters "] +-build = "build.rs" + + [dependencies] + serde = "1.0" +@@ -17,9 +16,6 @@ tempfile = "3.0.3" + openat = "0.1.15" + curl = "0.4.14" + +-[build-dependencies] +-cbindgen = "0.6.3" +- + [lib] + name = "rpmostree_rust" + path = "src/lib.rs" +-- +2.17.1 + diff --git a/SPECS/rpm-ostree.spec b/SPECS/rpm-ostree.spec new file mode 100644 index 0000000..c0dd32c --- /dev/null +++ b/SPECS/rpm-ostree.spec @@ -0,0 +1,592 @@ +# Upstream has --enable-rust, but let's use it by default in Fedora +# Note the Rust sources are in the tarball using cargo-vendor. +# For RHEL > 7 we need the toolset. +%if 0%{?fedora} >= 28 || 0%{?rhel} > 7 + %bcond_without rust + %if 0%{?rhel} > 7 + %define rusttoolset_version rust-toolset-1.26 + %define rusttoolset scl enable %{rusttoolset_version} -- + %endif +%else + %bcond_with rust +%endif + +Summary: Hybrid image/package system +Name: rpm-ostree +Version: 2018.8 +Release: 2%{?dist} +#VCS: https://github.com/cgwalters/rpm-ostree +# This tarball is generated via "cd packaging && make -f Makefile.dist-packaging dist-snapshot" +# in the upstream git. If rust is enabled, it contains vendored sources. +Source0: rpm-ostree-%{version}.tar.xz +License: LGPLv2+ +URL: https://github.com/projectatomic/rpm-ostree + +Patch0: 0001-Backport-f50f9e8d-to-v2018.8-for-RHEL8.patch + +%if %{with rust} + %if !%{defined rust_arches} + # It's not defined yet in the base CentOS7 root + %define rust_arches x86_64 i686 armv7hl aarch64 ppc64 ppc64le s390x + %endif # defined rust_arches +ExclusiveArch: %{rust_arches} + %if %{defined rusttoolset_version} +BuildRequires: %{rusttoolset_version}-cargo +BuildRequires: %{rusttoolset_version}-rust +BuildRequires: %{rusttoolset_version}-runtime + %else + # This one is only in Fedora, we're not actually using it right now + # but we may in the future. + %if 0%{?fedora} >= 28 +BuildRequires: rust-packaging + %endif +BuildRequires: cargo + %endif # defined rusttoolset_version +%endif # with_rust + +# For the autofiles bits below +BuildRequires: /usr/bin/python3 +# We always run autogen.sh +BuildRequires: autoconf automake libtool git +# For docs +BuildRequires: chrpath +BuildRequires: gtk-doc +BuildRequires: gperf +BuildRequires: gnome-common +BuildRequires: /usr/bin/g-ir-scanner +# Core requirements +# Easy way to check this: `objdump -p /path/to/rpm-ostree | grep LIBOSTREE` and pick the highest +BuildRequires: pkgconfig(ostree-1) >= 2018.6 +BuildRequires: pkgconfig(polkit-gobject-1) +BuildRequires: pkgconfig(json-glib-1.0) +BuildRequires: pkgconfig(rpm) +BuildRequires: pkgconfig(libarchive) +BuildRequires: pkgconfig(libsystemd) +BuildRequires: libcap-devel +BuildRequires: libattr-devel + +# We currently interact directly with librepo +BuildRequires: pkgconfig(librepo) + +# Needed by curl-rust +BuildRequires: pkgconfig(libcurl) + +# libdnf bundling +# We're using RPATH to pick up our bundled version +%global __requires_exclude ^libdnf[.]so[.].*$ + +# Our bundled libdnf.so.1 is for us only +%global __provides_exclude_from ^%{_libdir}/%{name}/.*$ + +BuildRequires: cmake +BuildRequires: pkgconfig(expat) +BuildRequires: pkgconfig(check) +%if (0%{?rhel} != 0 && 0%{?rhel} <= 7) +BuildRequires: libsolv-devel +%else +BuildRequires: pkgconfig(libsolv) +%endif + +# We need g++ for libdnf +BuildRequires: gcc-c++ + +# In CentOS7/RHEL the package is client-only right now, but we can do both +%if 0%{?rhel} != 0 && 0%{?rhel} <= 7 +Provides: rpm-ostree-client +%endif + +# For now...see https://github.com/projectatomic/rpm-ostree/pull/637 +# and https://github.com/fedora-infra/fedmsg-atomic-composer/pull/17 +# etc. We'll drop this dependency at some point in the future when +# rpm-ostree wraps more of ostree (such as `ostree admin unlock` etc.) +Requires: ostree +Requires: bubblewrap +Requires: fuse + +Requires: %{name}-libs%{?_isa} = %{version}-%{release} + +%description +rpm-ostree is a hybrid image/package system. It supports +"composing" packages on a build server into an OSTree repository, +which can then be replicated by client systems with atomic upgrades. +Additionally, unlike many "pure" image systems, with rpm-ostree +each client system can layer on additional packages, providing +a "best of both worlds" approach. + +%package libs +Summary: Shared library for rpm-ostree +Group: Development/Libraries + +%description libs +The %{name}-libs package includes the shared library for %{name}. + +%package devel +Summary: Development headers for %{name} +Group: Development/Libraries +Requires: %{name}-libs%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package includes the header files for %{name}-libs. + +%prep +%autosetup -Sgit -n %{name}-%{version} + +%build +%{?rusttoolset} env NOCONFIGURE=1 ./autogen.sh +# Override the invocation of ./configure, since %%configure is multi-line, we +# can't just prefix it with scl enable. +%define _configure %{?rusttoolset} ./configure +%configure --disable-silent-rules --enable-gtk-doc \ + %{?with_rust:--enable-rust} +%{?rusttoolset} make %{?_smp_mflags} + +%install +%{?rusttoolset} make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p -c" +find $RPM_BUILD_ROOT -name '*.la' -delete + +# I try to do continuous delivery via rpmdistro-gitoverlay while +# reusing the existing spec files. Currently RPM only supports +# mandatory file entries. What this is doing is making each file +# entry optional - if it exists it will be picked up. That +# way the same spec file works more easily across multiple versions where e.g. an +# older version might not have a systemd unit file. +cat > autofiles.py < 0: + sys.stderr.write('{0} matched {1} files\n'.format(line, len(files))) + sys.stdout.write(line + '\n') + else: + sys.stderr.write('{0} did not match any files\n'.format(line)) +EOF +PYTHON=python3 +if ! test -x /usr/bin/python3; then + PYTHON=python2 +fi +$PYTHON autofiles.py > files \ + '%{_bindir}/*' \ + '%{_libdir}/%{name}' \ + '%{_mandir}/man*/*' \ + '%{_sysconfdir}/dbus-1/system.d/*' \ + '%{_sysconfdir}/rpm-ostreed.conf' \ + '%{_prefix}/lib/systemd/system/*' \ + '%{_libexecdir}/rpm-ostree*' \ + '%{_datadir}/polkit-1/actions/*.policy' \ + '%{_datadir}/dbus-1/system-services' + +$PYTHON autofiles.py > files.lib \ + '%{_libdir}/*.so.*' \ + '%{_libdir}/girepository-1.0/*.typelib' + +$PYTHON autofiles.py > files.devel \ + '%{_libdir}/lib*.so' \ + '%{_includedir}/*' \ + '%{_datadir}/dbus-1/interfaces/org.projectatomic.rpmostree1.xml' \ + '%{_libdir}/pkgconfig/*' \ + '%{_datadir}/gtk-doc/html/*' \ + '%{_datadir}/gir-1.0/*-1.0.gir' + +%files -f files +%doc COPYING README.md + +%files libs -f files.lib + +%files devel -f files.devel + +%changelog +* Mon Oct 15 2018 Jonathan Lebon - 2018.8-2 +- Add new source and patch to drop cbindgen requirement + +* Tue Sep 11 2018 Jonathan Lebon - 2018.8-1 +- New upstream version + +* Thu Aug 09 2018 Jonathan Lebon - 2018.7-1 +- New upstream version + +* Wed Aug 01 2018 Jonathan Lebon - 2018.6.42.gda27b94b-1 +- git master snapshot for https://bugzilla.redhat.com/show_bug.cgi?id=1565647 + +* Mon Jul 30 2018 Colin Walters - 2018.6-4 +- Backport patch for https://bugzilla.redhat.com/show_bug.cgi?id=1607223 + from https://github.com/projectatomic/rpm-ostree/pull/1469 +- Also https://github.com/projectatomic/rpm-ostree/pull/1461 + +* Mon Jul 16 2018 Colin Walters - 2018.6-3 +- Make build python3-only compatible for distributions that want that + +* Fri Jun 29 2018 Jonathan Lebon - 2018.6-2 +- Rebuild for yummy Rusty bitsy + +* Fri Jun 29 2018 Jonathan Lebon - 2018.6-1 +- New upstream version + +* Tue May 15 2018 Jonathan Lebon - 2018.5-1 +- New upstream version + +* Mon Mar 26 2018 Jonathan Lebon - 2018.4-1 +- New upstream version + +* Sun Mar 18 2018 Iryna Shcherbina - 2018.3-4 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Wed Mar 07 2018 Jonathan Lebon - 2018.3-3 +- Add BR on gcc-c++ + +* Thu Mar 01 2018 Dusty Mabe - 2018.3-2 +- backport treating FUSE as netfs +- See https://github.com/projectatomic/rpm-ostree/pull/1285 + +* Sun Feb 18 2018 Jonathan Lebon - 2018.3-1 +- New upstream version (minor bugfix release) + +* Fri Feb 16 2018 Jonathan Lebon - 2018.2-1 +- New upstream version + +* Fri Feb 09 2018 Fedora Release Engineering - 2018.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Jan 19 2018 Dusty Mabe - 2018.1-2 +- Revert the ostree:// formatting in the output. +- See https://github.com/projectatomic/rpm-ostree/pull/1136#issuecomment-358122137 + +* Mon Jan 15 2018 Colin Walters - 2018.1-1 +- https://github.com/projectatomic/rpm-ostree/releases/tag/v2018.1 + +* Tue Dec 05 2017 Jonathan Lebon - 2017.11-1 +- New upstream version + +* Wed Nov 22 2017 Colin Walters - 2017.10-3 +- Backport patch for NFS issues +- https://pagure.io/atomic-wg/issue/387 + +* Sun Nov 12 2017 Jonathan Lebon - 2017.10-2 +- Backport fix for --repo handling + https://github.com/projectatomic/rpm-ostree/pull/1101 + +* Thu Nov 02 2017 Colin Walters - 2017.10-1 +- https://github.com/projectatomic/rpm-ostree/releases/tag/v2017.10 + +* Mon Sep 25 2017 Jonathan Lebon - 2017.9-1 +- New upstream version + +* Mon Aug 21 2017 Jonathan Lebon - 2017.8-2 +- Patch to allow metadata_expire=0 + https://github.com/projectatomic/rpm-ostree/issues/930 + +* Fri Aug 18 2017 Jonathan Lebon - 2017.8-1 +- New upstream version + +* Thu Aug 10 2017 Igor Gnatenko - 2017.7-7 +- Rebuilt for RPM soname bump + +* Thu Aug 10 2017 Igor Gnatenko - 2017.7-6 +- Rebuilt for RPM soname bump + +* Thu Aug 03 2017 Fedora Release Engineering - 2017.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2017.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Jonathan Lebon - 2017.7-3 +- Tweak new pkg name to rpm-ostree-libs to be more consistent with the main + package name and ostree's ostree-libs. + +* Fri Jul 21 2017 Colin Walters - 2017.7-2 +- Enable introspection, rename shared lib to librpmostree + Due to an oversight, we were not actually building with introspection. + Fix that. And while we are here, split out a shared library package, + so that e.g. containers can do `from gi.repository import RpmOstree` + without dragging in the systemd service, etc. (RHBZ#1473701) + +* Mon Jul 10 2017 Jonathan Lebon - 2017.7-1 +- New upstream version + +* Sat Jun 24 2017 Colin Walters +- Update to git snapshot to help debug compose failure + +* Wed May 31 2017 Jonathan Lebon - 2017.6-3 +- Make sure we don't auto-provide libdnf (RHBZ#1457089) + +* Fri May 26 2017 Jonathan Lebon - 2017.6-2 +- Bump libostree dep + +* Fri May 26 2017 Jonathan Lebon - 2017.6-1 +- New upstream version + +* Fri Apr 28 2017 Jonathan Lebon - 2017.5-2 +- Bump libostree dep and rebuild in override + +* Fri Apr 28 2017 Jonathan Lebon - 2017.5-1 +- New upstream version + +* Fri Apr 14 2017 Jonathan Lebon - 2017.4-2 +- Backport patch to allow unprivileged `rpm-ostree status` + +* Thu Apr 13 2017 Jonathan Lebon - 2017.4-1 +- New upstream version. + +* Fri Apr 07 2017 Colin Walters - 2017.3-4 +- Backport patch to add API devices for running on CentOS 7 + https://github.com/projectatomic/rpm-ostree/issues/727 + +* Thu Mar 16 2017 Colin Walters - 2017.3-3 +- Add patch to fix f26 altfiles + +* Fri Mar 10 2017 Colin Walters - 2017.3-2 +- Backport patch for running in koji + +* Mon Mar 06 2017 Colin Walters - 2017.3-1 +- New upstream version + Fixes: CVE-2017-2623 + Resolves: #1422157 + +* Fri Mar 03 2017 Colin Walters - 2017.2-5 +- Add patch to bump requires for ostree + +* Mon Feb 27 2017 Colin Walters - 2017.2-4 +- Add requires on ostree + +* Sat Feb 18 2017 Colin Walters - 2017.2-3 +- Add patch for gperf 3.1 compatibility + Resolves: #1424268 + +* Wed Feb 15 2017 Colin Walters - 2017.2-2 +- New upstream version + +* Sat Feb 11 2017 Fedora Release Engineering - 2017.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Jan 27 2017 Colin Walters - 2017.1-3 +- Back out netns usage for now for https://pagure.io/releng/issue/6602 + +* Sun Jan 22 2017 Colin Walters - 2017.1-2 +- New upstream version + +* Mon Dec 12 2016 walters@redhat.com - 2016.13-1 +- New upstream version + +* Sat Nov 26 2016 walters@redhat.com - 2016.12-4 +- Backport patch to fix install-langs + +* Tue Nov 15 2016 walters@redhat.com - 2016.11-2 +- New upstream version + +* Mon Oct 24 2016 walters@verbum.org - 2016.11-1 +- New upstream version + +* Fri Oct 07 2016 walters@redhat.com - 2016.10-1 +- New upstream version + +* Thu Sep 08 2016 walters@redhat.com - 2016.9-1 +- New upstream version + +* Thu Sep 08 2016 walters@redhat.com - 2016.8-1 +- New upstream version + +* Thu Sep 01 2016 walters@redhat.com - 2016.7-4 +- Add requires on fuse https://github.com/projectatomic/rpm-ostree/issues/443 + +* Wed Aug 31 2016 Colin Walters - 2016.7-3 +- Backport patch for running inside mock + +* Sat Aug 13 2016 walters@redhat.com - 2016.6-3 +- New upstream version + +* Sat Aug 13 2016 Colin Walters - 2016.6-2 +- Backport patches from master to fix non-containerized composes + +* Thu Aug 11 2016 walters@redhat.com - 2016.6-1 +- New upstream version + +* Mon Jul 25 2016 Colin Walters - 2016.5-1 +- New upstream version + +* Fri Jul 08 2016 walters@verbum.org - 2016.4-2 +- Require bubblewrap + +* Fri Jul 08 2016 walters@redhat.com - 2016.4-1 +- New upstream version + +* Thu Jul 07 2016 Colin Walters - 2016.3.5.g4219a96-1 +- Backport fixes from https://github.com/projectatomic/rpm-ostree/commits/2016.3-fixes + +* Wed Jun 15 2016 Colin Walters - 2016.3.3.g17fb980-2 +- Backport fixes from https://github.com/projectatomic/rpm-ostree/commits/2016.3-fixes + +* Fri May 20 2016 Colin Walters - 2016.3-2 +- New upstream version + +* Thu Mar 31 2016 Colin Walters - 2016.1-3 +- Backport patch to fix Fedora composes writing data into source file:/// URIs + +* Thu Mar 24 2016 Colin Walters - 2016.1-2 +- New upstream version + +* Tue Feb 23 2016 Colin Walters - 2015.11.43.ga2c052b-2 +- New git snapshot, just getting some new code out there +- We are now bundling a copy of libhif, as otherwise coordinated releases with + PackageKit/dnf would be required, and we are not ready for that yet. + +* Wed Feb 10 2016 Matthew Barnes - 2015.11-3 +- Fix URL: https://github.com/projectatomic/rpm-ostree + +* Thu Feb 04 2016 Fedora Release Engineering - 2015.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Dec 15 2015 Colin Walters - 2015.11-1 +- New upstream version + +* Sat Nov 21 2015 Colin Walters - 2015.10-1 +- New upstream version + +* Mon Nov 09 2015 Colin Walters - 2015.9-4 +- Fix files list for -devel, which should in turn fix Anaconda + builds which pull in rpm-ostree, but should not have devel bits. + +* Sat Oct 31 2015 Colin Walters - 2015.9-3 +- Add patch that should fix bodhis use of --workdir-tmpfs + +* Sat Sep 05 2015 Kalev Lember - 2015.9-2 +- Rebuilt for librpm soname bump + +* Wed Aug 26 2015 Colin Walters - 2015.9-2 +- New upstream version + +* Tue Aug 04 2015 Colin Walters - 2015.8-1 +- New upstream version + +* Mon Jul 27 2015 Colin Walters - 2015.7-5 +- rebuilt + +* Mon Jul 20 2015 Colin Walters - 2015.7-4 +- Rebuild for CentOS update to libhif + +* Tue Jun 16 2015 Colin Walters - 2015.7-3 +- Rebuild to pick up hif_source_set_required() + +* Mon Jun 15 2015 Colin Walters - 2015.7-2 +- New upstream version + +* Tue Jun 09 2015 Colin Walters - 2015.6-2 +- New upstream version + +* Tue May 12 2015 Colin Walters - 2015.5-3 +- Add patch to fix rawhide composes + +* Mon May 11 2015 Colin Walters - 2015.5-2 +- New upstream release + Adds shared library and -devel subpackage + +* Fri Apr 10 2015 Colin Walters - 2015.4-2 +- New upstream release + Port to libhif, drops dependency on yum. + +* Thu Apr 09 2015 Colin Walters - 2015.3-8 +- Cherry pick f21 patch to disable read only /etc with yum which + breaks when run inside docker + +* Wed Apr 08 2015 Colin Walters - 2015.3-7 +- Add patch to use yum-deprecated + Resolves: #1209695 + +* Fri Feb 27 2015 Colin Walters - 2015.3-5 +- Drop /usr/bin/atomic, now provided by the "atomic" package + +* Fri Feb 06 2015 Dennis Gilmore - 2015.3-4 +- add git to BuildRequires + +* Thu Feb 05 2015 Colin Walters - 2015.3-3 +- Adapt to Hawkey 0.5.3 API break + +* Thu Feb 05 2015 Dennis Gilmore - 2015.3-3 +- rebuild for libhawkey soname bump + +* Fri Jan 23 2015 Colin Walters - 2015.3-2 +- New upstream release + +* Thu Jan 08 2015 Colin Walters - 2015.2-1 +- New upstream release + +* Wed Dec 17 2014 Colin Walters - 2014.114-2 +- New upstream release + +* Tue Nov 25 2014 Colin Walters - 2014.113-1 +- New upstream release + +* Mon Nov 24 2014 Colin Walters - 2014.112-1 +- New upstream release + +* Mon Nov 17 2014 Colin Walters - 2014.111-1 +- New upstream release + +* Fri Nov 14 2014 Colin Walters - 2014.110-1 +- New upstream release + +* Fri Oct 24 2014 Colin Walters - 2014.109-1 +- New upstream release + +* Sat Oct 04 2014 Colin Walters - 2014.107-2 +- New upstream release + +* Mon Sep 08 2014 Colin Walters - 2014.106-3 +- New upstream release +- Bump requirement on ostree + +* Mon Aug 18 2014 Fedora Release Engineering - 2014.105-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Fri Aug 08 2014 Colin Walters - 2014.105-2 +- New upstream release + +* Sun Jul 13 2014 Colin Walters +- New upstream release + +* Sat Jun 21 2014 Colin Walters +- New upstream release +- Bump OSTree requirements +- Enable hawkey package diff, we have new enough versions + of libsolv/hawkey +- Enable /usr/bin/atomic symbolic link + +* Tue Jun 10 2014 Colin Walters +- New upstream git snapshot + +* Sun Jun 08 2014 Fedora Release Engineering - 2014.101-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri May 30 2014 Colin Walters +- New upstream release + +* Fri May 23 2014 Colin Walters +- Previous autobuilder code is split off into rpm-ostree-toolbox + +* Sun Apr 13 2014 Colin Walters +- New upstream release + +* Tue Apr 08 2014 Colin Walters +- Drop requires on yum to allow minimal images without it + +* Mon Mar 31 2014 Colin Walters +- New upstream release + +* Sat Mar 22 2014 Colin Walters - 2014.6.3.g5707fa7-2 +- Bump ostree version requirement + +* Sat Mar 22 2014 Colin Walters - 2014.6.3.g5707fa7-1 +- New git snapshot, add rpm-ostree-sign to file list + +* Sat Mar 22 2014 Colin Walters - 2014.6-1 +- New upstream version + +* Fri Mar 07 2014 Colin Walters - 2014.5-1 +- Initial package +