2013-06-24 17:39:35 +00:00
|
|
|
%global _hardened_build 1
|
|
|
|
|
2015-06-20 10:50:36 +00:00
|
|
|
%ifarch aarch64 %{arm} %{ix86} x86_64 ppc %{power64}
|
2014-03-06 09:55:42 +00:00
|
|
|
%global have_libguestfs 1
|
|
|
|
%endif
|
|
|
|
|
2018-01-26 17:49:22 +00:00
|
|
|
# Architectures where the complete test suite must pass.
|
|
|
|
#
|
|
|
|
# On all other architectures, a simpler test suite must pass. This
|
|
|
|
# omits any tests that run full qemu, since running qemu under TCG is
|
|
|
|
# often broken on non-x86_64 arches.
|
|
|
|
%global complete_test_arches aarch64 x86_64
|
|
|
|
|
2017-11-29 18:08:30 +00:00
|
|
|
# Currently everything has Python 2. RHEL 7 doesn't have Python 3.
|
|
|
|
%if 0%{?rhel} != 7
|
|
|
|
%global have_python3 1
|
|
|
|
%endif
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
Name: nbdkit
|
2018-01-22 20:44:29 +00:00
|
|
|
Version: 1.1.28
|
2018-01-26 17:49:22 +00:00
|
|
|
Release: 2%{?dist}
|
2013-06-24 17:39:35 +00:00
|
|
|
Summary: NBD server
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: https://github.com/libguestfs/nbdkit
|
2016-01-11 18:50:28 +00:00
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
Source0: http://libguestfs.org/download/nbdkit/%{name}-%{version}.tar.gz
|
|
|
|
|
2017-10-20 10:46:28 +00:00
|
|
|
%if 0%{?rhel} == 7
|
|
|
|
# On RHEL 7, nothing in the virt stack is shipped on aarch64 and
|
|
|
|
# libguestfs was not shipped on POWER (fixed in 7.5). We could in
|
|
|
|
# theory make all of this work by having lots more conditionals, but
|
|
|
|
# for now limit this package to x86_64 on RHEL.
|
|
|
|
ExclusiveArch: x86_64
|
|
|
|
%endif
|
|
|
|
|
2018-01-26 17:49:22 +00:00
|
|
|
%ifnarch %{complete_test_arches}
|
|
|
|
BuildRequires: autoconf, automake, libtool
|
|
|
|
%endif
|
2013-06-24 17:39:35 +00:00
|
|
|
BuildRequires: /usr/bin/pod2man
|
2017-09-27 20:14:08 +00:00
|
|
|
BuildRequires: gnutls-devel
|
2017-11-21 22:24:22 +00:00
|
|
|
BuildRequires: libselinux-devel
|
2014-03-06 09:55:42 +00:00
|
|
|
%if 0%{?have_libguestfs}
|
2013-06-25 21:27:24 +00:00
|
|
|
BuildRequires: libguestfs-devel
|
2014-03-06 09:55:42 +00:00
|
|
|
%endif
|
2013-06-24 17:39:35 +00:00
|
|
|
BuildRequires: libvirt-devel
|
|
|
|
BuildRequires: xz-devel
|
|
|
|
BuildRequires: zlib-devel
|
2014-06-21 21:21:32 +00:00
|
|
|
BuildRequires: libcurl-devel
|
2014-02-10 12:02:37 +00:00
|
|
|
BuildRequires: perl-devel
|
2014-02-15 08:26:19 +00:00
|
|
|
BuildRequires: perl(ExtUtils::Embed)
|
2016-10-03 13:27:41 +00:00
|
|
|
BuildRequires: python2-devel
|
2017-11-29 18:08:30 +00:00
|
|
|
%if 0%{?have_python3}
|
2016-10-03 13:27:41 +00:00
|
|
|
BuildRequires: python3-devel
|
2017-10-20 10:46:28 +00:00
|
|
|
%endif
|
2015-06-19 12:58:48 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
|
|
|
# Requires OCaml 4.02.2 which contains fix for
|
|
|
|
# http://caml.inria.fr/mantis/view.php?id=6693
|
|
|
|
BuildRequires: ocaml >= 4.02.2
|
|
|
|
%endif
|
2016-06-08 13:59:47 +00:00
|
|
|
BuildRequires: ruby-devel
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
NBD is a protocol for accessing block devices (hard disks and
|
|
|
|
disk-like things) over the network.
|
|
|
|
|
|
|
|
'nbdkit' is a toolkit for creating NBD servers.
|
|
|
|
|
|
|
|
The key features are:
|
|
|
|
|
|
|
|
* Multithreaded NBD server written in C with good performance.
|
|
|
|
|
|
|
|
* Well-documented, simple plugin API with a stable ABI guarantee.
|
2013-08-04 21:16:45 +00:00
|
|
|
Allows you to export "unconventional" block devices easily.
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
* Liberal license (BSD) allows nbdkit to be linked to proprietary
|
|
|
|
libraries or included in proprietary code.
|
|
|
|
|
|
|
|
You probably want to install one of more plugins (%{name}-plugin-*).
|
|
|
|
|
|
|
|
To develop plugins, install the %{name}-devel package and start by
|
|
|
|
reading the nbdkit(1) and nbdkit-plugin(3) manual pages.
|
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%package basic-plugins
|
|
|
|
Summary: Basic plugins for %{name}
|
2014-06-21 21:21:32 +00:00
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
# For upgrade path, remove these in Fedora 30.
|
|
|
|
Obsoletes: %{name}-plugin-file < 1.1.19-1
|
|
|
|
Obsoletes: %{name}-plugin-nbd < 1.1.19-1
|
|
|
|
Obsoletes: %{name}-plugin-streaming < 1.1.19-1
|
2014-06-21 21:21:32 +00:00
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%description basic-plugins
|
|
|
|
This package contains some basic plugins for %{name} which have only
|
|
|
|
trivial dependencies.
|
|
|
|
|
|
|
|
* nbdkit-file-plugin
|
|
|
|
|
|
|
|
A file serving plugin.
|
|
|
|
|
|
|
|
* nbdkit-memory-plugin
|
|
|
|
|
|
|
|
A virtual memory plugin.
|
|
|
|
|
|
|
|
* nbdkit-nbd-plugin
|
|
|
|
|
|
|
|
An NBD forwarding plugin.
|
|
|
|
|
|
|
|
It provides an NBD server that forwards all traffic as a client to
|
|
|
|
another existing NBD server. A primary usage of this setup is to
|
|
|
|
alter the set of features available to the ultimate end client,
|
|
|
|
without having to change the original server (for example, to
|
|
|
|
convert between oldstyle and newtyle, or to add TLS support where
|
|
|
|
the original server lacks it).
|
|
|
|
|
|
|
|
* nbdkit-null-plugin
|
|
|
|
|
|
|
|
A null (bitbucket) plugin.
|
|
|
|
|
2018-01-11 16:46:38 +00:00
|
|
|
* nbdkit-split-plugin
|
|
|
|
|
|
|
|
Concatenate one or more files into a single virtual disk.
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
* nbdkit-streaming-plugin
|
|
|
|
|
|
|
|
A streaming file serving plugin.
|
2014-06-21 21:21:32 +00:00
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
|
|
|
|
%package example-plugins
|
2013-06-24 17:39:35 +00:00
|
|
|
Summary: Example plugins for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
# For upgrade path, remove this in Fedora 30.
|
|
|
|
Obsoletes: %{name}-plugin-examples < 1.1.19-1
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%description example-plugins
|
2013-06-24 17:39:35 +00:00
|
|
|
This package contains example plugins for %{name}.
|
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
# The plugins below have non-trivial dependencies are so are
|
|
|
|
# packaged separately.
|
|
|
|
|
|
|
|
%package plugin-curl
|
|
|
|
Summary: HTTP/FTP/SSH (cURL) plugin for %{name}
|
2013-06-24 17:39:35 +00:00
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%description plugin-curl
|
|
|
|
This package contains cURL (HTTP/FTP/SSH) support for %{name}.
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2014-03-06 09:55:42 +00:00
|
|
|
%if 0%{?have_libguestfs}
|
2013-06-25 21:27:24 +00:00
|
|
|
%package plugin-guestfs
|
|
|
|
Summary: libguestfs plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-guestfs
|
|
|
|
This package is a libguestfs plugin for %{name}.
|
2014-03-06 09:55:42 +00:00
|
|
|
%endif
|
2013-06-25 21:27:24 +00:00
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%package plugin-gzip
|
|
|
|
Summary: GZip file serving plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-gzip
|
|
|
|
This package is a gzip file serving plugin for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%package plugin-libvirt
|
|
|
|
Summary: Libvirt plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-libvirt
|
|
|
|
This package is a libvirt plugin for %{name}. It lets you access
|
|
|
|
libvirt guest disks readonly. It is implemented using the libvirt
|
|
|
|
virDomainBlockPeek API.
|
|
|
|
|
|
|
|
|
2015-06-19 12:58:48 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
|
|
|
%package plugin-ocaml
|
|
|
|
Summary: OCaml plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-ocaml
|
|
|
|
This package lets you run OCaml plugins for %{name}.
|
|
|
|
|
|
|
|
To compile OCaml plugins you will also need to install
|
|
|
|
%{name}-plugin-ocaml-devel.
|
|
|
|
|
|
|
|
|
|
|
|
%package plugin-ocaml-devel
|
|
|
|
Summary: OCaml development environment for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-plugin-ocaml%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-ocaml-devel
|
|
|
|
This package lets you write OCaml plugins for %{name}.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2014-02-10 12:02:37 +00:00
|
|
|
%package plugin-perl
|
|
|
|
Summary: Perl plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-perl
|
|
|
|
This package lets you write Perl plugins for %{name}.
|
|
|
|
|
|
|
|
|
2016-10-03 13:27:41 +00:00
|
|
|
%package plugin-python-common
|
|
|
|
Summary: Python 2 and 3 plugin common files for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-python-common
|
|
|
|
This package contains common files shared between Python 2
|
|
|
|
and Python 3 %{name} plugins.
|
|
|
|
|
|
|
|
You should not install this package directly. Instead install
|
|
|
|
either %{name}-plugin-python2 or %{name}-plugin-python3.
|
|
|
|
|
|
|
|
|
|
|
|
%package plugin-python2
|
|
|
|
Summary: Python 2 plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-plugin-python-common = %{version}-%{release}
|
|
|
|
|
|
|
|
Provides: %{name}-plugin-python = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-python <= %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-python2
|
|
|
|
This package lets you write Python 2 plugins for %{name}.
|
|
|
|
|
|
|
|
|
2017-11-29 18:08:30 +00:00
|
|
|
%if 0%{?have_python3}
|
2016-10-03 13:27:41 +00:00
|
|
|
%package plugin-python3
|
|
|
|
Summary: Python 3 plugin for %{name}
|
2014-02-15 07:42:15 +00:00
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2016-10-03 13:27:41 +00:00
|
|
|
Requires: %{name}-plugin-python-common = %{version}-%{release}
|
2014-02-15 07:42:15 +00:00
|
|
|
|
|
|
|
|
2016-10-03 13:27:41 +00:00
|
|
|
%description plugin-python3
|
|
|
|
This package lets you write Python 3 plugins for %{name}.
|
2017-10-20 10:46:28 +00:00
|
|
|
%endif
|
2014-02-15 07:42:15 +00:00
|
|
|
|
|
|
|
|
2016-06-08 13:59:47 +00:00
|
|
|
%package plugin-ruby
|
|
|
|
Summary: Ruby plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-ruby
|
|
|
|
This package lets you write Ruby plugins for %{name}.
|
|
|
|
|
|
|
|
|
2017-12-05 17:05:28 +00:00
|
|
|
%package plugin-tar
|
|
|
|
Summary: Tar archive plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-tar
|
|
|
|
This package is a tar archive plugin for %{name}.
|
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%package plugin-xz
|
|
|
|
Summary: XZ file serving plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description plugin-xz
|
|
|
|
This package is a xz file serving plugin for %{name}.
|
|
|
|
|
|
|
|
|
2018-01-20 12:05:38 +00:00
|
|
|
%package basic-filters
|
|
|
|
Summary: Basic filters for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description basic-filters
|
|
|
|
This package contains some basic filters for %{name} which have only
|
|
|
|
trivial dependencies.
|
|
|
|
|
2018-01-22 20:44:29 +00:00
|
|
|
* nbdkit-cache-filter
|
|
|
|
|
|
|
|
Server-side cache.
|
|
|
|
|
|
|
|
* nbdkig-cow-filter
|
|
|
|
|
|
|
|
Copy-on-write overlay for read-only plugins.
|
|
|
|
|
2018-01-20 12:05:38 +00:00
|
|
|
* nbdkit-delay-filter
|
|
|
|
|
2018-01-22 20:44:29 +00:00
|
|
|
Inject read and write delays.
|
2018-01-20 12:05:38 +00:00
|
|
|
|
|
|
|
* nbdkit-offset-filter
|
|
|
|
|
2018-01-22 20:44:29 +00:00
|
|
|
Serve an offset and range.
|
2018-01-20 12:05:38 +00:00
|
|
|
|
|
|
|
* nbdkit-partition-filter
|
|
|
|
|
2018-01-22 20:44:29 +00:00
|
|
|
Serve a single partition.
|
2018-01-20 12:05:38 +00:00
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development files and documentation for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2017-12-23 14:35:12 +00:00
|
|
|
Requires: pkgconfig
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains development files and documentation
|
|
|
|
for %{name}. Install this package if you want to develop
|
|
|
|
plugins for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2016-01-11 18:50:28 +00:00
|
|
|
%autopatch -p1
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-01-26 17:49:22 +00:00
|
|
|
%ifnarch %{complete_test_arches}
|
|
|
|
# Simplify the test suite so it doesn't require qemu.
|
|
|
|
sed -i -e '/^if HAVE_LIBGUESTFS/,/^endif HAVE_LIBGUESTFS/d' tests/Makefile.am
|
|
|
|
autoreconf -i
|
|
|
|
%endif
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
# Force immediate binding for hardened build for plugins.
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=977446#c13
|
|
|
|
export LDFLAGS="$LDFLAGS -Wl,-z,now"
|
2016-10-03 13:27:41 +00:00
|
|
|
|
|
|
|
# Build for Python 3 in a separate subdirectory. Upstream does not
|
|
|
|
# support srcdir!=builddir so copy the whole source.
|
|
|
|
copy="$(mktemp -d)"
|
|
|
|
cp -a . "$copy"
|
|
|
|
mv "$copy" python3
|
|
|
|
|
2017-09-27 20:14:08 +00:00
|
|
|
%configure --disable-static --with-tls-priority=@NBDKIT,SYSTEM
|
2013-06-24 17:39:35 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
2017-11-29 18:08:30 +00:00
|
|
|
%if 0%{?have_python3}
|
2016-10-03 13:27:41 +00:00
|
|
|
pushd python3
|
2016-12-14 10:48:29 +00:00
|
|
|
export PYTHON=%{_bindir}/python3
|
2016-10-03 13:27:41 +00:00
|
|
|
%configure --disable-static --disable-perl --disable-ocaml --disable-ruby
|
2016-12-14 10:48:29 +00:00
|
|
|
# Verify that it picked the correct version of Python
|
|
|
|
# to avoid RHBZ#1404631 happening again silently.
|
|
|
|
grep '^PYTHON_VERSION = 3' Makefile
|
2016-10-03 13:27:41 +00:00
|
|
|
make %{?_smp_mflags}
|
2016-12-14 10:48:29 +00:00
|
|
|
unset PYTHON
|
2016-10-03 13:27:41 +00:00
|
|
|
popd
|
2017-10-20 10:46:28 +00:00
|
|
|
%endif
|
2016-10-03 13:27:41 +00:00
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
%install
|
2016-10-03 13:27:41 +00:00
|
|
|
# Install for Python 2 and Python 3 separately.
|
|
|
|
# We do the Python 3 install first since that build is
|
|
|
|
# incomplete.
|
2017-11-29 18:08:30 +00:00
|
|
|
%if 0%{?have_python3}
|
2016-10-03 13:27:41 +00:00
|
|
|
pushd python3
|
|
|
|
%make_install
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd $RPM_BUILD_ROOT%{_libdir}/nbdkit/plugins/
|
|
|
|
mv nbdkit-python-plugin.so nbdkit-python3-plugin.so
|
|
|
|
popd
|
2017-10-20 10:46:28 +00:00
|
|
|
%endif
|
2016-10-03 13:27:41 +00:00
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%make_install
|
|
|
|
|
2016-10-03 13:27:41 +00:00
|
|
|
pushd $RPM_BUILD_ROOT%{_libdir}/nbdkit/plugins/
|
|
|
|
mv nbdkit-python-plugin.so nbdkit-python2-plugin.so
|
|
|
|
# For backwards compatibility, "the" python plugin is Python 2.
|
|
|
|
# Probably we will change this in future if Fedora switches
|
|
|
|
# exclusively to Python 3.
|
|
|
|
ln -s nbdkit-python2-plugin.so nbdkit-python-plugin.so
|
|
|
|
popd
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
# Delete libtool crap.
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -delete
|
|
|
|
|
|
|
|
|
2013-06-25 21:27:24 +00:00
|
|
|
%check
|
2014-09-10 12:10:19 +00:00
|
|
|
# Workaround for broken libvirt (RHBZ#1138604).
|
|
|
|
mkdir -p $HOME/.cache/libvirt
|
|
|
|
|
2015-06-10 11:49:08 +00:00
|
|
|
# Make sure we can see the debug messages (RHBZ#1230160).
|
|
|
|
export LIBGUESTFS_DEBUG=1
|
|
|
|
export LIBGUESTFS_TRACE=1
|
|
|
|
|
2017-12-03 21:21:44 +00:00
|
|
|
make check -j1 || {
|
2016-10-03 13:27:41 +00:00
|
|
|
cat tests/test-suite.log
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2018-01-26 17:49:22 +00:00
|
|
|
%ifnarch %{complete_test_arches}
|
2017-12-05 14:21:39 +00:00
|
|
|
%if 0%{?have_libguestfs}
|
2017-11-29 18:08:30 +00:00
|
|
|
%if 0%{?have_python3}
|
2016-10-03 13:27:41 +00:00
|
|
|
pushd python3
|
2017-12-03 21:21:44 +00:00
|
|
|
make check -j1 TESTS=test-python || {
|
2016-03-09 12:13:16 +00:00
|
|
|
cat tests/test-suite.log
|
|
|
|
exit 1
|
|
|
|
}
|
2016-10-03 13:27:41 +00:00
|
|
|
popd
|
2017-10-20 10:46:28 +00:00
|
|
|
%endif
|
2017-12-05 14:21:39 +00:00
|
|
|
%endif
|
2013-07-16 11:45:37 +00:00
|
|
|
%endif
|
2013-06-25 21:27:24 +00:00
|
|
|
|
|
|
|
|
2015-06-20 10:58:07 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2015-06-19 13:35:35 +00:00
|
|
|
%post plugin-ocaml -p /sbin/ldconfig
|
|
|
|
%postun plugin-ocaml -p /sbin/ldconfig
|
2015-06-20 10:58:07 +00:00
|
|
|
%endif
|
2015-06-19 13:35:35 +00:00
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%files
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_sbindir}/nbdkit
|
|
|
|
%dir %{_libdir}/%{name}
|
|
|
|
%dir %{_libdir}/%{name}/plugins
|
2018-01-20 12:05:38 +00:00
|
|
|
%dir %{_libdir}/%{name}/filters
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_mandir}/man1/nbdkit.1*
|
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%files basic-plugins
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-file-plugin.so
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-memory-plugin.so
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-nbd-plugin.so
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-null-plugin.so
|
2017-12-02 19:51:26 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-split-plugin.so
|
2017-11-30 12:48:21 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-streaming-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-file-plugin.1*
|
|
|
|
%{_mandir}/man1/nbdkit-memory-plugin.1*
|
|
|
|
%{_mandir}/man1/nbdkit-nbd-plugin.1*
|
|
|
|
%{_mandir}/man1/nbdkit-null-plugin.1*
|
2017-12-02 19:51:26 +00:00
|
|
|
%{_mandir}/man1/nbdkit-split-plugin.1*
|
2017-11-30 12:48:21 +00:00
|
|
|
%{_mandir}/man1/nbdkit-streaming-plugin.1*
|
2014-06-21 21:21:32 +00:00
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%files example-plugins
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-example*-plugin.so
|
2017-12-05 08:59:46 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-example4-plugin
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_mandir}/man1/nbdkit-example*-plugin.1*
|
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%files plugin-curl
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-curl-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-curl-plugin.1*
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2014-03-06 09:55:42 +00:00
|
|
|
%if 0%{?have_libguestfs}
|
2013-06-25 21:27:24 +00:00
|
|
|
%files plugin-guestfs
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2013-06-25 21:27:24 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-guestfs-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-guestfs-plugin.1*
|
2014-03-06 09:55:42 +00:00
|
|
|
%endif
|
2013-06-25 21:27:24 +00:00
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%files plugin-gzip
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-gzip-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-gzip-plugin.1*
|
|
|
|
|
|
|
|
|
|
|
|
%files plugin-libvirt
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-libvirt-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-libvirt-plugin.1*
|
|
|
|
|
|
|
|
|
2015-06-19 12:58:48 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
|
|
|
%files plugin-ocaml
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2015-06-19 12:58:48 +00:00
|
|
|
%{_libdir}/libnbdkitocaml.so.*
|
|
|
|
|
|
|
|
%files plugin-ocaml-devel
|
|
|
|
%{_libdir}/libnbdkitocaml.so
|
|
|
|
%{_libdir}/ocaml/NBDKit.*
|
|
|
|
%{_mandir}/man3/nbdkit-ocaml-plugin.3*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2014-02-10 12:02:37 +00:00
|
|
|
%files plugin-perl
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2014-02-10 12:02:37 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-perl-plugin.so
|
2014-02-15 07:42:15 +00:00
|
|
|
%{_mandir}/man3/nbdkit-perl-plugin.3*
|
|
|
|
|
|
|
|
|
2016-10-03 13:27:41 +00:00
|
|
|
%files plugin-python-common
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2014-02-15 07:42:15 +00:00
|
|
|
%{_mandir}/man3/nbdkit-python-plugin.3*
|
2014-02-10 12:02:37 +00:00
|
|
|
|
|
|
|
|
2016-10-03 13:27:41 +00:00
|
|
|
%files plugin-python2
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-python-plugin.so
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-python2-plugin.so
|
|
|
|
|
|
|
|
|
2017-11-29 18:08:30 +00:00
|
|
|
%if 0%{?have_python3}
|
2016-10-03 13:27:41 +00:00
|
|
|
%files plugin-python3
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-python3-plugin.so
|
2017-10-20 10:46:28 +00:00
|
|
|
%endif
|
2016-10-03 13:27:41 +00:00
|
|
|
|
|
|
|
|
2016-06-08 13:59:47 +00:00
|
|
|
%files plugin-ruby
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2016-06-08 13:59:47 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-ruby-plugin.so
|
|
|
|
%{_mandir}/man3/nbdkit-ruby-plugin.3*
|
|
|
|
|
|
|
|
|
2017-12-05 17:05:28 +00:00
|
|
|
%files plugin-tar
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-tar-plugin
|
|
|
|
%{_mandir}/man1/nbdkit-tar-plugin.1*
|
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%files plugin-xz
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-xz-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-xz-plugin.1*
|
|
|
|
|
|
|
|
|
2018-01-20 12:05:38 +00:00
|
|
|
%files basic-filters
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2018-01-22 20:44:29 +00:00
|
|
|
%{_libdir}/%{name}/filters/nbdkit-cache-filter.so
|
|
|
|
%{_libdir}/%{name}/filters/nbdkit-cow-filter.so
|
2018-01-20 12:05:38 +00:00
|
|
|
%{_libdir}/%{name}/filters/nbdkit-delay-filter.so
|
|
|
|
%{_libdir}/%{name}/filters/nbdkit-offset-filter.so
|
|
|
|
%{_libdir}/%{name}/filters/nbdkit-partition-filter.so
|
2018-01-22 20:44:29 +00:00
|
|
|
%{_mandir}/man1/nbdkit-cache-filter.1*
|
|
|
|
%{_mandir}/man1/nbdkit-cow-filter.1*
|
2018-01-20 12:05:38 +00:00
|
|
|
%{_mandir}/man1/nbdkit-delay-filter.1*
|
|
|
|
%{_mandir}/man1/nbdkit-offset-filter.1*
|
|
|
|
%{_mandir}/man1/nbdkit-partition-filter.1*
|
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%files devel
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc OTHER_PLUGINS README TODO
|
|
|
|
%license LICENSE
|
2013-06-24 17:39:35 +00:00
|
|
|
# Include the source of the example plugins in the documentation.
|
|
|
|
%doc plugins/example*/*.c
|
2017-12-05 08:59:46 +00:00
|
|
|
%doc plugins/example4/nbdkit-example4-plugin
|
2014-02-10 12:02:37 +00:00
|
|
|
%doc plugins/perl/example.pl
|
2014-02-15 07:42:15 +00:00
|
|
|
%doc plugins/python/example.py
|
2016-06-08 13:59:47 +00:00
|
|
|
%doc plugins/ruby/example.rb
|
2018-01-20 12:05:38 +00:00
|
|
|
%{_includedir}/nbdkit-common.h
|
|
|
|
%{_includedir}/nbdkit-filter.h
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_includedir}/nbdkit-plugin.h
|
2018-01-20 12:05:38 +00:00
|
|
|
%{_mandir}/man3/nbdkit-filter.3*
|
2013-06-24 17:39:35 +00:00
|
|
|
%{_mandir}/man3/nbdkit-plugin.3*
|
2017-12-23 14:35:12 +00:00
|
|
|
%{_libdir}/pkgconfig/nbdkit.pc
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2018-01-26 17:49:22 +00:00
|
|
|
* Fri Jan 26 2018 Richard W.M. Jones <rjones@redhat.com> - 1.1.28-2
|
|
|
|
- Run a simplified test suite on all arches.
|
|
|
|
|
2018-01-22 20:44:29 +00:00
|
|
|
* Mon Jan 22 2018 Richard W.M. Jones <rjones@redhat.com> - 1.1.28-1
|
|
|
|
- New upstream version 1.1.28.
|
|
|
|
- Add two new filters to nbdkit-basic-filters.
|
|
|
|
|
2018-01-20 22:07:17 +00:00
|
|
|
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.1.27-2
|
|
|
|
- Rebuilt for switch to libxcrypt
|
|
|
|
|
2018-01-20 12:05:38 +00:00
|
|
|
* Sat Jan 20 2018 Richard W.M. Jones <rjones@redhat.com> - 1.1.27-1
|
|
|
|
- New upstream version 1.1.27.
|
|
|
|
- Add new subpackage nbdkit-basic-filters containing new filters.
|
|
|
|
|
2018-01-11 08:22:45 +00:00
|
|
|
* Thu Jan 11 2018 Richard W.M. Jones <rjones@redhat.com> - 1.1.26-2
|
|
|
|
- Rebuild against updated Ruby.
|
|
|
|
|
2017-12-23 14:35:12 +00:00
|
|
|
* Sat Dec 23 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.26-1
|
|
|
|
- New upstream version 1.1.26.
|
|
|
|
- Add new pkg-config file and dependency.
|
|
|
|
|
2017-12-06 16:14:53 +00:00
|
|
|
* Wed Dec 06 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.25-1
|
|
|
|
- New upstream version 1.1.25.
|
|
|
|
|
2017-12-05 17:05:28 +00:00
|
|
|
* Tue Dec 05 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.24-1
|
|
|
|
- New upstream version 1.1.24.
|
|
|
|
- Add tar plugin (new subpackage nbdkit-plugin-tar).
|
|
|
|
|
2017-12-05 08:59:46 +00:00
|
|
|
* Tue Dec 05 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.23-1
|
|
|
|
- New upstream version 1.1.23.
|
|
|
|
- Add example4 plugin.
|
2017-12-05 14:21:39 +00:00
|
|
|
- Python3 tests require libguestfs so disable on s390x.
|
2017-12-05 08:59:46 +00:00
|
|
|
|
2017-12-03 19:42:51 +00:00
|
|
|
* Sun Dec 03 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.22-1
|
|
|
|
- New upstream version 1.1.22.
|
|
|
|
- Enable tests on Fedora.
|
|
|
|
|
2017-12-02 19:51:26 +00:00
|
|
|
* Sat Dec 02 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.20-1
|
|
|
|
- New upstream version 1.1.20.
|
|
|
|
- Add nbdkit-split-plugin to basic plugins.
|
|
|
|
|
2017-12-02 07:46:22 +00:00
|
|
|
* Sat Dec 02 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.19-2
|
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
* Thu Nov 30 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.19-1
|
|
|
|
- New upstream version 1.1.19.
|
|
|
|
- Combine all the simple plugins in %{name}-basic-plugins.
|
|
|
|
- Add memory and null plugins.
|
|
|
|
- Rename the example plugins subpackage.
|
|
|
|
- Use %%license instead of %%doc for license file.
|
|
|
|
- Remove patches now upstream.
|
|
|
|
|
2017-11-29 18:08:30 +00:00
|
|
|
* Wed Nov 29 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.18-4
|
|
|
|
- Fix Python 3 builds / RHEL macros (RHBZ#1404631).
|
|
|
|
|
2017-11-21 22:52:57 +00:00
|
|
|
* Tue Nov 21 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.18-3
|
2017-11-21 21:27:08 +00:00
|
|
|
- New upstream version 1.1.18.
|
|
|
|
- Add NBD forwarding plugin.
|
2017-11-21 22:24:22 +00:00
|
|
|
- Add libselinux-devel so that SELinux support is enabled in the daemon.
|
2017-11-21 22:52:57 +00:00
|
|
|
- Apply all patches from upstream since 1.1.18.
|
2017-11-21 21:27:08 +00:00
|
|
|
|
2017-10-20 10:46:28 +00:00
|
|
|
* Fri Oct 20 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.16-2
|
2017-10-20 09:53:40 +00:00
|
|
|
- New upstream version 1.1.16.
|
2017-10-20 10:46:28 +00:00
|
|
|
- Disable python3 plugin on RHEL/EPEL <= 7.
|
|
|
|
- Only ship on x86_64 in RHEL/EPEL <= 7.
|
2017-10-20 09:53:40 +00:00
|
|
|
|
2017-09-27 20:14:08 +00:00
|
|
|
* Wed Sep 27 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.15-1
|
|
|
|
- New upstream version 1.1.15.
|
|
|
|
- Enable TLS support.
|
|
|
|
|
2017-09-01 14:28:02 +00:00
|
|
|
* Fri Sep 01 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.14-1
|
|
|
|
- New upstream version 1.1.14.
|
|
|
|
|
2017-08-25 14:41:07 +00:00
|
|
|
* Fri Aug 25 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.13-1
|
|
|
|
- New upstream version 1.1.13.
|
|
|
|
- Remove patches which are all upstream.
|
|
|
|
- Remove grubby hack, should not be needed with modern supermin.
|
|
|
|
|
2017-08-19 16:37:53 +00:00
|
|
|
* Sat Aug 19 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-13
|
|
|
|
- Rebuild for OCaml 4.05.0.
|
|
|
|
|
2017-08-03 03:48:15 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.12-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 22:42:58 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.12-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-27 13:47:15 +00:00
|
|
|
* Tue Jun 27 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-10
|
|
|
|
- Rebuild for OCaml 4.04.2.
|
|
|
|
|
2017-06-04 14:14:47 +00:00
|
|
|
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.1.12-9
|
|
|
|
- Perl 5.26 rebuild
|
|
|
|
|
2017-05-15 11:30:22 +00:00
|
|
|
* Mon May 15 2017 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-8
|
|
|
|
- Rebuild for OCaml 4.04.1.
|
|
|
|
|
2017-02-10 22:06:34 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.12-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-12 13:36:18 +00:00
|
|
|
* Thu Jan 12 2017 Vít Ondruch <vondruch@redhat.com> - 1.1.12-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
|
|
|
|
|
2016-12-23 17:09:29 +00:00
|
|
|
* Fri Dec 23 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-5
|
|
|
|
- Rebuild for Python 3.6 update.
|
|
|
|
|
2016-12-14 10:48:29 +00:00
|
|
|
* Wed Dec 14 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-4
|
|
|
|
- Fix python3 subpackage so it really uses python3 (RHBZ#1404631).
|
|
|
|
|
2016-11-05 09:47:20 +00:00
|
|
|
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-3
|
|
|
|
- Rebuild for OCaml 4.04.0.
|
|
|
|
|
2016-10-03 13:27:41 +00:00
|
|
|
* Mon Oct 03 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-2
|
|
|
|
- Compile Python 2 and Python 3 versions of the plugin.
|
|
|
|
|
2016-06-08 13:59:47 +00:00
|
|
|
* Wed Jun 08 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.12-1
|
|
|
|
- New upstream version 1.1.12
|
|
|
|
- Enable Ruby plugin.
|
|
|
|
- Disable tests on Rawhide because libvirt is broken again (RHBZ#1344016).
|
|
|
|
|
2016-05-25 10:24:16 +00:00
|
|
|
* Wed May 25 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.11-10
|
|
|
|
- Add another upstream patch since 1.1.11.
|
|
|
|
|
2016-05-23 10:28:55 +00:00
|
|
|
* Mon May 23 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.11-9
|
2016-05-19 11:18:38 +00:00
|
|
|
- Add all patches upstream since 1.1.11 (fixes RHBZ#1336758).
|
|
|
|
|
2016-05-17 01:29:45 +00:00
|
|
|
* Tue May 17 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.1.11-7
|
|
|
|
- Perl 5.24 rebuild
|
|
|
|
|
2016-03-09 12:13:16 +00:00
|
|
|
* Wed Mar 09 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.11-6
|
|
|
|
- When tests fail, dump out test-suite.log so we can debug it.
|
|
|
|
|
2016-02-05 18:15:24 +00:00
|
|
|
* Fri Feb 05 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.11-5
|
|
|
|
- Don't run tests on x86, because kernel is broken there
|
|
|
|
(https://bugzilla.redhat.com/show_bug.cgi?id=1302071)
|
|
|
|
|
2016-02-04 09:07:55 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.11-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-11 19:56:42 +00:00
|
|
|
* Mon Jan 11 2016 Richard W.M. Jones <rjones@redhat.com> - 1.1.11-3
|
2016-01-11 18:50:28 +00:00
|
|
|
- Add support for newstyle NBD protocol (RHBZ#1297100).
|
|
|
|
|
2015-10-31 12:40:07 +00:00
|
|
|
* Sat Oct 31 2015 Richard W.M. Jones <rjones@redhat.com> - 1.1.11-1
|
|
|
|
- New upstream version 1.1.11.
|
|
|
|
|
2015-07-30 12:29:31 +00:00
|
|
|
* Thu Jul 30 2015 Richard W.M. Jones <rjones@redhat.com> - 1.1.10-3
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-06-20 10:50:36 +00:00
|
|
|
* Sat Jun 20 2015 Richard W.M. Jones <rjones@redhat.com> - 1.1.10-2
|
|
|
|
- Enable libguestfs plugin on aarch64.
|
|
|
|
|
2015-06-19 12:58:48 +00:00
|
|
|
* Fri Jun 19 2015 Richard W.M. Jones <rjones@redhat.com> - 1.1.10-1
|
|
|
|
- New upstream version.
|
|
|
|
- Enable now working OCaml plugin (requires OCaml >= 4.02.2).
|
|
|
|
|
2015-06-17 21:32:01 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.9-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-11 08:54:53 +00:00
|
|
|
* Thu Jun 11 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.1.9-5
|
|
|
|
- Perl 5.22 rebuild
|
|
|
|
|
2015-06-10 11:49:08 +00:00
|
|
|
* Wed Jun 10 2015 Richard W.M. Jones <rjones@redhat.com> - 1.1.9-4
|
|
|
|
- Enable debugging messages when running make check.
|
|
|
|
|
2015-06-06 15:52:34 +00:00
|
|
|
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.1.9-3
|
|
|
|
- Perl 5.22 rebuild
|
|
|
|
|
2014-10-14 14:41:11 +00:00
|
|
|
* Tue Oct 14 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.9-2
|
2014-10-14 11:59:33 +00:00
|
|
|
- New upstream version 1.1.9.
|
|
|
|
- Add the streaming plugin.
|
2014-10-14 14:41:11 +00:00
|
|
|
- Include fix for streaming plugin in 1.1.9.
|
2014-10-14 11:59:33 +00:00
|
|
|
|
2014-09-10 12:10:19 +00:00
|
|
|
* Wed Sep 10 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.8-4
|
2014-09-10 11:37:46 +00:00
|
|
|
- Rebuild for updated Perl in Rawhide.
|
2014-09-10 12:10:19 +00:00
|
|
|
- Workaround for broken libvirt (RHBZ#1138604).
|
2014-09-10 11:37:46 +00:00
|
|
|
|
2014-08-17 11:08:57 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-21 21:21:32 +00:00
|
|
|
* Sat Jun 21 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.8-1
|
|
|
|
- New upstream version 1.1.8.
|
|
|
|
- Add support for cURL, and new nbdkit-plugin-curl package.
|
|
|
|
|
2014-06-20 21:50:40 +00:00
|
|
|
* Fri Jun 20 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.7-1
|
|
|
|
- New upstream version 1.1.7.
|
|
|
|
- Remove patches which are now all upstream.
|
|
|
|
|
2014-06-07 12:09:56 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-03-06 09:55:42 +00:00
|
|
|
* Thu Mar 06 2014 Dan Horák <dan[at]danny.cz> - 1.1.6-4
|
|
|
|
- libguestfs is available only on selected arches
|
|
|
|
|
2014-02-21 13:07:52 +00:00
|
|
|
* Fri Feb 21 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.6-3
|
2014-02-21 12:47:00 +00:00
|
|
|
- Backport some upstream patches, fixing a minor bug and adding more tests.
|
|
|
|
- Enable the tests since kernel bug is fixed.
|
|
|
|
|
2014-02-16 10:51:31 +00:00
|
|
|
* Sun Feb 16 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.6-1
|
|
|
|
- New upstream version 1.1.6.
|
|
|
|
|
2014-02-15 08:26:19 +00:00
|
|
|
* Sat Feb 15 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.5-2
|
2014-02-15 07:42:15 +00:00
|
|
|
- New upstream version 1.1.5.
|
|
|
|
- Enable the new Python plugin.
|
|
|
|
- Perl plugin man page moved to section 3.
|
2014-02-15 08:26:19 +00:00
|
|
|
- Perl now requires ExtUtils::Embed.
|
2014-02-15 07:42:15 +00:00
|
|
|
|
2014-02-10 12:02:37 +00:00
|
|
|
* Mon Feb 10 2014 Richard W.M. Jones <rjones@redhat.com> - 1.1.4-1
|
|
|
|
- New upstream version 1.1.4.
|
|
|
|
- Enable the new Perl plugin.
|
|
|
|
|
2013-08-04 21:40:36 +00:00
|
|
|
* Sun Aug 4 2013 Richard W.M. Jones <rjones@redhat.com> - 1.1.3-1
|
|
|
|
- New upstream version 1.1.3 which fixes some test problems.
|
2013-08-04 21:16:45 +00:00
|
|
|
- Disable tests because Rawhide kernel is broken (RHBZ#991808).
|
|
|
|
- Remove a single quote from description which confused emacs.
|
2013-08-04 21:46:27 +00:00
|
|
|
- Remove patch, now upstream.
|
2013-08-04 21:16:45 +00:00
|
|
|
|
2013-08-03 12:49:02 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-21 21:08:05 +00:00
|
|
|
* Sun Jul 21 2013 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-3
|
|
|
|
- Fix segfault when IPv6 client is used (RHBZ#986601).
|
|
|
|
|
2013-07-16 11:45:37 +00:00
|
|
|
* Tue Jul 16 2013 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-2
|
2013-07-16 11:10:44 +00:00
|
|
|
- New development version 1.1.2.
|
2013-07-16 11:45:37 +00:00
|
|
|
- Disable the tests on Fedora <= 18.
|
2013-07-16 11:10:44 +00:00
|
|
|
|
2013-06-25 21:27:24 +00:00
|
|
|
* Tue Jun 25 2013 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-1
|
|
|
|
- New development version 1.1.1.
|
|
|
|
- Add libguestfs plugin.
|
|
|
|
- Run the test suite.
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
* Mon Jun 24 2013 Richard W.M. Jones <rjones@redhat.com> - 1.0.0-4
|
|
|
|
- Initial release.
|