2007-01-16 00:42:30 +01:00
|
|
|
#
|
2011-10-15 07:09:26 +02:00
|
|
|
# spec file for package xfsprogs
|
2007-01-16 00:42:30 +01:00
|
|
|
#
|
2018-02-07 15:25:03 +01:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2007-01-16 00:42:30 +01:00
|
|
|
#
|
2008-09-02 18:22:58 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-16 00:42:30 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-03-15 14:55:10 +01:00
|
|
|
|
2017-05-23 20:14:04 +02:00
|
|
|
%define _dracutmodulesdir %{_libexecdir}/dracut/modules.d
|
|
|
|
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
# Note: requiring split_so_package does imply xfs_use_systemd, however,
|
|
|
|
# needing xfs_use_systemd does not imply requiring split_so_package. These
|
|
|
|
# need to be kept split for now.
|
|
|
|
|
|
|
|
# We're strict now about packages with shared objects, they must be in their
|
|
|
|
# own package. This is not a requirement for older releases so do not do the
|
|
|
|
# split there. For details see:
|
|
|
|
# https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
|
|
|
|
%if 0%{?suse_version} >= 1315
|
|
|
|
%define split_so_package 1
|
|
|
|
%else
|
|
|
|
%define split_so_package 0
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Starting with OpenSUSE Leap 42.1 and SLE12-SP1 we get systemd
|
|
|
|
%if 0%{?sle_version} >= 120100
|
|
|
|
%define xfs_use_systemd 1
|
|
|
|
%else
|
|
|
|
%define xfs_use_systemd 0
|
|
|
|
%endif
|
|
|
|
|
2007-01-16 00:42:30 +01:00
|
|
|
Name: xfsprogs
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
Version: 4.16.1
|
2015-03-19 15:44:17 +01:00
|
|
|
Release: 0
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
|
2015-03-19 15:44:17 +01:00
|
|
|
Summary: Utilities for managing the XFS file system
|
2018-03-08 11:19:43 +01:00
|
|
|
License: GPL-2.0-or-later
|
2015-03-19 15:44:17 +01:00
|
|
|
Group: System/Filesystems
|
|
|
|
Url: http://xfs.org
|
2017-05-23 20:14:04 +02:00
|
|
|
Source0: https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-%{version}.tar.xz
|
|
|
|
Source1: https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-%{version}.tar.sign
|
2015-03-19 15:44:17 +01:00
|
|
|
Source2: %{name}.keyring
|
2017-05-23 20:14:04 +02:00
|
|
|
Source3: module-setup.sh.in
|
|
|
|
Source4: dracut-fsck-help.txt
|
2015-03-19 15:44:17 +01:00
|
|
|
Patch0: xfsprogs-docdir.diff
|
2017-11-17 21:03:23 +01:00
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
2015-11-18 22:13:09 +01:00
|
|
|
BuildRequires: libblkid-devel
|
2018-03-08 11:19:43 +01:00
|
|
|
BuildRequires: pkg-config
|
2012-10-10 21:40:33 +02:00
|
|
|
BuildRequires: readline-devel
|
2015-03-19 15:44:17 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2012-05-07 22:29:09 +02:00
|
|
|
BuildRequires: libuuid-devel
|
2010-03-19 09:26:05 +01:00
|
|
|
%if 0%{?suse_version} >= 1010
|
2007-04-04 20:13:27 +02:00
|
|
|
# hint for ZYPP
|
|
|
|
Supplements: filesystem(xfs)
|
2010-03-19 09:26:05 +01:00
|
|
|
%endif
|
2016-01-04 10:27:31 +01:00
|
|
|
%if 0%{?suse_version} >= 1310
|
|
|
|
BuildRequires: suse-module-tools
|
|
|
|
%endif
|
2017-06-22 22:20:58 +02:00
|
|
|
BuildRequires: xz
|
2017-08-29 15:11:57 +02:00
|
|
|
Requires(post): coreutils
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%if 0%{?xfs_use_systemd} == 1
|
2018-04-22 15:06:05 +02:00
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: pkgconfig(systemd)
|
|
|
|
%endif
|
2007-01-16 00:42:30 +01:00
|
|
|
%description
|
|
|
|
A set of commands to use the XFS file system, including mkfs.xfs.
|
|
|
|
|
|
|
|
XFS is a high performance journaling file system which originated on
|
|
|
|
the SGI IRIX platform. It is completely multithreaded. It can support
|
|
|
|
large files and large file systems, extended attributes, and variable
|
2018-03-08 11:38:33 +01:00
|
|
|
block sizes. It is extent based and makes extensive use of Btrees
|
2007-01-16 00:42:30 +01:00
|
|
|
(directories, extents, and free space) to aid both performance and
|
|
|
|
scalability.
|
|
|
|
|
|
|
|
Refer to the documentation at http://oss.sgi.com/projects/xfs/ for
|
|
|
|
complete details. This implementation is on-disk compatible with the
|
|
|
|
IRIX version of XFS.
|
|
|
|
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%if 0%{?split_so_package} == 1
|
|
|
|
|
|
|
|
%package -n libhandle1
|
|
|
|
Summary: XFS Filesystem-specific Shared library
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
|
|
|
|
%description -n libhandle1
|
|
|
|
libhandle1 contains the shared libraries needed by xfsprogs
|
|
|
|
to run xfsprogs programs.
|
|
|
|
|
|
|
|
libhandle1 is always needed by xfsprogs. If you want to use this
|
|
|
|
library for your own new xfs tools install xfsprogs-devel.
|
|
|
|
%endif
|
|
|
|
|
2007-01-16 00:42:30 +01:00
|
|
|
%package devel
|
|
|
|
Summary: XFS Filesystem-specific Static Libraries and Headers
|
2012-02-15 14:37:22 +01:00
|
|
|
Group: Development/Libraries/C and C++
|
2015-03-19 15:44:17 +01:00
|
|
|
Requires: xfsprogs = %{version}
|
2018-04-18 12:22:46 +02:00
|
|
|
Requires: pkgconfig(uuid)
|
2007-01-16 00:42:30 +01:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
xfsprogs-devel contains the libraries and header files needed to
|
|
|
|
develop XFS file system-specific programs.
|
|
|
|
|
|
|
|
You should install xfsprogs-devel if you want to develop XFS file
|
|
|
|
system-specific programs. If you install xfsprogs-devel, you will also
|
|
|
|
want to install xfsprogs.
|
|
|
|
|
|
|
|
%prep
|
2007-04-04 20:13:27 +02:00
|
|
|
%setup -q
|
2012-05-07 22:29:09 +02:00
|
|
|
%if 0%{?suse_version}
|
2017-12-21 17:10:43 +01:00
|
|
|
%patch0 -p1
|
2012-05-07 22:29:09 +02:00
|
|
|
%endif
|
2007-01-16 00:42:30 +01:00
|
|
|
|
|
|
|
%build
|
2017-11-17 21:03:23 +01:00
|
|
|
aclocal -I m4
|
|
|
|
autoconf
|
|
|
|
|
2007-01-16 00:42:30 +01:00
|
|
|
export OPTIMIZER="-fPIC"
|
|
|
|
export DEBUG=-DNDEBUG
|
2015-03-19 15:44:17 +01:00
|
|
|
export LIBUUID=%{_libdir}/libuuid.a
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%if 0%{?xfs_use_systemd} == 1
|
2018-04-22 15:06:05 +02:00
|
|
|
export USE_SYSTEMD="--with-systemd-unit-dir=%{_unitdir}"
|
|
|
|
%endif
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
|
|
|
|
# Some paranoid compiler errors appear with read() which *do not* appear
|
|
|
|
# on newer compilers. With -Werror we'd fail building the packages so
|
|
|
|
# we need to work around these compilers for now. I tried fixing
|
|
|
|
# these concerns but in no way saw any issues with the warning issued,
|
|
|
|
# as such I don't think this is a real code issue, but more a compiler
|
|
|
|
# issue.
|
|
|
|
%if 0%{?sle_version} < 150000
|
|
|
|
export CFLAGS="$CFLAGS -Wno-error"
|
|
|
|
%endif
|
|
|
|
|
2018-04-22 15:06:05 +02:00
|
|
|
%configure --enable-readline=yes $USE_SYSTEMD
|
2016-01-04 10:27:31 +01:00
|
|
|
make %{?_smp_mflags} V=1
|
2007-01-16 00:42:30 +01:00
|
|
|
|
2017-05-23 20:14:04 +02:00
|
|
|
PATH_TO_HELP="%{_dracutmodulesdir}/95suse-xfs/dracut-fsck-help.txt"
|
|
|
|
sed -e "s|@@PATH_TO_HELP@@|$PATH_TO_HELP|" %{SOURCE3} > module-setup.sh
|
|
|
|
|
2007-01-16 00:42:30 +01:00
|
|
|
%install
|
2015-03-19 15:44:17 +01:00
|
|
|
export DIST_ROOT=%{buildroot}
|
|
|
|
make install
|
|
|
|
make install-dev
|
2018-05-24 18:08:02 +02:00
|
|
|
rm %{buildroot}%{_defaultdocdir}/%{name}/COPYING
|
2015-11-18 22:13:09 +01:00
|
|
|
# Move libhandle to usr, libhandle.{a,la} are symlinks to usr/lib* already so
|
|
|
|
# remove them first.
|
|
|
|
rm %{buildroot}/%{_lib}/libhandle.a
|
|
|
|
rm %{buildroot}/%{_lib}/libhandle.la
|
2015-03-19 15:44:17 +01:00
|
|
|
mv %{buildroot}/%{_lib}/* %{buildroot}%{_libdir}
|
|
|
|
%find_lang %{name}
|
2017-05-23 20:14:04 +02:00
|
|
|
install -m 0755 -d %{buildroot}/%{_dracutmodulesdir}/95suse-xfs/
|
|
|
|
install -m 0755 module-setup.sh %{buildroot}/%{_dracutmodulesdir}/95suse-xfs/
|
|
|
|
install -m 0644 %{SOURCE4} %{buildroot}/%{_dracutmodulesdir}/95suse-xfs/
|
2007-01-16 00:42:30 +01:00
|
|
|
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
# This seems more complex than it looks but deserves some notes otherwise
|
|
|
|
# anyone trying to undertand this will really scratch their heads. First the
|
|
|
|
# split_so_package implies that instead of doing the ldconfig's for the main
|
|
|
|
# xfsprogs package we'd be doing it now for the libhandle1 package. But if a
|
|
|
|
# system has systemd, the main xfsprogs package requires its own set of
|
|
|
|
# pre/post/prerun/postrun hooks for the main xfsprogs for the service files.
|
|
|
|
# For the systems that lack the requirement for libhandle1, we can expect them
|
|
|
|
# to also not require systemd, and as such the only package in those system
|
|
|
|
# requiring hooks is the main xfsprogs package which provides the libhandle so
|
|
|
|
# file.
|
|
|
|
%if 0%{?split_so_package} == 1
|
|
|
|
|
|
|
|
%if 0%{?suse_version} >= 1310
|
|
|
|
|
|
|
|
%if 0%{?xfs_use_systemd} == 1
|
|
|
|
%pre
|
|
|
|
%service_add_pre xfs_scrub@.service xfs_scrub_all.service xfs_scrub_all.timer xfs_scrub_fail@.service
|
|
|
|
|
|
|
|
%post
|
|
|
|
%service_add_post xfs_scrub@.service xfs_scrub_all.service xfs_scrub_all.timer xfs_scrub_fail@.service
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%service_del_preun xfs_scrub@.service xfs_scrub_all.service xfs_scrub_all.timer xfs_scrub_fail@.service
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%service_del_postun xfs_scrub@.service xfs_scrub_all.service xfs_scrub_all.timer xfs_scrub_fail@.service
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%post -n libhandle1
|
|
|
|
%{?regenerate_initrd_post}
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libhandle1
|
|
|
|
%{?regenerate_initrd_post}
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%posttrans -n libhandle1
|
|
|
|
%{?regenerate_initrd_posttrans}
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%postun -n libhandle1
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%else
|
|
|
|
# Below are systems that do not require the libhandle1 package. For these,
|
|
|
|
# its as we had things before, and xfsprogs provides the so library.
|
|
|
|
|
2016-01-04 10:27:31 +01:00
|
|
|
%if 0%{?suse_version} >= 1310
|
|
|
|
%post
|
|
|
|
%{?regenerate_initrd_post}
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%{?regenerate_initrd_post}
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%posttrans
|
|
|
|
%{?regenerate_initrd_posttrans}
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
|
2016-01-04 10:27:31 +01:00
|
|
|
%else
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%postun
|
2007-06-22 18:53:51 +02:00
|
|
|
%post -p /sbin/ldconfig
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%endif
|
2007-01-16 00:42:30 +01:00
|
|
|
|
2016-01-04 10:27:31 +01:00
|
|
|
%endif
|
2007-01-16 00:42:30 +01:00
|
|
|
|
2015-03-19 15:44:17 +01:00
|
|
|
%files -f %{name}.lang
|
2007-01-16 00:42:30 +01:00
|
|
|
%defattr(-,root,root,755)
|
2012-02-15 14:37:22 +01:00
|
|
|
#UsrMerge
|
2007-06-22 18:53:51 +02:00
|
|
|
/sbin/*
|
2012-02-15 14:37:22 +01:00
|
|
|
#EndUsrMerge
|
2015-03-19 15:44:17 +01:00
|
|
|
%{_sbindir}/*
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%if 0%{?split_so_package} != 1
|
2015-03-19 15:44:17 +01:00
|
|
|
%{_libdir}/libhandle.so.*
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%endif
|
2018-03-06 11:25:01 +01:00
|
|
|
%dir %{_libdir}/xfsprogs/
|
|
|
|
%{_libdir}/xfsprogs/xfs_scrub_all.cron
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%if 0%{?xfs_use_systemd} == 1
|
2018-04-22 15:06:05 +02:00
|
|
|
%{_libdir}/xfsprogs/xfs_scrub_fail
|
|
|
|
%{_unitdir}/xfs_scrub@.service
|
|
|
|
%{_unitdir}/xfs_scrub_all.service
|
|
|
|
%{_unitdir}/xfs_scrub_all.timer
|
|
|
|
%{_unitdir}/xfs_scrub_fail@.service
|
|
|
|
%endif
|
2018-03-06 11:25:01 +01:00
|
|
|
%doc %{_mandir}/man[258]/*
|
2015-03-19 15:44:17 +01:00
|
|
|
%doc %{_defaultdocdir}/%{name}
|
2018-05-24 18:08:02 +02:00
|
|
|
%license doc/COPYING
|
2017-05-23 20:14:04 +02:00
|
|
|
%dir %{_libexecdir}/dracut
|
|
|
|
%dir %{_libexecdir}/dracut/modules.d
|
|
|
|
%dir %{_dracutmodulesdir}/95suse-xfs/
|
|
|
|
%{_dracutmodulesdir}/95suse-xfs/dracut-fsck-help.txt
|
|
|
|
%{_dracutmodulesdir}/95suse-xfs/module-setup.sh
|
2007-06-22 18:53:51 +02:00
|
|
|
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
%if 0%{?split_so_package} == 1
|
|
|
|
%files -n libhandle1
|
|
|
|
%{_libdir}/libhandle.so.1.0.3
|
|
|
|
# The .1 symlink belongs to the main library package as per the
|
|
|
|
# documentation here:
|
|
|
|
# https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
|
|
|
|
%{_libdir}/libhandle.so.1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%files -n xfsprogs-devel
|
2007-01-16 00:42:30 +01:00
|
|
|
%defattr(-,root,root,755)
|
2015-03-19 15:44:17 +01:00
|
|
|
%{_includedir}/xfs
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
# The symlink single so file belongs in devel packages as per rpm lint
|
|
|
|
# and documentation here:
|
|
|
|
# https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
|
|
|
|
%{_libdir}/libhandle.so
|
|
|
|
# Archives for static builds
|
2015-03-19 15:44:17 +01:00
|
|
|
%{_libdir}/*.a
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
# Description of the libraries for libtool
|
2015-03-19 15:44:17 +01:00
|
|
|
%{_libdir}/*.la
|
Accepting request 605498 from home:mcgrof:branches:filesystems
- Fix OpenSUSE Tumbleweed package build (bsc#1091300) due to the libhandle1
library shared object (so) name expectations, this is documented here:
https://en.opensuse.org/openSUSE:Shared_library_packaging_policy
- Move systemd check to use a macro, to make it clear when the check is
used and for what purpose exactly. Perhaps this should be moved later
into a generic OpenSUSE/SUSE macro as a generic check as I suspect tons
of other rpms will likely need the same.
- Address -Werror errors on old compilers, for the life of me I can't see
how xfsprogs is at fault, so just disable -Werror on older compilers for
now. In the future we can consider adding a work around for the compiler
instead of disabling -Werror entirely, but for now this is the best I can
come up with.
- Drop make_xfs_scrub_interp_explicit.patch, this is now upstream
- Update to v4.16.1 (using verbiage from xfsprogs/doc/CHANGES now):
* fsck.xfs: remove bashism which may interfere with boot (Eric Sandeen)
* platforms: warn of impending deprecation of irix, freebsd, darwin
* mkfs.xfs : enable sparse inodes by default (Darrick Wong)
* fsck.xfs: allow forced boot-time repairs using xfs_repair (Jan Tulak)
* xfs_repair: new -e flag alters exit code for fixed errors (Jan Tulak)
* xfs_repair: fix to allow zeroing of corrupt log (Xiao Yang)
* xfs_repair: remove old dead code (Eric Sandeen)
* xfs_io: fix operation time reporting (Dave Chinner)
* xfs_io: add RWF_DSYNC support to pwrite (Dave Chinner)
* xfs_io: support a basic extent swap command (Brian Foster)
* xfs_scrub: Many updates, still experimental (Darrick Wong)
* xfs_db: print transaction reservation type information
* libxfs: framework to detect memory leaks (Eric Sandeen)
* misc: Fix up new warnings from gcc 7.3 (Darrick Wong)
* misc: enable link time optimization, if requested (Darrick Wong)
* misc: enable retpolines across all xfsprogs utilities (Darrick Wong)
OBS-URL: https://build.opensuse.org/request/show/605498
OBS-URL: https://build.opensuse.org/package/show/filesystems/xfsprogs?expand=0&rev=68
2018-05-09 18:22:52 +02:00
|
|
|
|
2015-03-19 15:44:17 +01:00
|
|
|
%{_mandir}/man3/*
|
2008-02-04 17:44:01 +01:00
|
|
|
|
2007-04-04 20:13:27 +02:00
|
|
|
%changelog
|