Use nicer upstream tarball and verify signature fix build for Leap 42.1 and get a nicer keyring from gpg --export -a --export-options export-minimal 0x1E953E27D4311E58 > disorderfs.keyring OBS-URL: https://build.opensuse.org/request/show/509076 OBS-URL: https://build.opensuse.org/package/show/filesystems/disorderfs?expand=0&rev=2
58 lines
1.8 KiB
RPMSpec
58 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package disorderfs
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: disorderfs
|
|
Summary: FUSE filesystem that introduces non-determinism
|
|
License: GPL-3.0+
|
|
Group: Development/Tools/Building
|
|
BuildRequires: asciidoc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libattr-devel
|
|
BuildRequires: xsltproc
|
|
BuildRequires: pkgconfig(fuse)
|
|
Version: 0.5.1
|
|
Release: 0
|
|
Url: https://packages.debian.org/sid/disorderfs
|
|
Source0: https://reproducible.alioth.debian.org/releases/disorderfs/%{name}-%{version}.tar.bz2
|
|
Source1: https://reproducible.alioth.debian.org/releases/disorderfs/%{name}-%{version}.tar.bz2.asc
|
|
Source2: %{name}.keyring
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
disorderfs is an overlay FUSE filesystem that introduces non-determinism into
|
|
filesystem metadata. For example, it can randomize the order in which
|
|
directory entries are read. This is useful for detecting non-determinism
|
|
in the build process.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
make
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT PREFIX=/usr ENABLE_MAN=yes
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%doc COPYING README NEWS
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/disorderfs.1.gz
|
|
|
|
%changelog
|