diff --git a/fdupes-2.3.1.tar.gz b/fdupes-2.3.1.tar.gz deleted file mode 100644 index 37e286b..0000000 --- a/fdupes-2.3.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2482b4b8c931bd17cea21f4c27fa4747b877523029d57f794a2b48e6c378db17 -size 155094 diff --git a/fdupes-2.4.0.tar.gz b/fdupes-2.4.0.tar.gz new file mode 100644 index 0000000..998c0b8 --- /dev/null +++ b/fdupes-2.4.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527b27a39d031dcbe1d29a220b3423228c28366c2412887eb72c25473d7b1736 +size 155792 diff --git a/fdupes.changes b/fdupes.changes index a28d842..47b1550 100644 --- a/fdupes.changes +++ b/fdupes.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Sat Apr 26 08:53:25 UTC 2025 - Andrea Manzini + +- 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 + +- Make build recipe succeed with POSIX sh +- Add extra quoting along the way + ------------------------------------------------------------------- Sat Jun 29 20:11:57 UTC 2024 - Dirk Müller diff --git a/fdupes.spec b/fdupes.spec index 92af5a6..248b04b 100644 --- a/fdupes.spec +++ b/fdupes.spec @@ -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