SHA256
1
0
forked from pool/fdupes

4 Commits

Author SHA256 Message Date
5e6f5b9d6d Accepting request 1273859 from utilities
OBS-URL: https://build.opensuse.org/request/show/1273859
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fdupes?expand=0&rev=37
2025-05-02 12:55:26 +00:00
03868d0fcf - Update to 2.4.0:
* Add quick summary option that skips byte-for-byte match confirmation.
  * Reduce number of progress indicator updates for better performance.
- Update to 2.3.2:
  * Keep cursor as close to current group as possible after deleting files.

OBS-URL: https://build.opensuse.org/package/show/utilities/fdupes?expand=0&rev=32
2025-05-01 15:37:47 +00:00
9517c3043b Accepting request 1248297 from utilities
OBS-URL: https://build.opensuse.org/request/show/1248297
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fdupes?expand=0&rev=36
2025-02-27 13:48:59 +00:00
4c25bc5f4f - Make build recipe succeed with POSIX sh
- Add extra quoting along the way

OBS-URL: https://build.opensuse.org/package/show/utilities/fdupes?expand=0&rev=31
2025-02-25 08:10:50 +00:00
4 changed files with 26 additions and 10 deletions

BIN
fdupes-2.3.1.tar.gz (Stored with Git LFS)

Binary file not shown.

3
fdupes-2.4.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:527b27a39d031dcbe1d29a220b3423228c28366c2412887eb72c25473d7b1736
size 155792

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sat Apr 26 08:53:25 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
- Update to 2.4.0:
* Add quick summary option that skips byte-for-byte match confirmation.
* Reduce number of progress indicator updates for better performance.
- Update to 2.3.2:
* Keep cursor as close to current group as possible after deleting files.
-------------------------------------------------------------------
Mon Feb 24 21:48:40 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Make build recipe succeed with POSIX sh
- Add extra quoting along the way
-------------------------------------------------------------------
Sat Jun 29 20:11:57 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package fdupes
#
# Copyright (c) 2024 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
@@ -19,7 +19,7 @@
%{?!_rpmmacrodir:%define _rpmmacrodir /usr/lib/rpm/macros.d}
Name: fdupes
Version: 2.3.1
Version: 2.4.0
Release: 0
Summary: Tool to identify or delete duplicate files
License: MIT
@@ -40,7 +40,7 @@ residing within specified directories.
%build
%configure --without-ncurses --without-sqlite
%make_build
g++ $RPM_OPT_FLAGS %{S:2} -o fdupes_wrapper
g++ %optflags %{S:2} -o fdupes_wrapper
%install
%make_install
@@ -54,7 +54,7 @@ install -D -m755 fdupes_wrapper %{buildroot}/usr/lib/rpm/fdupes_wrapper
./%{name} --size testdir
# Check wrapper
PATH=`pwd`:$PATH
PATH="$(pwd):$PATH"
(cd testdir; md5sum ./* ./*/* > ../testdir.md5 || true)
for operation in '-n' '-s' ' '; do
cp -R testdir "testdir${operation}"
@@ -64,13 +64,13 @@ done
# Check order does not depend on creation order - x should be target
mkdir testdir_order
for t in "a b x" "x a b" "a x b"; do
pushd testdir_order
for f in $t ; do cp ../testdir.md5 $f; done
cd testdir_order
for f in $t ; do cp ../testdir.md5 "$f"; done
../fdupes_wrapper -s ./
test -h ./a
test -h ./b
rm *
popd
cd -
done
%files