Compare commits
2 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 0d5ad4db3f | |||
|
|
6ac7c2ef57 |
2
_service
2
_service
@@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/pkolaczk/fclones.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">v0.34.0</param>
|
||||
<param name="revision">v0.35.0</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
</service>
|
||||
<service mode="buildtime" name="tar" />
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fb8cd53ba39b0ea7c9aa502a0c9dba6b53b3661394656d1cd406428d2a856c6f
|
||||
size 516108
|
||||
3
fclones-0.35.0.obscpio
Normal file
3
fclones-0.35.0.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d2e4ef51dcaa86f7b4f01056e8c2c6e4a4c6b7350ef2e6694b8d953acbe3fe4
|
||||
size 521228
|
||||
@@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 26 09:04:25 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
|
||||
|
||||
- Update to version 0.35.0:
|
||||
* update dependencies
|
||||
* Make GroupConfig Clone
|
||||
* By default, only report progress when stderr is a terminal
|
||||
* Add shell completion subcommand
|
||||
|
||||
- added shell completion subpackages
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 4 07:37:55 UTC 2023 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: fclones
|
||||
version: 0.34.0
|
||||
mtime: 1698596546
|
||||
commit: a55e427dadc8eb6f6c9ecc967fb6e0bdf5257123
|
||||
version: 0.35.0
|
||||
mtime: 1740995299
|
||||
commit: a74f90d293e05856d19a4c0ac2b29b46ef16cf23
|
||||
|
||||
58
fclones.spec
58
fclones.spec
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package fclones
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: fclones
|
||||
Version: 0.34.0
|
||||
Version: 0.35.0
|
||||
Release: 0
|
||||
Summary: Finds duplicate, unique, under- or over-replicated files
|
||||
License: MIT
|
||||
@@ -34,6 +34,35 @@ Contrary to fdupes or rdfind, %{name} processes files in parallel, which makes i
|
||||
%{name} communicates through standard Unix streams and it can write reports in human- and machine-friendly formats,
|
||||
therefore you can easily combine it with other tools.
|
||||
|
||||
%package bash-completion
|
||||
Summary: Bash Completion for %{name}
|
||||
Group: System/Shells
|
||||
Requires: bash-completion
|
||||
Supplements: (%{name} and bash-completion)
|
||||
BuildArch: noarch
|
||||
|
||||
%description bash-completion
|
||||
The official bash completion script for %{name}, generated during the build.
|
||||
|
||||
%package -n %{name}-fish-completion
|
||||
Summary: Fish Completion for %{name}
|
||||
Group: System/Shells
|
||||
Requires: %{name} = %{version}
|
||||
Supplements: (%{name} and fish)
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}-fish-completion
|
||||
Fish command line completion support for %{name}, generated during the build.
|
||||
|
||||
%package zsh-completion
|
||||
Summary: ZSH Completion for %{name}
|
||||
Group: System/Shells
|
||||
Supplements: (%{name} and zsh)
|
||||
BuildArch: noarch
|
||||
|
||||
%description zsh-completion
|
||||
The official zsh completion script for %{name}, generated during the build.
|
||||
|
||||
%prep
|
||||
%setup -qa1
|
||||
install -D -m 644 %{SOURCE2} .cargo/config
|
||||
@@ -45,9 +74,34 @@ install -D -m 644 %{SOURCE2} .cargo/config
|
||||
install -D -d -m 0755 %{buildroot}%{_bindir}
|
||||
install -m 0755 %{_builddir}/%{name}-%{version}/target/release/%{name} %{buildroot}%{_bindir}/%{name}
|
||||
|
||||
# create the bash completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions/
|
||||
%{buildroot}/%{_bindir}/%{name} complete bash > %{buildroot}%{_datarootdir}/bash-completion/completions/%{name}
|
||||
|
||||
# create the fish completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/fish/vendor_completions.d/
|
||||
%{buildroot}/%{_bindir}/%{name} complete fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
||||
|
||||
# create the zsh completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d/
|
||||
%{buildroot}/%{_bindir}/%{name} complete zsh > %{buildroot}%{_datarootdir}/zsh_completion.d/_%{name}
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%files -n %{name}-bash-completion
|
||||
%dir %{_datarootdir}/bash-completion/completions/
|
||||
%{_datarootdir}/bash-completion/completions/%{name}
|
||||
|
||||
%files -n %{name}-fish-completion
|
||||
%dir %{_datarootdir}/fish
|
||||
%dir %{_datarootdir}/fish/vendor_completions.d
|
||||
%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
||||
|
||||
%files -n %{name}-zsh-completion
|
||||
%dir %{_datarootdir}/zsh_completion.d/
|
||||
%{_datarootdir}/zsh_completion.d/_%{name}
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eb55584fe7b4ec718ff9ff472014c7e0fb7d972e062866fd2176e7709aba28f0
|
||||
size 24208386
|
||||
oid sha256:fb52f6c640e4e1f252b6b5ea4a6552d1a474436df8081628bee88a7096bcccca
|
||||
size 21593735
|
||||
|
||||
Reference in New Issue
Block a user