forked from pool/fdupes
Compare commits
4 Commits
Author | SHA256 | Date | |
---|---|---|---|
5e6f5b9d6d | |||
03868d0fcf | |||
9517c3043b | |||
4c25bc5f4f |
BIN
fdupes-2.3.1.tar.gz
(Stored with Git LFS)
BIN
fdupes-2.3.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
fdupes-2.4.0.tar.gz
Normal file
3
fdupes-2.4.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:527b27a39d031dcbe1d29a220b3423228c28366c2412887eb72c25473d7b1736
|
||||
size 155792
|
@@ -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>
|
||||
|
||||
|
14
fdupes.spec
14
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
|
||||
|
Reference in New Issue
Block a user