From d8f379083dc81ad61c49ace5d97752a321488bd6 Mon Sep 17 00:00:00 2001 From: Adrian Bunk Date: Sun, 12 May 2019 00:09:27 +0300 Subject: rdfind: Upgrade 1.3.4 -> 1.4.1 Remove patch for issue fixed upstream. The change in COPYING is due to updated FSF postal address. Signed-off-by: Adrian Bunk Signed-off-by: Khem Raj --- .../rdfind/files/reproducible_build.patch | 46 ---------------------- meta-oe/recipes-support/rdfind/rdfind_1.3.4.bb | 17 -------- meta-oe/recipes-support/rdfind/rdfind_1.4.1.bb | 16 ++++++++ 3 files changed, 16 insertions(+), 63 deletions(-) delete mode 100644 meta-oe/recipes-support/rdfind/files/reproducible_build.patch delete mode 100644 meta-oe/recipes-support/rdfind/rdfind_1.3.4.bb create mode 100644 meta-oe/recipes-support/rdfind/rdfind_1.4.1.bb diff --git a/meta-oe/recipes-support/rdfind/files/reproducible_build.patch b/meta-oe/recipes-support/rdfind/files/reproducible_build.patch deleted file mode 100644 index 36728a7885..0000000000 --- a/meta-oe/recipes-support/rdfind/files/reproducible_build.patch +++ /dev/null @@ -1,46 +0,0 @@ -Description: sort the filelist when it is complete to get reproducible behaviour -Author: Reiner Herrmann -Bug-Debian: https://bugs.debian.org/795790 - -Upstream-Status: Pending - -Signed-off-by: Andre McCurdy - -Index: rdfind-1.3.4/Fileinfo.hh -=================================================================== ---- rdfind-1.3.4.orig/Fileinfo.hh -+++ rdfind-1.3.4/Fileinfo.hh -@@ -189,6 +189,10 @@ public: - static bool compareondepth(const Fileinfo &a, const Fileinfo &b) - {return (a.depth() < b.depth());} - -+ //returns true if a has lower filename than b) -+ static bool compareonfilename(const Fileinfo &a, const Fileinfo &b) -+ {return (a.name().compare(b.name()) < 0);} -+ - //fills with bytes from the file. if lasttype is supplied, - //it is used to see if the file needs to be read again - useful if - //file is shorter than the length of the bytes field. -@@ -235,6 +239,10 @@ public: - static bool equaldepth(const Fileinfo &a, const Fileinfo &b) - {return (a.depth()==b.depth());} - -+ //returns true if filenames are equal -+ static bool equalfilename(const Fileinfo &a, const Fileinfo &b) -+ {return (a.name()==b.name());} -+ - //returns true if file is a regular file. call readfileinfo first! - bool isRegularFile() {return m_info.is_file;} - -Index: rdfind-1.3.4/rdfind.cc -=================================================================== ---- rdfind-1.3.4.orig/rdfind.cc -+++ rdfind-1.3.4/rdfind.cc -@@ -349,6 +349,7 @@ int main(int narg, char *argv[]) - cout<