Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rasmol for openSUSE:Factory checked 
in at 2025-05-31 19:16:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rasmol (Old)
 and      /work/SRC/openSUSE:Factory/.rasmol.new.16005 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rasmol"

Sat May 31 19:16:38 2025 rev:27 rq:1281438 version:2.7.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/rasmol/rasmol.changes    2024-02-25 
14:08:24.781885611 +0100
+++ /work/SRC/openSUSE:Factory/.rasmol.new.16005/rasmol.changes 2025-05-31 
19:17:34.332507157 +0200
@@ -1,0 +2,7 @@
+Tue May 20 10:57:51 UTC 2025 - pgaj...@suse.com
+
+- added patches
+  build with gcc15
+  + rasmol-gcc15.patch
+
+-------------------------------------------------------------------

New:
----
  rasmol-gcc15.patch

BETA DEBUG BEGIN:
  New:  build with gcc15
  + rasmol-gcc15.patch
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rasmol.spec ++++++
--- /var/tmp/diff_new_pack.YwxHRL/_old  2025-05-31 19:17:34.984534104 +0200
+++ /var/tmp/diff_new_pack.YwxHRL/_new  2025-05-31 19:17:34.988534268 +0200
@@ -33,6 +33,8 @@
 # this patch ommit downloading CBFlib tarball which is copied from source2
 Patch3:         RasMol_%{version}-no_wget_CBFlib.patch
 Patch4:         RasMol_%{version}-CBFlib_rpmoptflags.patch
+# build with gcc15
+Patch5:         rasmol-gcc15.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Provides:       RasMol
 BuildRequires:  imake

++++++ rasmol-gcc15.patch ++++++
--- src/cif_fract.c     2025-05-20 09:10:32.902245777 +0000
+++ src/cif_fract.c     2025-05-20 10:39:28.903481837 +0000
@@ -348,8 +348,6 @@ int invxfrm(double __far mato2f[3][3], d
 {
     static int ii, jj;
     register double newvol, xdet;
-    
-    extern double det();
 
 
 
--- src/x11win.c        2025-05-20 09:10:32.903264813 +0000
+++ src/x11win.c        2025-05-20 10:52:30.481374700 +0000
@@ -2820,7 +2820,7 @@ int CreateImage( void )
     register int format;
     register Pixel *ptr;
 #ifdef MITSHM
-    register int (*handler)();
+    register XErrorHandler handler;
 #endif
 
     if( !Interactive )
@@ -3080,7 +3080,7 @@ static void HandleIPCCommand( void )
 
     register size_t rlen;
     register int result;
-    register int (*handler)();
+    register XErrorHandler handler;
     register char *cmnd;
     register char *ptr;
 
@@ -3168,22 +3168,22 @@ static void HandleIPCCommand( void )
 }
 
 
-void SetMouseUpdateStatus( int bool )
+void SetMouseUpdateStatus( int boolean )
 {
-    if( MouseUpdateStatus != bool )
+    if( MouseUpdateStatus != boolean )
     {   /* Enable/Disable Pointer Motion Events! */
         attr.event_mask = ExposureMask | ButtonPressMask | ButtonMotionMask 
                         | ButtonReleaseMask;
-        if( bool ) attr.event_mask |= PointerMotionMask;
+        if( boolean ) attr.event_mask |= PointerMotionMask;
         XChangeWindowAttributes( dpy, CanvWin, CWEventMask, &attr );
     }
-    MouseUpdateStatus = bool;
+    MouseUpdateStatus = boolean;
 }
 
 
-void SetMouseCaptureStatus( int bool )
+void SetMouseCaptureStatus( int boolean )
 {
-    MouseCaptureStatus = bool;
+    MouseCaptureStatus = boolean;
 }
                          
 

Reply via email to