From 857ce57484e723430b2fd64a8f05637c48696fbc Mon Sep 17 00:00:00 2001 From: B Stack Date: Wed, 13 Mar 2019 15:11:55 +0000 Subject: Freefilesync 10.10 --- freefilesync/debian/changelog | 22 ++++++++++++++++++++++ freefilesync/debian/patches/ffs_libssh2.patch | 21 +++++++++++++++++++++ freefilesync/debian/patches/series | 1 + freefilesync/ffs_libssh2.patch | 21 +++++++++++++++++++++ freefilesync/freefilesync.spec | 15 +++++++++++---- 5 files changed, 76 insertions(+), 4 deletions(-) create mode 100644 freefilesync/debian/patches/ffs_libssh2.patch create mode 100644 freefilesync/ffs_libssh2.patch (limited to 'freefilesync') diff --git a/freefilesync/debian/changelog b/freefilesync/debian/changelog index 914b53d..be9ca15 100644 --- a/freefilesync/debian/changelog +++ b/freefilesync/debian/changelog @@ -1,3 +1,25 @@ +freefilesync (10.10-1devuan) manual; urgency=low + + * New option: synchronize selection + * Dynamically disable unsuitable context menu options + * Support MTP devices without move command + * Fall back to copy/delete when implicitly moving to different device (e.g. symlink) + * Fixed incorrect statistics after parallel move + * Fixed menu button not triggering context menu + * Fixed crash on focus change while message popup is dismissed + * Fixed crash when trying to shrink empty image + * Fixed invisible dialogs when monitor is turned off in multi-monitor setup + * Work around GetFileInformationByHandle error code 58 on WD My Cloud EX + * Changing deletion handling now correctly triggers updated config + * Support root-relative FTP file paths (e.g. FreeNAS) + * Move and rename MTP items as a transaction + * Exclude AppleDouble files (._) via default filter on macOS + * Support home path for FTP folder picker + * Use server default permissions when creating SFTP folder + * Use native OpenSSL AES-CTR rather than libssh2 fallback + * Added context information for cloud connection errors + * Updated translation files + freefilesync (10.9-1devuan) manual; urgency=low * Added FTP, SFTP, Google Drive support for Linux diff --git a/freefilesync/debian/patches/ffs_libssh2.patch b/freefilesync/debian/patches/ffs_libssh2.patch new file mode 100644 index 0000000..81287a3 --- /dev/null +++ b/freefilesync/debian/patches/ffs_libssh2.patch @@ -0,0 +1,21 @@ +Source: https://aur.archlinux.org/cgit/aur.git/commit/?h=freefilesync&id=7e1524db8e0243ff9d7b7dcba64a3a5228295725 +Author: Simon Brulhart +Message: libssh2 v1.8.0 does not yet implement LIBSSH2_SFTP_DEFAULT_MODE, revert to previous impl. +Method: + + sed -e 's/LIBSSH2_SFTP_DEFAULT_MODE/LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO/g' -i 'FreeFileSync/Source/fs/sftp.cpp' + +diff -x '*.swp' -x .git -Naur 10.10-0/FreeFileSync/Source/fs/sftp.cpp 10.10-1/FreeFileSync/Source/fs/sftp.cpp +--- 10.10-0/FreeFileSync/Source/fs/sftp.cpp 2019-03-12 08:09:58.465098982 -0400 ++++ 10.10-1/FreeFileSync/Source/fs/sftp.cpp 2019-03-12 08:27:05.718963710 -0400 +@@ -1657,8 +1657,8 @@ + runSftpCommand(login_, L"libssh2_sftp_mkdir", //throw SysError + [&](const SshSession::Details& sd) //noexcept! + { +-#if 1 //let's see how LIBSSH2_SFTP_DEFAULT_MODE works out: +- return ::libssh2_sftp_mkdir(sd.sftpChannel, getLibssh2Path(afsPath).c_str(), LIBSSH2_SFTP_DEFAULT_MODE); ++#if 1 //let's see how LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO works out: ++ return ::libssh2_sftp_mkdir(sd.sftpChannel, getLibssh2Path(afsPath).c_str(), LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO); + #else //default for newly created directories: 0777 + return ::libssh2_sftp_mkdir(sd.sftpChannel, getLibssh2Path(afsPath).c_str(), LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO); + #endif diff --git a/freefilesync/debian/patches/series b/freefilesync/debian/patches/series index 2dbed63..dcbf30c 100644 --- a/freefilesync/debian/patches/series +++ b/freefilesync/debian/patches/series @@ -5,3 +5,4 @@ ffs_no_check_updates.patch ffs_no_wx311.patch ffs_old_libcurl.patch ffs_sftp.patch +ffs_libssh2.patch diff --git a/freefilesync/ffs_libssh2.patch b/freefilesync/ffs_libssh2.patch new file mode 100644 index 0000000..81287a3 --- /dev/null +++ b/freefilesync/ffs_libssh2.patch @@ -0,0 +1,21 @@ +Source: https://aur.archlinux.org/cgit/aur.git/commit/?h=freefilesync&id=7e1524db8e0243ff9d7b7dcba64a3a5228295725 +Author: Simon Brulhart +Message: libssh2 v1.8.0 does not yet implement LIBSSH2_SFTP_DEFAULT_MODE, revert to previous impl. +Method: + + sed -e 's/LIBSSH2_SFTP_DEFAULT_MODE/LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO/g' -i 'FreeFileSync/Source/fs/sftp.cpp' + +diff -x '*.swp' -x .git -Naur 10.10-0/FreeFileSync/Source/fs/sftp.cpp 10.10-1/FreeFileSync/Source/fs/sftp.cpp +--- 10.10-0/FreeFileSync/Source/fs/sftp.cpp 2019-03-12 08:09:58.465098982 -0400 ++++ 10.10-1/FreeFileSync/Source/fs/sftp.cpp 2019-03-12 08:27:05.718963710 -0400 +@@ -1657,8 +1657,8 @@ + runSftpCommand(login_, L"libssh2_sftp_mkdir", //throw SysError + [&](const SshSession::Details& sd) //noexcept! + { +-#if 1 //let's see how LIBSSH2_SFTP_DEFAULT_MODE works out: +- return ::libssh2_sftp_mkdir(sd.sftpChannel, getLibssh2Path(afsPath).c_str(), LIBSSH2_SFTP_DEFAULT_MODE); ++#if 1 //let's see how LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO works out: ++ return ::libssh2_sftp_mkdir(sd.sftpChannel, getLibssh2Path(afsPath).c_str(), LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO); + #else //default for newly created directories: 0777 + return ::libssh2_sftp_mkdir(sd.sftpChannel, getLibssh2Path(afsPath).c_str(), LIBSSH2_SFTP_S_IRWXU | LIBSSH2_SFTP_S_IRWXG | LIBSSH2_SFTP_S_IRWXO); + #endif diff --git a/freefilesync/freefilesync.spec b/freefilesync/freefilesync.spec index adb5949..642a8b5 100644 --- a/freefilesync/freefilesync.spec +++ b/freefilesync/freefilesync.spec @@ -14,8 +14,8 @@ %define min_openssl >= 1.1.0h %endif Name: freefilesync -Version: 10.9 -Release: 2%{?dist} +Version: 10.10 +Release: 1%{?dist} Summary: A file synchronization utility Group: Applications/File @@ -32,6 +32,7 @@ Patch2: ffs_no_wx311.patch Patch3: ffs_sftp.patch Patch4: ffs_fedora.patch Patch5: ffs_el.patch +Patch6: ffs_libssh2.patch Packager: B Stack # WARNING: the build will FAIL if you have wxGTK3-devel installed. Only wxGTK2-devel should be on the build system. @@ -40,11 +41,12 @@ BuildRequires: compat-wxGTK3-gtk2-devel BuildRequires: desktop-file-utils BuildRequires: gcc-c++ BuildRequires: ImageMagick +BuildRequires: libcurl-devel %{min_libcurl} +BuildRequires: libssh2-devel %{min_libssh2} +BuildRequires: patch BuildRequires: pkgconfig(gtk+-2.0) BuildRequires: pkgconfig(libselinux) BuildRequires: pkgconfig(zlib) -BuildRequires: libcurl-devel %{min_libcurl} -BuildRequires: libssh2-devel %{min_libssh2} %if 0%{?el6}%{?el7} BuildRequires: wxGTK-devel BuildRequires: %{scl_buildreq} @@ -82,6 +84,7 @@ find . ! -type d \( -name '*.c' -o -name '*.cpp' -o -name '*.h' \) \ # use the fedora patch %patch4 -p1 %endif +%patch6 -p1 # custom build parameters for packaging application in rpm # fedora provides build_cxxflags, which is really just optflags @@ -179,6 +182,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %ghost %config %attr(666, -, -) %{_datadir}/%{name}/GlobalSettings.xml %changelog +* Tue Feb 12 2019 B Stack - 10.10-1 +- version bump +- add libssh2 patch from AUR + * Tue Feb 12 2019 B Stack - 10.9-1 - version bump - add manual install that is now absent from upstream -- cgit