Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package golly for openSUSE:Factory checked 
in at 2026-08-09 21:41:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/golly (Old)
 and      /work/SRC/openSUSE:Factory/.golly.new.16738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "golly"

Sun Aug  9 21:41:11 2026 rev:6 rq:1370215 version:5.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/golly/golly.changes      2025-11-24 
14:13:08.111227926 +0100
+++ /work/SRC/openSUSE:Factory/.golly.new.16738/golly.changes   2026-08-09 
21:41:14.346327566 +0200
@@ -1,0 +2,5 @@
+Fri Aug  7 11:03:21 UTC 2026 - Antoine Belvire <[email protected]>
+
+- Add golly-5.0-popcount-ambiguous.patch: Fix build with recent gcc.
+
+-------------------------------------------------------------------

New:
----
  golly-5.0-popcount-ambiguous.patch

----------(New B)----------
  New:
- Add golly-5.0-popcount-ambiguous.patch: Fix build with recent gcc.
----------(New E)----------

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

Other differences:
------------------
++++++ golly.spec ++++++
--- /var/tmp/diff_new_pack.ODTwwa/_old  2026-08-09 21:41:15.234357905 +0200
+++ /var/tmp/diff_new_pack.ODTwwa/_new  2026-08-09 21:41:15.234357905 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package golly
 #
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,8 @@
 URL:            https://golly.sourceforge.io
 Source0:        
https://downloads.sourceforge.net/%{name}/%{name}-%{version}-src.tar.gz
 Source1:        %{name}.desktop
+# PATCH-FIX-UPSTREAM golly-5.0-popcount-ambiguous.patch -- fix compilation 
with recent gcc
+Patch0:         golly-5.0-popcount-ambiguous.patch
 BuildRequires:  SDL2-devel
 BuildRequires:  c++_compiler
 BuildRequires:  chrpath
@@ -79,7 +81,7 @@
 that use %{name}.
 
 %prep
-%setup -q -n %{name}-%{version}-src
+%autosetup -n %{name}-%{version}-src -p1
 rm -v {Help/Lexicon/modify.pl,docs/Build.html}
 
 %build

++++++ golly-5.0-popcount-ambiguous.patch ++++++
>From b485e7459ac6a1884cf25d19fa0a6bbe5a0e3996 Mon Sep 17 00:00:00 2001
From: Maks Verver <[email protected]>
Date: Thu, 2 Jul 2026 21:10:43 +0200
Subject: [PATCH] =?UTF-8?q?Fix=20error:=20reference=20to=20=E2=80=98popcou?=
 =?UTF-8?q?nt=E2=80=99=20is=20ambiguous?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 cmdline/bgolly.cpp | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/cmdline/bgolly.cpp b/cmdline/bgolly.cpp
index 9c189232..c6d32318 100644
--- a/cmdline/bgolly.cpp
+++ b/cmdline/bgolly.cpp
@@ -13,13 +13,12 @@
 #include "viewport.h"
 #include "liferender.h"
 #include "writepattern.h"
-#include <stdlib.h>
 #include <iostream>
-#include <cstdio>
+#include <stdlib.h>
+#include <stdio.h>
 #include <string.h>
-#include <cstdlib>
 
-using namespace std ;
+using std::cerr, std::cout, std::flush, std::endl ;
 
 double start ;
 int maxtime = 0 ;
-- 
2.51.1

Reply via email to