|
@@ -1,20 +1,20 @@
|
|
Summary: Finds duplicate files in a given set of directories
|
|
Summary: Finds duplicate files in a given set of directories
|
|
Summary(ja): 指定されたディレクトリ群から重複ファイルを見つけるツール
|
|
Summary(ja): 指定されたディレクトリ群から重複ファイルを見つけるツール
|
|
Name: fdupes
|
|
Name: fdupes
|
|
-Version: 1.50
|
|
+Version: 1.51
|
|
-Release: 0.1.PR2%{?_dist_release}
|
|
+Release: 1%{?_dist_release}
|
|
License: MIT
|
|
License: MIT
|
|
Group: Applications/System
|
|
Group: Applications/System
|
|
URL: http://netdial.caribe.net/~adrian2/fdupes.html
|
|
URL: http://netdial.caribe.net/~adrian2/fdupes.html
|
|
-Source0: http://netdial.caribe.net/~adrian2/programs/fdupes/beta/%{name}-%{version}-PR2.tar.gz
|
|
+Source0: http://netdial.caribe.net/~adrian2/programs/fdupes/beta/%{name}-%{version}.tar.gz
|
|
|
|
|
|
-Patch0: %{name}-%{version}-destdir.patch
|
|
+Patch0: fdupes-1.51-destdir.patch
|
|
-# http://bugs.debian.org/213385
|
|
|
|
-Patch1: %{name}-%{version}-compare-file.patch
|
|
|
|
-# http://bugs.debian.org/447601
|
|
|
|
-Patch2: %{name}-%{version}-lfs.patch
|
|
|
|
# http://bugs.debian.org/353789
|
|
# http://bugs.debian.org/353789
|
|
-Patch3: %{name}-%{version}-typo.patch
|
|
+Patch1: fdupes-1.51-typo.patch
|
|
|
|
+# Fix CVE
|
|
|
|
+Patch2: fdupes-1.51-check-permissions.patch
|
|
|
|
+# Apply proper LDFLAGS
|
|
|
|
+Patch3: fdupes-1.51-obey-ldflags.patch
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
|
|
@@ -23,7 +23,7 @@ FDUPES is a program for identifying duplicate files residing within specified
|
|
directories.
|
|
directories.
|
|
|
|
|
|
%prep
|
|
%prep
|
|
-%setup -q -n %{name}-%{version}-PR2
|
|
+%setup -q -n %{name}-%{version}
|
|
%patch0 -p1
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch2 -p1
|
|
@@ -40,13 +40,13 @@ make %{?_smp_mflags} COMPILER_OPTIONS="$RPM_OPT_FLAGS"
|
|
# ... etc..
|
|
# ... etc..
|
|
|
|
|
|
%install
|
|
%install
|
|
-rm -rf $RPM_BUILD_ROOT
|
|
+rm -rf %{buildroot}
|
|
|
|
|
|
make install INSTALL="%{__install} -p" BIN_DIR=%{_bindir} \
|
|
make install INSTALL="%{__install} -p" BIN_DIR=%{_bindir} \
|
|
- MAN_BASE_DIR=%{_mandir} DESTDIR=$RPM_BUILD_ROOT
|
|
+ MAN_BASE_DIR=%{_mandir} DESTDIR=%{buildroot}
|
|
|
|
|
|
%clean
|
|
%clean
|
|
-rm -rf $RPM_BUILD_ROOT
|
|
+rm -rf %{buildroot}
|
|
|
|
|
|
%files
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%defattr(-,root,root,-)
|
|
@@ -58,6 +58,10 @@ rm -rf $RPM_BUILD_ROOT
|
|
%{_bindir}/%{name}
|
|
%{_bindir}/%{name}
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Sat Jul 12 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.51-1
|
|
|
|
+- new upstream release
|
|
|
|
+- imported fedora rawhide patches
|
|
|
|
+
|
|
* Wed Sep 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.50-0.1.PR2
|
|
* Wed Sep 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.50-0.1.PR2
|
|
- initial build for Vine Linux
|
|
- initial build for Vine Linux
|
|
|
|
|