Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xlockmore for openSUSE:Factory checked in at 2024-09-16 17:42:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xlockmore (Old) and /work/SRC/openSUSE:Factory/.xlockmore.new.29891 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xlockmore" Mon Sep 16 17:42:24 2024 rev:52 rq:1201241 version:5.79 Changes: -------- --- /work/SRC/openSUSE:Factory/xlockmore/xlockmore.changes 2024-06-12 15:50:47.105512108 +0200 +++ /work/SRC/openSUSE:Factory/.xlockmore.new.29891/xlockmore.changes 2024-09-16 17:43:23.965859650 +0200 @@ -1,0 +2,10 @@ +Sun Sep 15 13:53:22 UTC 2024 - Antonio Teixeira <antonio.teixe...@suse.com> + +- Update to 5.79: + * pyraminx and oct mode extended to size 6 also some hardcoding of size + removed and fixed some drawing errors. +- Fix builds + * Remove xlockmore-strict-aliasing.patch + * Add xlockmore-cast-function-pointers.patch + +------------------------------------------------------------------- Old: ---- xlockmore-5.78.tar.xz xlockmore-5.78.tar.xz.asc xlockmore-strict-aliasing.patch New: ---- xlockmore-5.79.tar.xz xlockmore-5.79.tar.xz.asc xlockmore-cast-function-pointers.patch BETA DEBUG BEGIN: Old:- Fix builds * Remove xlockmore-strict-aliasing.patch * Add xlockmore-cast-function-pointers.patch BETA DEBUG END: BETA DEBUG BEGIN: New: * Remove xlockmore-strict-aliasing.patch * Add xlockmore-cast-function-pointers.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xlockmore.spec ++++++ --- /var/tmp/diff_new_pack.06aQO4/_old 2024-09-16 17:43:25.117907271 +0200 +++ /var/tmp/diff_new_pack.06aQO4/_new 2024-09-16 17:43:25.117907271 +0200 @@ -17,7 +17,7 @@ Name: xlockmore -Version: 5.78 +Version: 5.79 Release: 0 Summary: Screen Saver and Locker for the X Window System License: MIT @@ -34,11 +34,11 @@ # PATCH-MISSING-TAG -- See http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines Patch3: xlockmore-ttf_dir.patch # end of X.org related patches -Patch7: xlockmore-strict-aliasing.patch # PATCH-FIX-UPSTREAM xlockmore-extend-freetype-include-search.patch -- search only for freetype.h, not the half path. Also, # extended list of directories where could freetype be found Patch9: xlockmore-extend-freetype-include-search.patch Patch10: xlockmore-nose_mode_crash.patch +Patch11: xlockmore-cast-function-pointers.patch BuildRequires: ImageMagick-devel BuildRequires: automake BuildRequires: bc @@ -76,9 +76,9 @@ chmod -x README docs/Revisions %patch -P 1 %patch -P 3 -%patch -P 7 %patch -P 9 -p1 %patch -P 10 -p1 +%patch -P 11 -p1 %build aclocal ++++++ xlockmore-5.78.tar.xz -> xlockmore-5.79.tar.xz ++++++ ++++ 7496 lines of diff (skipped) ++++++ xlockmore-cast-function-pointers.patch ++++++ Index: b/xlock/vtlock_proc.c =================================================================== --- a/xlock/vtlock_proc.c +++ b/xlock/vtlock_proc.c @@ -188,7 +188,7 @@ find_x_proc(int disp_nr, dev_t lxdev, in lencmd = strlen(xcmd_ref); if ( stat( PROCDIR, &stbuf ) == -1 ) return( (pid_t)-1 ); namelist = (struct dirent **) malloc(sizeof (struct dirent *)); - if ((names = scan_dir(PROCDIR, &namelist, proc_dir_select, alphasort)) == -1 ) + if ((names = scan_dir(PROCDIR, &namelist, proc_dir_select, (int (*)(const void *, const void *)) alphasort)) == -1 ) { free(namelist); return( (pid_t)-1 ); @@ -301,7 +301,7 @@ scan_x_fds( struct inode_ref *inotab, in (void) sprintf(xfddir, PROCDIR "/%d/fd", proc); namelist = (struct dirent **) malloc(sizeof (struct dirent *)); - if (scan_dir(xfddir, &namelist, NULL, alphasort) == -1) { + if (scan_dir(xfddir, &namelist, NULL, (int (*)(const void *, const void *)) alphasort) == -1) { free(namelist); return 0; }