Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dm-zoned-tools for openSUSE:Factory checked in at 2021-09-10 23:41:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dm-zoned-tools (Old) and /work/SRC/openSUSE:Factory/.dm-zoned-tools.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dm-zoned-tools" Fri Sep 10 23:41:34 2021 rev:3 rq:917995 version:2.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/dm-zoned-tools/dm-zoned-tools.changes 2019-02-14 14:35:36.839591230 +0100 +++ /work/SRC/openSUSE:Factory/.dm-zoned-tools.new.1899/dm-zoned-tools.changes 2021-09-10 23:42:00.354603731 +0200 @@ -1,0 +2,6 @@ +Mon Sep 6 07:27:10 UTC 2021 - Johannes Thumshirn <j...@kernel.org> + +- Update to upstream version 2.2.0 + + build-fix.patch + +------------------------------------------------------------------- Old: ---- dm-zoned-tools-1.0.1.tar.gz New: ---- build-fix.patch dm-zoned-tools-2.2.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dm-zoned-tools.spec ++++++ --- /var/tmp/diff_new_pack.HRk4Hn/_old 2021-09-10 23:42:00.790604195 +0200 +++ /var/tmp/diff_new_pack.HRk4Hn/_new 2021-09-10 23:42:00.794604199 +0200 @@ -1,7 +1,7 @@ # # spec file for package dm-zoned-tools # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,21 +12,28 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: dm-zoned-tools -Version: 1.0.1 +Version: 2.2.0 Release: 0 Summary: "dm-zoned" device-mapper target manager License: GPL-3.0-only Group: Hardware/Other -URL: https://github.com/hgst/dm-zoned-tools +URL: https://github.com/westerndigitalcorporation/%{name} Source: %{name}-%{version}.tar.gz BuildRequires: autoconf BuildRequires: automake +BuildRequires: device-mapper-devel +BuildRequires: kmod +BuildRequires: libblkid-devel +BuildRequires: libkmod-devel BuildRequires: libtool +BuildRequires: libuuid-devel +# PATCH-FIX-OPENSUSE fix-build.patch +Patch0: build-fix.patch %description The dmzadm utility formats backend devices used with the dm-zoned device @@ -36,17 +43,18 @@ %prep %setup -q +%patch0 -p1 %build sh ./autogen.sh %configure -make %{?_smp_mflags} +%make_build %install %make_install %files -%license COPYING COPYING.GPL +%license COPYING.GPL %doc README.md %{_sbindir}/dmzadm %{_mandir}/man8/* ++++++ build-fix.patch ++++++ From: Johannes Thumshirn <johannes.thumsh...@wdc.com> Date: Tue 7 Sep 17:18:50 JST 2021 Subject: Build fix for openSUSE openSUSE needs kmod/ as a prefix for libkmod.h Signed-off-by: Johannes Thumshirn <johannes.thumsh...@wdc.com> --- configure.ac | 2 +- src/dmz_devmapper.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,7 @@ AC_CHECK_HEADER(uuid/uuid.h, [], [AC_MSG_ERROR([Couldn't find uuid/uuid.h])]) AC_CHECK_HEADER(libdevmapper.h, [], [AC_MSG_ERROR([Couldn't find libdevmapper.h])]) -AC_CHECK_HEADER(libkmod.h, [], +AC_CHECK_HEADER(kmod/libkmod.h, [], [AC_MSG_ERROR([Couldn't find libkmod.h])]) AC_CHECK_HEADER(libudev.h, [], [AC_MSG_ERROR([Couldn't find libudev.h (install systemd-devel)])]) --- a/src/dmz_devmapper.c +++ b/src/dmz_devmapper.c @@ -13,7 +13,7 @@ #include <string.h> #include <errno.h> #include <assert.h> -#include <libkmod.h> +#include <kmod/libkmod.h> #include <asm/byteorder.h> #include <libdevmapper.h> ++++++ dm-zoned-tools-1.0.1.tar.gz -> dm-zoned-tools-2.2.0.tar.gz ++++++ ++++ 6418 lines of diff (skipped)