Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package unrar for openSUSE:Factory:NonFree checked in at 2021-06-15 16:36:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory:NonFree/unrar (Old) and /work/SRC/openSUSE:Factory:NonFree/.unrar.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "unrar" Tue Jun 15 16:36:08 2021 rev:97 rq:899985 version:6.0.7 Changes: -------- --- /work/SRC/openSUSE:Factory:NonFree/unrar/unrar.changes 2021-05-18 18:25:48.931125435 +0200 +++ /work/SRC/openSUSE:Factory:NonFree/.unrar.new.32437/unrar.changes 2021-06-15 16:36:09.157570411 +0200 @@ -1,0 +2,6 @@ +Mon Jun 14 19:24:18 UTC 2021 - Ismail D??nmez <ism...@i10z.com> + +- Update to version 6.0.7 + * Based on WinRAR 6.0.2 + +------------------------------------------------------------------- Old: ---- unrarsrc-6.0.6.tar.gz New: ---- unrarsrc-6.0.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ unrar.spec ++++++ --- /var/tmp/diff_new_pack.Y5h9jN/_old 2021-06-15 16:36:09.937571762 +0200 +++ /var/tmp/diff_new_pack.Y5h9jN/_new 2021-06-15 16:36:09.937571762 +0200 @@ -1,7 +1,7 @@ # # spec file for package unrar # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,10 +18,10 @@ # majorversion should match the major version number. %define majorversion 6 -%define libsuffix 6_0_6 +%define libsuffix 6_0_7 Name: unrar -Version: 6.0.6 +Version: 6.0.7 Release: 0 Summary: A program to extract, test, and view RAR archives License: NonFree ++++++ unrarsrc-6.0.6.tar.gz -> unrarsrc-6.0.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/unrar/dll.rc new/unrar/dll.rc --- old/unrar/dll.rc 2021-05-16 21:55:19.000000000 +0200 +++ new/unrar/dll.rc 2021-06-11 11:15:51.000000000 +0200 @@ -2,8 +2,8 @@ #include <commctrl.h> VS_VERSION_INFO VERSIONINFO -FILEVERSION 6, 2, 1, 3796 -PRODUCTVERSION 6, 2, 1, 3796 +FILEVERSION 6, 2, 100, 3821 +PRODUCTVERSION 6, 2, 100, 3821 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP { @@ -14,8 +14,8 @@ VALUE "CompanyName", "Alexander Roshal\0" VALUE "ProductName", "RAR decompression library\0" VALUE "FileDescription", "RAR decompression library\0" - VALUE "FileVersion", "6.2.1\0" - VALUE "ProductVersion", "6.2.1\0" + VALUE "FileVersion", "6.2.0\0" + VALUE "ProductVersion", "6.2.0\0" VALUE "LegalCopyright", "Copyright ? Alexander Roshal 1993-2021\0" VALUE "OriginalFilename", "Unrar.dll\0" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/unrar/filcreat.cpp new/unrar/filcreat.cpp --- old/unrar/filcreat.cpp 2021-05-17 09:31:09.000000000 +0200 +++ new/unrar/filcreat.cpp 2021-06-11 11:20:54.000000000 +0200 @@ -1,7 +1,7 @@ #include "rar.hpp" // If NewFile==NULL, we delete created file after user confirmation. -// It is useful we we need to overwrite an existing folder or file, +// It is useful if we need to overwrite an existing folder or file, // but need user confirmation for that. bool FileCreate(RAROptions *Cmd,File *NewFile,wchar *Name,size_t MaxNameSize, bool *UserReject,int64 FileSize,RarTime *FileTime,bool WriteOnly) @@ -44,7 +44,9 @@ } // Try to truncate the existing file first instead of delete, - // so we preserve existing file permissions such as NTFS permissions. + // so we preserve existing file permissions, such as NTFS permissions, + // also as "Compressed" attribute and hard links. In GUI version we avoid + // deleting an existing file for non-.rar archive formats as well. uint FileMode=WriteOnly ? FMF_WRITE|FMF_SHAREREAD:FMF_UPDATE|FMF_SHAREREAD; if (NewFile!=NULL && NewFile->Create(Name,FileMode)) return true; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/unrar/version.hpp new/unrar/version.hpp --- old/unrar/version.hpp 2021-05-17 09:31:11.000000000 +0200 +++ new/unrar/version.hpp 2021-06-11 11:20:55.000000000 +0200 @@ -1,6 +1,6 @@ #define RARVER_MAJOR 6 #define RARVER_MINOR 2 -#define RARVER_BETA 1 -#define RARVER_DAY 17 -#define RARVER_MONTH 5 +#define RARVER_BETA 0 +#define RARVER_DAY 11 +#define RARVER_MONTH 6 #define RARVER_YEAR 2021