* Fix warnings 'cipherSize X: incomplete last block (Y bytes),
padding to Z bytes' (harmless but annoying, #951)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/gocryptfs?expand=0&rev=15
115 lines
3.5 KiB
RPMSpec
115 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package gocryptfs
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%if 0%{?suse_version} < 1600
|
|
%bcond_with tests
|
|
%else
|
|
%ifarch riscv64
|
|
%bcond_with tests
|
|
%else
|
|
%bcond_without tests
|
|
%endif
|
|
%endif
|
|
|
|
Name: gocryptfs
|
|
Version: 2.6.1
|
|
Release: 0
|
|
Summary: Encrypted overlay filesystem written in Go
|
|
License: MIT
|
|
URL: https://nuetzlich.net/gocryptfs/
|
|
Source0: https://github.com/rfjakob/gocryptfs/releases/download/v%{version}/%{name}_v%{version}_src-deps.tar.gz
|
|
Source1: https://github.com/rfjakob/gocryptfs/releases/download/v%{version}/%{name}_v%{version}_src-deps.tar.gz.asc
|
|
Source2: https://nuetzlich.net/gocryptfs-signing-key.pub#/%{name}.keyring
|
|
Source3: %{name}.rpmlintrc
|
|
# PATCH-FIX-OPENSUSE fix-fusermount3-bin-name.patch munix9@googlemail.com -- Redefine fusermount3 binary where appropriate
|
|
Patch0: fix-fusermount3-bin-name.patch
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libssl)
|
|
Requires: %{_bindir}/fusermount3
|
|
Requires: util-linux-systemd
|
|
Suggests: %{name}-doc = %{version}
|
|
%if %{with tests}
|
|
#BuildRequires: ShellCheck
|
|
BuildRequires: fuse3
|
|
BuildRequires: util-linux-systemd
|
|
%endif
|
|
|
|
%description
|
|
gocryptfs is built on top the excellent go-fuse FUSE library.
|
|
This project was inspired by EncFS and strives to fix its
|
|
security issues while providing good performance.
|
|
|
|
gocryptfs uses file-based encryption that is implemented as a
|
|
mountable FUSE filesystem. Each file in gocryptfs is stored as
|
|
one corresponding encrypted file on disk.
|
|
|
|
%package doc
|
|
Summary: Documentation for gocryptfs
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
This package contains the documentation files for gocryptfs.
|
|
|
|
%prep
|
|
%autosetup -n %{name}_v%{version}_src-deps -p1
|
|
|
|
%build
|
|
export GOFLAGS="-mod=vendor -buildmode=pie -trimpath"
|
|
./build.bash
|
|
|
|
%install
|
|
%make_install
|
|
|
|
install -D -m 0755 -t %{buildroot}%{_bindir} contrib/atomicrename/atomicrename \
|
|
contrib/findholes/findholes contrib/statfs/statfs
|
|
install -D -m 0644 -t %{buildroot}%{_mandir}/man1 Documentation/statfs.1
|
|
|
|
rm Documentation/MANPAGE* Documentation/*.1
|
|
|
|
%check
|
|
./%{name} --version
|
|
%if %{with tests}
|
|
# fix "/usr/bin/fusermount3: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse3.conf"
|
|
rm -r tests/root_test
|
|
for test in TestDirectMount TestForceOwner ; do
|
|
awk -i inplace '/^func.*'"$test"'\(/ { print; print "\tt.Skip(\"disabled failing test\")"; next}1' $(grep -rl $test)
|
|
done
|
|
#./test.bash
|
|
go test -count 1 ./...
|
|
%endif
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_bindir}/%{name}
|
|
%{_bindir}/%{name}-xray
|
|
%{_bindir}/atomicrename
|
|
%{_bindir}/findholes
|
|
%{_bindir}/statfs
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
|
%{_mandir}/man1/%{name}-xray.1%{?ext_man}
|
|
%{_mandir}/man1/statfs.1%{?ext_man}
|
|
|
|
%files doc
|
|
%license LICENSE
|
|
%doc Documentation/*
|
|
|
|
%changelog
|