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.
|
2018-06-11 12:19:25 +00:00
|
|
|
%global complete_test_arches x86_64
|
2018-01-26 17:49:22 +00:00
|
|
|
|
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
|
|
|
|
|
2018-08-18 10:07:07 +00:00
|
|
|
# Disable libvirt on riscv64 for now.
|
|
|
|
%ifnarch riscv64
|
|
|
|
%global have_libvirt 1
|
|
|
|
%endif
|
|
|
|
|
2018-06-09 13:33:06 +00:00
|
|
|
# If we should verify tarball signature with GPGv2.
|
|
|
|
%global verify_tarball_signature 1
|
|
|
|
|
2018-07-20 13:53:14 +00:00
|
|
|
# If there are patches which touch autotools files, set this to 1.
|
2018-08-28 15:58:45 +00:00
|
|
|
%global patches_touch_autotools %{nil}
|
2018-07-20 13:53:14 +00:00
|
|
|
|
|
|
|
# The source directory.
|
2018-11-14 15:30:00 +00:00
|
|
|
%global source_directory 1.9-development
|
2018-07-20 13:53:14 +00:00
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
Name: nbdkit
|
2019-01-01 10:21:03 +00:00
|
|
|
Version: 1.9.8
|
|
|
|
Release: 1%{?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
|
|
|
|
2018-07-20 13:53:14 +00:00
|
|
|
Source0: http://libguestfs.org/download/nbdkit/%{source_directory}/%{name}-%{version}.tar.gz
|
2018-06-09 13:33:06 +00:00
|
|
|
%if 0%{verify_tarball_signature}
|
2018-07-20 13:53:14 +00:00
|
|
|
Source1: http://libguestfs.org/download/nbdkit/%{source_directory}/%{name}-%{version}.tar.gz.sig
|
2018-06-09 13:33:06 +00:00
|
|
|
# Keyring used to verify tarball signature.
|
|
|
|
Source2: libguestfs.keyring
|
|
|
|
%endif
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-07-01 15:35:07 +00:00
|
|
|
%if 0%{patches_touch_autotools}
|
|
|
|
BuildRequires: autoconf, automake, libtool
|
|
|
|
%endif
|
|
|
|
|
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
|
2018-08-18 10:07:07 +00:00
|
|
|
%if 0%{?have_libvirt}
|
2013-06-24 17:39:35 +00:00
|
|
|
BuildRequires: libvirt-devel
|
2018-08-18 10:07:07 +00:00
|
|
|
%endif
|
2013-06-24 17:39:35 +00:00
|
|
|
BuildRequires: xz-devel
|
|
|
|
BuildRequires: zlib-devel
|
2014-06-21 21:21:32 +00:00
|
|
|
BuildRequires: libcurl-devel
|
2018-06-09 13:32:29 +00:00
|
|
|
BuildRequires: e2fsprogs-devel
|
2018-10-17 12:51:59 +00:00
|
|
|
BuildRequires: genisoimage
|
2018-06-09 16:43:30 +00:00
|
|
|
BuildRequires: bash-completion
|
2014-02-10 12:02:37 +00:00
|
|
|
BuildRequires: perl-devel
|
2014-02-15 08:26:19 +00:00
|
|
|
BuildRequires: perl(ExtUtils::Embed)
|
2018-07-07 06:31:15 +00:00
|
|
|
BuildRequires: python2-devel
|
|
|
|
%if 0%{?fedora} >= 29
|
|
|
|
BuildRequires: python-unversioned-command
|
|
|
|
%endif
|
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
|
2018-07-06 09:45:32 +00:00
|
|
|
BuildRequires: tcl-devel
|
2018-07-07 06:28:53 +00:00
|
|
|
BuildRequires: lua-devel
|
2018-06-09 13:33:06 +00:00
|
|
|
%if 0%{verify_tarball_signature}
|
2018-07-06 09:45:32 +00:00
|
|
|
BuildRequires: gnupg2
|
2018-06-09 13:33:06 +00:00
|
|
|
%endif
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-01-26 18:36:04 +00:00
|
|
|
# Only for running the test suite:
|
|
|
|
BuildRequires: /usr/bin/certtool
|
2018-01-26 19:04:47 +00:00
|
|
|
BuildRequires: /usr/bin/qemu-img
|
2018-01-26 18:36:04 +00:00
|
|
|
BuildRequires: /usr/bin/socat
|
|
|
|
BuildRequires: /usr/sbin/ss
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# nbdkit is a metapackage pulling the server and a useful subset
|
|
|
|
# of the plugins and filters.
|
2018-11-06 21:34:28 +00:00
|
|
|
Requires: nbdkit-server%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: nbdkit-basic-plugins%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: nbdkit-basic-filters%{?_isa} = %{version}-%{release}
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit is a toolkit for creating NBD servers.
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
The key features are:
|
|
|
|
|
|
|
|
* Multithreaded NBD server written in C with good performance.
|
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
* Minimal dependencies for the basic server.
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
* Liberal license (BSD) allows nbdkit to be linked to proprietary
|
|
|
|
libraries or included in proprietary code.
|
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
* Well-documented, simple plugin API with a stable ABI guarantee.
|
|
|
|
Lets you to export "unconventional" block devices easily.
|
|
|
|
|
|
|
|
* You can write plugins in C or many other languages.
|
|
|
|
|
|
|
|
* Filters can be stacked in front of plugins to transform the output.
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
In Fedora, '%{name}' is a meta-package which pulls in the core server
|
|
|
|
and a useful subset of plugins and filters.
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
If you want just the server, install '%{name}-server'.
|
|
|
|
|
|
|
|
To develop plugins, install the '%{name}-devel' package and start by
|
2013-06-24 17:39:35 +00:00
|
|
|
reading the nbdkit(1) and nbdkit-plugin(3) manual pages.
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package server
|
|
|
|
Summary: The %{name} server
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
|
|
|
|
%description server
|
|
|
|
This package contains the %{name} server with no plugins or filters.
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
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.
|
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-data-plugin Serve small amounts of data from the command line.
|
2017-11-30 12:48:21 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-file-plugin The normal file plugin for serving files.
|
2017-11-30 12:48:21 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-floppy-plugin Create a virtual floppy disk from a directory.
|
2017-11-30 12:48:21 +00:00
|
|
|
|
2018-12-13 11:12:52 +00:00
|
|
|
nbdkit-full-plugin A virtual disk that returns ENOSPC errors.
|
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-memory-plugin A virtual memory plugin.
|
2018-07-15 15:33:25 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-nbd-plugin An NBD forwarding plugin.
|
2018-07-15 15:33:25 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-null-plugin A null (bitbucket) plugin.
|
2018-09-18 21:59:54 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-pattern-plugin Fixed test pattern.
|
2018-09-18 21:59:54 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-partitioning-plugin Create virtual disks from partitions.
|
2018-06-11 14:32:07 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-random-plugin Random content plugin for testing.
|
2018-06-11 14:32:07 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-sh-plugin Write plugins as shell scripts or executables.
|
2018-09-08 09:44:47 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-split-plugin Concatenate one or more files.
|
2018-09-08 09:44:47 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-streaming-plugin A streaming file serving plugin.
|
2018-01-11 16:46:38 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-zero-plugin Zero-length plugin for testing.
|
2018-06-11 14:32:07 +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
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
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.
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package curl-plugin
|
2017-11-30 12:48:21 +00:00
|
|
|
Summary: HTTP/FTP/SSH (cURL) plugin for %{name}
|
2013-06-24 17:39:35 +00:00
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-curl = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-curl <= %{version}-%{release}
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description curl-plugin
|
2017-11-30 12:48:21 +00:00
|
|
|
This package contains cURL (HTTP/FTP/SSH) support for %{name}.
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package ext2-plugin
|
2018-06-09 13:32:29 +00:00
|
|
|
Summary: ext2, ext3 and ext4 filesystem support for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-ext2 = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-ext2 <= %{version}-%{release}
|
2018-06-09 13:32:29 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description ext2-plugin
|
2018-06-09 13:32:29 +00:00
|
|
|
This package contains ext2, ext3 and ext4 filesystem support for
|
|
|
|
%{name}.
|
|
|
|
|
|
|
|
|
2014-03-06 09:55:42 +00:00
|
|
|
%if 0%{?have_libguestfs}
|
2018-08-14 11:08:45 +00:00
|
|
|
%package guestfs-plugin
|
2013-06-25 21:27:24 +00:00
|
|
|
Summary: libguestfs plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
2013-06-25 21:27:24 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-guestfs = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-guestfs <= %{version}-%{release}
|
2013-06-25 21:27:24 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description guestfs-plugin
|
2013-06-25 21:27:24 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package gzip-plugin
|
2013-06-24 17:39:35 +00:00
|
|
|
Summary: GZip file serving plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-gzip = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-gzip <= %{version}-%{release}
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description gzip-plugin
|
2013-06-24 17:39:35 +00:00
|
|
|
This package is a gzip file serving plugin for %{name}.
|
|
|
|
|
|
|
|
|
2018-10-17 12:28:00 +00:00
|
|
|
%package iso-plugin
|
|
|
|
Summary: Virtual ISO 9660 plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: genisoimage
|
|
|
|
|
|
|
|
|
|
|
|
%description iso-plugin
|
|
|
|
This package is a virtual ISO 9660 (CD-ROM) plugin for %{name}.
|
|
|
|
|
|
|
|
|
2018-08-18 10:07:07 +00:00
|
|
|
%if 0%{?have_libvirt}
|
2018-08-14 11:08:45 +00:00
|
|
|
%package libvirt-plugin
|
2013-06-24 17:39:35 +00:00
|
|
|
Summary: Libvirt plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-libvirt = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-libvirt <= %{version}-%{release}
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description libvirt-plugin
|
2013-06-24 17:39:35 +00:00
|
|
|
This package is a libvirt plugin for %{name}. It lets you access
|
|
|
|
libvirt guest disks readonly. It is implemented using the libvirt
|
|
|
|
virDomainBlockPeek API.
|
2018-08-18 10:07:07 +00:00
|
|
|
%endif
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package lua-plugin
|
2018-07-07 06:28:53 +00:00
|
|
|
Summary: Lua plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-lua = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-lua <= %{version}-%{release}
|
2018-07-07 06:28:53 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description lua-plugin
|
2018-07-07 06:28:53 +00:00
|
|
|
This package lets you write Lua plugins for %{name}.
|
|
|
|
|
|
|
|
|
2015-06-19 12:58:48 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2018-08-14 11:08:45 +00:00
|
|
|
%package ocaml-plugin
|
2015-06-19 12:58:48 +00:00
|
|
|
Summary: OCaml plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-ocaml = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-ocaml <= %{version}-%{release}
|
2015-06-19 12:58:48 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description ocaml-plugin
|
2015-06-19 12:58:48 +00:00
|
|
|
This package lets you run OCaml plugins for %{name}.
|
|
|
|
|
|
|
|
To compile OCaml plugins you will also need to install
|
2018-08-14 11:08:45 +00:00
|
|
|
%{name}-ocaml-plugin-devel.
|
2015-06-19 12:58:48 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package ocaml-plugin-devel
|
2015-06-19 12:58:48 +00:00
|
|
|
Summary: OCaml development environment for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-ocaml-plugin%{?_isa} = %{version}-%{release}
|
2015-06-19 12:58:48 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-ocaml-devel = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-ocaml-devel <= %{version}-%{release}
|
2015-06-19 12:58:48 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description ocaml-plugin-devel
|
2015-06-19 12:58:48 +00:00
|
|
|
This package lets you write OCaml plugins for %{name}.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package perl-plugin
|
2014-02-10 12:02:37 +00:00
|
|
|
Summary: Perl plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-perl = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-perl <= %{version}-%{release}
|
2014-02-10 12:02:37 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description perl-plugin
|
2014-02-10 12:02:37 +00:00
|
|
|
This package lets you write Perl plugins for %{name}.
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package python-plugin-common
|
2016-10-03 13:27:41 +00:00
|
|
|
Summary: Python 2 and 3 plugin common files for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
2016-10-03 13:27:41 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-python-common = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-python-common <= %{version}-%{release}
|
2016-10-03 13:27:41 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description python-plugin-common
|
2016-10-03 13:27:41 +00:00
|
|
|
This package contains common files shared between Python 2
|
|
|
|
and Python 3 %{name} plugins.
|
|
|
|
|
|
|
|
You should not install this package directly. Instead install
|
2018-08-14 11:08:45 +00:00
|
|
|
either %{name}-python2-plugin or %{name}-python3-plugin.
|
2016-10-03 13:27:41 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package python2-plugin
|
2016-10-03 13:27:41 +00:00
|
|
|
Summary: Python 2 plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-python-plugin-common = %{version}-%{release}
|
2016-10-03 13:27:41 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-python2 = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-python2 <= %{version}-%{release}
|
2016-10-03 13:27:41 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description python2-plugin
|
2016-10-03 13:27:41 +00:00
|
|
|
This package lets you write Python 2 plugins for %{name}.
|
|
|
|
|
|
|
|
|
2017-11-29 18:08:30 +00:00
|
|
|
%if 0%{?have_python3}
|
2018-08-14 11:08:45 +00:00
|
|
|
%package python3-plugin
|
2016-10-03 13:27:41 +00:00
|
|
|
Summary: Python 3 plugin for %{name}
|
2014-02-15 07:42:15 +00:00
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-python-plugin-common = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-python3 = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-python3 <= %{version}-%{release}
|
2014-02-15 07:42:15 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description python3-plugin
|
2016-10-03 13:27:41 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package ruby-plugin
|
2016-06-08 13:59:47 +00:00
|
|
|
Summary: Ruby plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-ruby = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-ruby <= %{version}-%{release}
|
2016-06-08 13:59:47 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description ruby-plugin
|
2016-06-08 13:59:47 +00:00
|
|
|
This package lets you write Ruby plugins for %{name}.
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package tar-plugin
|
2017-12-05 17:05:28 +00:00
|
|
|
Summary: Tar archive plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
2018-08-06 19:48:06 +00:00
|
|
|
# XXX This dependency should be autogenerated.
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-perl-plugin
|
2017-12-05 17:05:28 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-tar = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-tar <= %{version}-%{release}
|
2017-12-05 17:05:28 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description tar-plugin
|
2017-12-05 17:05:28 +00:00
|
|
|
This package is a tar archive plugin for %{name}.
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package tcl-plugin
|
2018-07-06 09:45:32 +00:00
|
|
|
Summary: Tcl plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-tcl = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-tcl <= %{version}-%{release}
|
2018-07-06 09:45:32 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description tcl-plugin
|
2018-07-06 09:45:32 +00:00
|
|
|
This package lets you write Tcl plugins for %{name}.
|
|
|
|
|
|
|
|
|
2018-07-24 19:57:09 +00:00
|
|
|
%ifarch %{ix86} x86_64
|
2018-08-14 11:08:45 +00:00
|
|
|
%package vddk-plugin
|
2018-07-24 14:45:22 +00:00
|
|
|
Summary: VMware VDDK plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
2018-07-24 14:45:22 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-vddk = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-vddk <= %{version}-%{release}
|
2018-07-24 14:45:22 +00:00
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
|
|
|
|
%description vddk-plugin
|
2018-07-24 14:45:22 +00:00
|
|
|
This package is a plugin for %{name} which connects to
|
|
|
|
VMware VDDK for accessing VMware disks and servers.
|
2018-07-24 19:57:09 +00:00
|
|
|
%endif
|
2018-07-24 14:45:22 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%package xz-plugin
|
2013-06-24 17:39:35 +00:00
|
|
|
Summary: XZ file serving plugin for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# For upgrade path, remove this in Fedora 31.
|
|
|
|
Provides: %{name}-plugin-xz = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-plugin-xz <= %{version}-%{release}
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%description xz-plugin
|
2013-06-24 17:39:35 +00:00
|
|
|
This package is a xz file serving plugin for %{name}.
|
|
|
|
|
2018-11-22 10:21:57 +00:00
|
|
|
This is deprecated and will be removed in %{name} 1.12. You should
|
|
|
|
start to use %{name}-xz-filter instead.
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
|
2018-01-20 12:05:38 +00:00
|
|
|
%package basic-filters
|
|
|
|
Summary: Basic filters for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
2018-01-20 12:05:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description basic-filters
|
|
|
|
This package contains some basic filters for %{name} which have only
|
|
|
|
trivial dependencies.
|
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-blocksize-filter Adjust block size of requests sent to plugins.
|
2018-04-06 12:24:53 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-cache-filter Server-side cache.
|
2018-04-06 12:24:53 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-cow-filter Copy-on-write overlay for read-only plugins.
|
2018-04-06 12:24:53 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-delay-filter Inject read and write delays.
|
2018-04-06 12:24:53 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-error-filter Inject errors.
|
2018-04-06 12:24:53 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-fua-filter Modify flush behaviour in plugins.
|
2018-07-06 11:47:00 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-log-filter Log all transactions to a file.
|
2018-07-06 11:47:00 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-nozero-filter Adjust handling of zero requests by plugins.
|
2018-01-20 12:05:38 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-offset-filter Serve an offset and range.
|
2018-01-20 12:05:38 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-partition-filter Serve a single partition.
|
2018-08-01 16:37:27 +00:00
|
|
|
|
2018-11-09 21:50:26 +00:00
|
|
|
nbdkit-truncate-filter Truncate, expand, round up or round down size.
|
2018-08-01 16:37:27 +00:00
|
|
|
|
2018-01-20 12:05:38 +00:00
|
|
|
|
2018-11-22 10:21:57 +00:00
|
|
|
%package xz-filter
|
|
|
|
Summary: XZ filter for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
|
|
|
Requires: %{name}-server%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description xz-filter
|
|
|
|
This package is the xz filter for %{name}.
|
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development files and documentation for %{name}
|
|
|
|
License: BSD
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server%{?_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}.
|
|
|
|
|
|
|
|
|
2018-06-09 16:43:30 +00:00
|
|
|
%package bash-completion
|
|
|
|
Summary: Bash tab-completion for %{name}
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: bash-completion >= 2.0
|
2018-08-14 11:08:45 +00:00
|
|
|
Requires: %{name}-server = %{version}-%{release}
|
2018-06-09 16:43:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description bash-completion
|
|
|
|
Install this package if you want intelligent bash tab-completion
|
|
|
|
for %{name}.
|
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%prep
|
2018-06-09 13:33:06 +00:00
|
|
|
%if 0%{verify_tarball_signature}
|
|
|
|
tmphome="$(mktemp -d)"
|
|
|
|
gpgv2 --homedir "$tmphome" --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
|
|
|
|
%endif
|
2018-06-14 12:45:36 +00:00
|
|
|
%autosetup -p1
|
2018-07-01 15:35:07 +00:00
|
|
|
%if 0%{patches_touch_autotools}
|
|
|
|
autoreconf -i
|
|
|
|
%endif
|
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
|
2018-06-06 19:18:15 +00:00
|
|
|
sed -i -e '/^if HAVE_GUESTFISH/,/^endif HAVE_GUESTFISH/d' tests/Makefile.am
|
2018-01-26 17:49:22 +00:00
|
|
|
autoreconf -i
|
|
|
|
%endif
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
%build
|
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
|
|
|
|
|
2018-08-18 10:07:07 +00:00
|
|
|
%configure \
|
|
|
|
--disable-static \
|
|
|
|
%if 0%{?have_libguestfs}
|
|
|
|
--with-libguestfs \
|
|
|
|
%else
|
|
|
|
--without-libguestfs \
|
|
|
|
%endif
|
|
|
|
%if 0%{?have_libvirt}
|
|
|
|
--with-libvirt \
|
|
|
|
%else
|
|
|
|
--without-libvirt \
|
|
|
|
%endif
|
|
|
|
--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
|
2018-08-18 10:07:07 +00:00
|
|
|
%configure \
|
|
|
|
--disable-static \
|
|
|
|
--disable-lua \
|
|
|
|
--disable-perl \
|
|
|
|
--disable-ocaml \
|
|
|
|
--disable-ruby \
|
|
|
|
--disable-tcl \
|
|
|
|
--without-curl \
|
|
|
|
--without-ext2 \
|
|
|
|
--without-libvirt \
|
|
|
|
--without-liblzma \
|
|
|
|
--without-zlib
|
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
|
|
|
|
|
2018-07-24 19:57:09 +00:00
|
|
|
# Delete the VDDK plugin on !x86 architectures since it is not
|
|
|
|
# applicable there.
|
|
|
|
%ifnarch %{ix86} x86_64
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins/nbdkit-vddk-plugin.so
|
|
|
|
rm $RPM_BUILD_ROOT%{_mandir}/man1/nbdkit-vddk-plugin.1*
|
|
|
|
%endif
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
|
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
|
|
|
|
|
2018-11-18 14:37:46 +00:00
|
|
|
%ifarch %{complete_test_arches}
|
2018-11-18 11:55:47 +00:00
|
|
|
# qemu in Fedora Rawhide broken:
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1650975
|
|
|
|
make -C tests test-error
|
|
|
|
rm tests/test-error
|
|
|
|
touch tests/test-error
|
|
|
|
chmod +x tests/test-error
|
2018-11-18 14:37:46 +00:00
|
|
|
%endif
|
2018-11-18 11:55:47 +00:00
|
|
|
|
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 18:04:10 +00:00
|
|
|
%ifarch %{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
|
2018-04-09 17:44:46 +00:00
|
|
|
make check -j1 -C tests 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}
|
2018-01-31 16:57:07 +00:00
|
|
|
%ldconfig_scriptlets plugin-ocaml
|
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
|
2018-08-14 11:08:45 +00:00
|
|
|
# metapackage so empty
|
|
|
|
|
|
|
|
|
|
|
|
%files server
|
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*
|
2018-08-11 17:18:57 +00:00
|
|
|
%{_mandir}/man1/nbdkit-captive.1*
|
2018-12-04 10:47:52 +00:00
|
|
|
%{_mandir}/man1/nbdkit-loop.1*
|
2018-08-11 17:18:57 +00:00
|
|
|
%{_mandir}/man1/nbdkit-probing.1*
|
2018-08-18 21:30:25 +00:00
|
|
|
%{_mandir}/man1/nbdkit-protocol.1*
|
2018-08-11 17:18:57 +00:00
|
|
|
%{_mandir}/man1/nbdkit-service.1*
|
|
|
|
%{_mandir}/man1/nbdkit-tls.1*
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2017-11-30 12:48:21 +00:00
|
|
|
%files basic-plugins
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2018-08-13 16:31:25 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-data-plugin.so
|
2017-11-30 12:48:21 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-file-plugin.so
|
2018-10-29 22:06:42 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-floppy-plugin.so
|
2018-12-13 11:12:52 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-full-plugin.so
|
2017-11-30 12:48:21 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-memory-plugin.so
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-nbd-plugin.so
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-null-plugin.so
|
2018-09-18 21:59:54 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-partitioning-plugin.so
|
2018-07-15 15:33:25 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-pattern-plugin.so
|
2018-06-11 14:32:07 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-random-plugin.so
|
2018-09-08 09:44:47 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-sh-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
|
2018-06-11 14:32:07 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-zero-plugin.so
|
2018-08-13 16:31:25 +00:00
|
|
|
%{_mandir}/man1/nbdkit-data-plugin.1*
|
2017-11-30 12:48:21 +00:00
|
|
|
%{_mandir}/man1/nbdkit-file-plugin.1*
|
2018-10-29 22:06:42 +00:00
|
|
|
%{_mandir}/man1/nbdkit-floppy-plugin.1*
|
2018-12-13 11:12:52 +00:00
|
|
|
%{_mandir}/man1/nbdkit-full-plugin.1*
|
2017-11-30 12:48:21 +00:00
|
|
|
%{_mandir}/man1/nbdkit-memory-plugin.1*
|
|
|
|
%{_mandir}/man1/nbdkit-nbd-plugin.1*
|
|
|
|
%{_mandir}/man1/nbdkit-null-plugin.1*
|
2018-09-18 21:59:54 +00:00
|
|
|
%{_mandir}/man1/nbdkit-partitioning-plugin.1*
|
2018-07-15 15:33:25 +00:00
|
|
|
%{_mandir}/man1/nbdkit-pattern-plugin.1*
|
2018-06-11 14:32:07 +00:00
|
|
|
%{_mandir}/man1/nbdkit-random-plugin.1*
|
2018-09-08 09:44:47 +00:00
|
|
|
%{_mandir}/man3/nbdkit-sh-plugin.3*
|
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*
|
2018-06-11 14:32:07 +00:00
|
|
|
%{_mandir}/man1/nbdkit-zero-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*
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files curl-plugin
|
2017-11-30 12:48:21 +00:00
|
|
|
%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
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files ext2-plugin
|
2018-06-09 13:32:29 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-ext2-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-ext2-plugin.1*
|
|
|
|
|
|
|
|
|
2014-03-06 09:55:42 +00:00
|
|
|
%if 0%{?have_libguestfs}
|
2018-08-14 11:08:45 +00:00
|
|
|
%files guestfs-plugin
|
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
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files gzip-plugin
|
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*
|
|
|
|
|
|
|
|
|
2018-10-17 12:28:00 +00:00
|
|
|
%files iso-plugin
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-iso-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-iso-plugin.1*
|
|
|
|
|
|
|
|
|
2018-08-18 10:07:07 +00:00
|
|
|
%if 0%{?have_libvirt}
|
2018-08-14 11:08:45 +00:00
|
|
|
%files libvirt-plugin
|
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*
|
2018-08-18 10:07:07 +00:00
|
|
|
%endif
|
2013-06-24 17:39:35 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files lua-plugin
|
2018-07-07 06:28:53 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-lua-plugin.so
|
|
|
|
%{_mandir}/man3/nbdkit-lua-plugin.3*
|
|
|
|
|
|
|
|
|
2015-06-19 12:58:48 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2018-08-14 11:08:45 +00:00
|
|
|
%files ocaml-plugin
|
2017-11-30 12:48:21 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
2015-06-19 12:58:48 +00:00
|
|
|
%{_libdir}/libnbdkitocaml.so.*
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files ocaml-plugin-devel
|
2015-06-19 12:58:48 +00:00
|
|
|
%{_libdir}/libnbdkitocaml.so
|
|
|
|
%{_libdir}/ocaml/NBDKit.*
|
|
|
|
%{_mandir}/man3/nbdkit-ocaml-plugin.3*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files perl-plugin
|
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*
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files python-plugin-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
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files python2-plugin
|
2016-10-03 13:27:41 +00:00
|
|
|
%{_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}
|
2018-08-14 11:08:45 +00:00
|
|
|
%files python3-plugin
|
2016-10-03 13:27:41 +00:00
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-python3-plugin.so
|
2017-10-20 10:46:28 +00:00
|
|
|
%endif
|
2016-10-03 13:27:41 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files ruby-plugin
|
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*
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files tar-plugin
|
2017-12-05 17:05:28 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-tar-plugin
|
|
|
|
%{_mandir}/man1/nbdkit-tar-plugin.1*
|
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files tcl-plugin
|
2018-07-06 09:45:32 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-tcl-plugin.so
|
|
|
|
%{_mandir}/man3/nbdkit-tcl-plugin.3*
|
|
|
|
|
|
|
|
|
2018-07-24 19:57:09 +00:00
|
|
|
%ifarch %{ix86} x86_64
|
2018-08-14 11:08:45 +00:00
|
|
|
%files vddk-plugin
|
2018-07-24 14:45:22 +00:00
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/plugins/nbdkit-vddk-plugin.so
|
|
|
|
%{_mandir}/man1/nbdkit-vddk-plugin.1*
|
2018-07-24 19:57:09 +00:00
|
|
|
%endif
|
2018-07-24 14:45:22 +00:00
|
|
|
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
%files xz-plugin
|
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-04-06 12:24:53 +00:00
|
|
|
%{_libdir}/%{name}/filters/nbdkit-blocksize-filter.so
|
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
|
2018-08-06 19:33:57 +00:00
|
|
|
%{_libdir}/%{name}/filters/nbdkit-error-filter.so
|
2018-04-06 12:24:53 +00:00
|
|
|
%{_libdir}/%{name}/filters/nbdkit-fua-filter.so
|
|
|
|
%{_libdir}/%{name}/filters/nbdkit-log-filter.so
|
|
|
|
%{_libdir}/%{name}/filters/nbdkit-nozero-filter.so
|
2018-01-20 12:05:38 +00:00
|
|
|
%{_libdir}/%{name}/filters/nbdkit-offset-filter.so
|
|
|
|
%{_libdir}/%{name}/filters/nbdkit-partition-filter.so
|
2018-08-01 16:37:27 +00:00
|
|
|
%{_libdir}/%{name}/filters/nbdkit-truncate-filter.so
|
2018-04-06 12:24:53 +00:00
|
|
|
%{_mandir}/man1/nbdkit-blocksize-filter.1*
|
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*
|
2018-08-06 19:33:57 +00:00
|
|
|
%{_mandir}/man1/nbdkit-error-filter.1*
|
2018-04-06 12:24:53 +00:00
|
|
|
%{_mandir}/man1/nbdkit-fua-filter.1*
|
|
|
|
%{_mandir}/man1/nbdkit-log-filter.1*
|
|
|
|
%{_mandir}/man1/nbdkit-nozero-filter.1*
|
2018-01-20 12:05:38 +00:00
|
|
|
%{_mandir}/man1/nbdkit-offset-filter.1*
|
|
|
|
%{_mandir}/man1/nbdkit-partition-filter.1*
|
2018-08-01 16:37:27 +00:00
|
|
|
%{_mandir}/man1/nbdkit-truncate-filter.1*
|
2018-01-20 12:05:38 +00:00
|
|
|
|
|
|
|
|
2018-11-22 10:21:57 +00:00
|
|
|
%files xz-filter
|
|
|
|
%doc README
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/%{name}/filters/nbdkit-xz-filter.so
|
|
|
|
%{_mandir}/man1/nbdkit-xz-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
|
2018-07-07 06:28:53 +00:00
|
|
|
%doc plugins/lua/example.lua
|
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-09-08 11:43:48 +00:00
|
|
|
%doc plugins/sh/example.sh
|
2018-07-06 09:45:32 +00:00
|
|
|
%doc plugins/tcl/example.tcl
|
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
|
|
|
|
|
|
|
|
2018-06-09 16:43:30 +00:00
|
|
|
%files bash-completion
|
|
|
|
%license LICENSE
|
|
|
|
%dir %{_datadir}/bash-completion/completions
|
|
|
|
%{_datadir}/bash-completion/completions/nbdkit
|
|
|
|
|
|
|
|
|
2013-06-24 17:39:35 +00:00
|
|
|
%changelog
|
2019-01-01 10:21:03 +00:00
|
|
|
* Tue Jan 1 2019 Richard W.M. Jones <rjones@redhat.com> - 1.9.8-1
|
|
|
|
- New upstream version 1.9.8.
|
|
|
|
|
2018-12-17 21:28:32 +00:00
|
|
|
* Mon Dec 17 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.7-2
|
|
|
|
- Remove misguided LDFLAGS hack which removed server hardening.
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1624149#c6
|
|
|
|
|
2018-12-15 20:51:28 +00:00
|
|
|
* Sat Dec 15 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.7-1
|
|
|
|
- New upstream version 1.9.7.
|
|
|
|
|
2018-12-13 11:12:52 +00:00
|
|
|
* Thu Dec 13 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.6-1
|
|
|
|
- New upstream version 1.9.6.
|
|
|
|
- Add nbdkit-full-plugin.
|
|
|
|
|
2018-12-10 16:41:41 +00:00
|
|
|
* Mon Dec 10 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.5-1
|
|
|
|
- New upstream version 1.9.5.
|
|
|
|
|
2018-12-04 10:31:00 +00:00
|
|
|
* Tue Dec 04 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.4-1
|
|
|
|
- New upstream version 1.9.4.
|
|
|
|
- Fix low priority security issue with TLS:
|
|
|
|
https://www.redhat.com/archives/libguestfs/2018-December/msg00047.html
|
2018-12-04 10:47:52 +00:00
|
|
|
- New man page nbdkit-loop(1).
|
2018-12-04 10:31:00 +00:00
|
|
|
|
2018-11-29 21:48:52 +00:00
|
|
|
* Thu Nov 29 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.3-1
|
|
|
|
- New upstream version 1.9.3.
|
|
|
|
|
2018-11-22 10:21:57 +00:00
|
|
|
* Thu Nov 22 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.2-1
|
|
|
|
- New upstream version 1.9.2.
|
|
|
|
- Add new filter subpackage: nbdkit-xz-filter.
|
|
|
|
- Deprecate (but do not remove) nbdkit-xz-plugin.
|
|
|
|
|
2018-11-18 10:35:08 +00:00
|
|
|
* Sun Nov 18 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.1-1
|
|
|
|
- New upstream version 1.9.1.
|
|
|
|
|
2018-11-14 15:30:00 +00:00
|
|
|
* Wed Nov 14 2018 Richard W.M. Jones <rjones@redhat.com> - 1.9.0-1
|
|
|
|
- New upstream version 1.9.0.
|
|
|
|
- New development branch.
|
|
|
|
|
2018-11-12 20:45:26 +00:00
|
|
|
* Mon Nov 12 2018 Richard W.M. Jones <rjones@redhat.com> - 1.8.0-1
|
|
|
|
- New stable branch version 1.8.0.
|
|
|
|
|
2018-11-09 17:54:57 +00:00
|
|
|
* Fri Nov 09 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.10-1
|
|
|
|
- New upstream version 1.7.10, possibly final before 1.8.
|
|
|
|
|
2018-11-06 21:34:28 +00:00
|
|
|
* Tue Nov 06 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.9-2
|
|
|
|
- nbdkit metapackage should depend on versioned -server subpackage etc.
|
|
|
|
|
2018-11-06 19:20:05 +00:00
|
|
|
* Tue Nov 06 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.9-1
|
|
|
|
- New upstream version 1.7.9.
|
|
|
|
|
2018-10-30 22:50:42 +00:00
|
|
|
* Tue Oct 30 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.8-1
|
|
|
|
- New upstream version 1.7.8.
|
|
|
|
|
2018-10-29 22:06:42 +00:00
|
|
|
* Mon Oct 29 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.7-1
|
|
|
|
- New upstream version 1.7.7.
|
|
|
|
- New nbdkit-floppy-plugin subpackage.
|
|
|
|
|
2018-10-17 12:28:00 +00:00
|
|
|
* Wed Oct 17 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.6-1
|
|
|
|
- New upstream version 1.7.6.
|
|
|
|
- New nbdkit-iso-plugin subpackage.
|
|
|
|
|
2018-10-16 08:42:28 +00:00
|
|
|
* Tue Oct 16 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.5-1
|
|
|
|
- New upstream version 1.7.5.
|
|
|
|
|
2018-10-02 20:43:31 +00:00
|
|
|
* Tue Oct 2 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.4-1
|
|
|
|
- New upstream version 1.7.4.
|
|
|
|
|
2018-09-18 21:59:54 +00:00
|
|
|
* Tue Sep 18 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.3-1
|
|
|
|
- New upstream version 1.7.3.
|
|
|
|
- Add partitioning plugin.
|
|
|
|
|
2018-09-13 22:17:33 +00:00
|
|
|
* Thu Sep 13 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.2-1
|
|
|
|
- New upstream version 1.7.2.
|
|
|
|
|
2018-09-10 16:17:56 +00:00
|
|
|
* Mon Sep 10 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.1-1
|
|
|
|
- New upstream version 1.7.1.
|
|
|
|
|
2018-09-08 09:44:47 +00:00
|
|
|
* Sat Sep 08 2018 Richard W.M. Jones <rjones@redhat.com> - 1.7.0-1
|
|
|
|
- New upstream version 1.7.0, development branch.
|
|
|
|
- Add nbdkit-sh-plugin.
|
|
|
|
|
2018-08-28 15:58:45 +00:00
|
|
|
* Tue Aug 28 2018 Richard W.M. Jones <rjones@redhat.com> - 1.6.0-1
|
|
|
|
- New upstream version 1.6.0, stable branch.
|
|
|
|
|
2018-08-27 18:41:52 +00:00
|
|
|
* Mon Aug 27 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.10-3
|
2018-08-27 11:03:34 +00:00
|
|
|
- New upstream version 1.5.10.
|
2018-08-27 18:41:52 +00:00
|
|
|
- Add upstream patches after 1.5.10.
|
2018-08-27 11:03:34 +00:00
|
|
|
|
2018-08-26 19:49:31 +00:00
|
|
|
* Sun Aug 26 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.9-2
|
2018-08-26 19:21:54 +00:00
|
|
|
- New upstream version 1.5.9.
|
2018-08-26 19:49:31 +00:00
|
|
|
- Add upstream patches since 1.5.9 was released.
|
2018-08-26 19:21:54 +00:00
|
|
|
|
2018-08-21 11:54:50 +00:00
|
|
|
* Tue Aug 21 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.8-1
|
|
|
|
- New upstream version 1.5.8.
|
|
|
|
|
2018-08-18 21:30:25 +00:00
|
|
|
* Sat Aug 18 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.7-1
|
|
|
|
- New upstream version 1.5.7.
|
|
|
|
|
2018-08-18 10:07:07 +00:00
|
|
|
* Sat Aug 18 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.6-2
|
|
|
|
- Disable libvirt on riscv64.
|
|
|
|
- Other simplifications to %%configure line.
|
|
|
|
|
2018-08-16 21:49:05 +00:00
|
|
|
* Thu Aug 16 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.6-1
|
|
|
|
- New upstream version 1.5.6.
|
|
|
|
|
2018-08-14 11:08:45 +00:00
|
|
|
* Tue Aug 14 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.5-2
|
|
|
|
- Make nbdkit a metapackage.
|
|
|
|
- Package server in nbdkit-server subpackage.
|
|
|
|
- Rename all nbdkit-plugin-FOO to nbdkit-FOO-plugin to match upstream.
|
|
|
|
|
2018-08-13 16:31:25 +00:00
|
|
|
* Mon Aug 13 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.5-1
|
|
|
|
- New upstream version 1.5.5.
|
|
|
|
- New plugin: data.
|
|
|
|
|
2018-08-11 17:18:57 +00:00
|
|
|
* Mon Aug 6 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.4-1
|
|
|
|
- New upstream version 1.5.4.
|
|
|
|
- Add topic man pages.
|
|
|
|
|
2018-08-06 19:33:57 +00:00
|
|
|
* Mon Aug 6 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.3-1
|
|
|
|
- New upstream version 1.5.3.
|
|
|
|
- New filter: error.
|
|
|
|
|
2018-08-01 16:37:27 +00:00
|
|
|
* Wed Aug 1 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.2-1
|
|
|
|
- New upstream version 1.5.2.
|
|
|
|
- Remove patches which are all upstream.
|
|
|
|
- New filter: truncate.
|
|
|
|
|
2018-07-24 14:45:22 +00:00
|
|
|
* Tue Jul 24 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.1-2
|
2018-07-24 19:57:09 +00:00
|
|
|
- Enable VDDK plugin on x86-64 only.
|
2018-07-24 14:45:22 +00:00
|
|
|
|
2018-07-20 13:53:36 +00:00
|
|
|
* Fri Jul 20 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.1-1
|
|
|
|
- New upstream version 1.5.1.
|
|
|
|
- Remove patches, all upstream in this version.
|
2018-07-20 13:53:14 +00:00
|
|
|
- Small refactorings in the spec file.
|
|
|
|
|
2018-07-15 15:33:25 +00:00
|
|
|
* Sun Jul 15 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.0-3
|
|
|
|
- Add all upstream patches since 1.5.0.
|
|
|
|
- New pattern plugin.
|
2018-07-15 16:36:29 +00:00
|
|
|
- Add fixes for 32 bit platforms i686 and armv7.
|
2018-07-15 15:33:25 +00:00
|
|
|
|
2018-07-13 11:24:41 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-07 06:28:53 +00:00
|
|
|
* Sat Jul 7 2018 Richard W.M. Jones <rjones@redhat.com> - 1.5.0-1
|
|
|
|
- New upstream version 1.5.0.
|
|
|
|
- Add Lua plugin and nbdkit-plugin-lua subpackage.
|
2018-07-07 06:31:15 +00:00
|
|
|
- Make python-unversioned-command dependent on Fedora >= 29.
|
2018-07-07 06:28:53 +00:00
|
|
|
|
2018-07-06 09:45:32 +00:00
|
|
|
* Fri Jul 6 2018 Richard W.M. Jones <rjones@redhat.com> - 1.4.0-1
|
|
|
|
- New upstream version 1.4.0.
|
|
|
|
- Add nbdkit-plugin-tcl subpackage.
|
|
|
|
- +BR python-unversioned-command
|
|
|
|
|
2018-07-03 10:39:08 +00:00
|
|
|
* Tue Jul 03 2018 Petr Pisar <ppisar@redhat.com> - 1.3.4-4
|
|
|
|
- Perl 5.28 rebuild
|
|
|
|
|
2018-07-02 16:22:44 +00:00
|
|
|
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3.4-3
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-06-27 18:21:50 +00:00
|
|
|
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.4-2
|
|
|
|
- Perl 5.28 rebuild
|
|
|
|
|
2018-06-23 14:15:19 +00:00
|
|
|
* Sat Jun 23 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.4-1
|
|
|
|
- New upstream version 1.3.4.
|
|
|
|
|
2018-06-19 08:48:18 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3.3-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-06-12 07:59:12 +00:00
|
|
|
* Mon Jun 11 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-1
|
2018-06-11 14:32:07 +00:00
|
|
|
- New upstream version 1.3.3.
|
|
|
|
- New plugins: nbdkit-zero-plugin, nbdkit-random-plugin.
|
|
|
|
- Remove upstream patches.
|
|
|
|
|
2018-06-09 16:43:30 +00:00
|
|
|
* Sat Jun 9 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.2-2
|
2018-06-09 13:32:29 +00:00
|
|
|
- New upstream version 1.3.2.
|
|
|
|
- Remove patches now upstream.
|
|
|
|
- New ext2 plugin and subpackage, requires e2fsprogs-devel to build.
|
2018-06-09 13:33:06 +00:00
|
|
|
- Enable tarball signatures.
|
2018-06-09 13:58:58 +00:00
|
|
|
- Add upstream patch to fix tests when guestfish not available.
|
2018-06-09 16:43:30 +00:00
|
|
|
- Enable bash tab completion.
|
2018-06-09 13:32:29 +00:00
|
|
|
|
2018-06-06 12:19:03 +00:00
|
|
|
* Wed Jun 6 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.1-1
|
|
|
|
- New upstream version 1.3.1.
|
2018-06-06 18:34:01 +00:00
|
|
|
- Add patch to work around libvirt problem with relative socket paths.
|
2018-06-06 19:14:31 +00:00
|
|
|
- Add patch to fix the xz plugin test with recent guestfish.
|
2018-06-06 12:19:03 +00:00
|
|
|
|
2018-04-06 12:24:53 +00:00
|
|
|
* Fri Apr 6 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.0-1
|
|
|
|
- Move to development branch version 1.3.0.
|
|
|
|
- New filters: blocksize, fua, log, nozero.
|
|
|
|
|
2018-02-09 08:05:13 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.1.28-5
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-08 03:52:53 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.28-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-31 16:57:07 +00:00
|
|
|
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.1.28-3
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
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.
|
2018-02-09 08:05:13 +00:00
|
|
|
- Combine all the simple plugins in %%{name}-basic-plugins.
|
2017-11-30 12:48:21 +00:00
|
|
|
- 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.
|