Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ms-gsl for openSUSE:Factory checked 
in at 2025-12-17 17:31:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ms-gsl (Old)
 and      /work/SRC/openSUSE:Factory/.ms-gsl.new.1939 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ms-gsl"

Wed Dec 17 17:31:05 2025 rev:5 rq:1323011 version:4.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ms-gsl/ms-gsl.changes    2025-06-23 
14:55:27.513278733 +0200
+++ /work/SRC/openSUSE:Factory/.ms-gsl.new.1939/ms-gsl.changes  2025-12-17 
17:34:26.798804216 +0100
@@ -1,0 +2,17 @@
+Mon Dec 15 19:10:40 UTC 2025 - Scott Bradnick <[email protected]>
+
+- Adding 'Source100: README.md' as the README is suggested at src.opensuse.org
+  setup, otherwise get the following message:
+  * "Attention, "README.md" is not mentioned in spec files as source or patch."
+
+-------------------------------------------------------------------
+Mon Dec  8 18:47:52 UTC 2025 - Scott Bradnick <[email protected]>
+
+- Update to upstream version 4.2.1
+  * This is a patch release that corresponds with the current tip of the
+    rel/4.2 branch.
+  * Bug Fixes
+    - Fixed an issue with the v4.2.0 GSL release #1224
+      * https://github.com/microsoft/GSL/issues/1224
+
+-------------------------------------------------------------------

Old:
----
  ms-gsl-4.2.0.tar.gz

New:
----
  README.md
  _scmsync.obsinfo
  build.specials.obscpio
  ms-gsl-4.2.1.tar.gz

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

Other differences:
------------------
++++++ ms-gsl.spec ++++++
--- /var/tmp/diff_new_pack.dxB4H6/_old  2025-12-17 17:34:28.326868390 +0100
+++ /var/tmp/diff_new_pack.dxB4H6/_new  2025-12-17 17:34:28.334868725 +0100
@@ -17,12 +17,13 @@
 
 
 Name:           ms-gsl
-Version:        4.2.0
+Version:        4.2.1
 Release:        0
 Summary:        Guidelines Support Library
 License:        MIT
 URL:            https://github.com/Microsoft/GSL
-Source:         
%{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Source0:        
%{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Source100:      README.md
 BuildRequires:  git-core
 BuildRequires:  cmake
 BuildRequires:  gcc-c++

++++++ README.md ++++++
# ms-gsl

URL: [GSL](https://github.com/microsoft/GSL)

----

The Guidelines Support Library (GSL) contains functions and types that are 
suggested for use by the C++ Core Guidelines maintained by the Standard C++ 
Foundation. This repo contains Microsoft's implementation of GSL.

The entire implementation is provided inline in the headers under the gsl 
directory. The implementation generally assumes a platform that implements 
C++14 support.

While some types have been broken out into their own headers (e.g. gsl/span), 
it is simplest to just include gsl/gsl and gain access to the entire library.

++++++ _scmsync.obsinfo ++++++
mtime: 1765825903
commit: 617a914287551baee7bac9b09e730f1a983e3ba4ac4924210fbcde5e7720673e
url: https://src.opensuse.org/sbradnick/ms-gsl
revision: main

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2025-12-15 20:12:01.000000000 +0100
@@ -0,0 +1,4 @@
+_buildconfig-*
+_buildinfo-*
+*.obscpio
+ms-gsl/

++++++ ms-gsl-4.2.0.tar.gz -> ms-gsl-4.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/GSL-4.2.0/.github/workflows/ios.yml 
new/GSL-4.2.1/.github/workflows/ios.yml
--- old/GSL-4.2.0/.github/workflows/ios.yml     2025-02-28 15:53:25.000000000 
+0100
+++ new/GSL-4.2.1/.github/workflows/ios.yml     2025-12-08 19:17:57.000000000 
+0100
@@ -28,8 +28,8 @@
             -DCMAKE_OSX_DEPLOYMENT_TARGET=9 \
             -DCMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY \
             "-DMACOSX_BUNDLE_GUI_IDENTIFIER=GSL.\$(EXECUTABLE_NAME)" \
-            -DMACOSX_BUNDLE_BUNDLE_VERSION=3.1.0 \
-            -DMACOSX_BUNDLE_SHORT_VERSION_STRING=3.1.0 \
+            -DMACOSX_BUNDLE_BUNDLE_VERSION=4.2.1 \
+            -DMACOSX_BUNDLE_SHORT_VERSION_STRING=4.2.1 \
             ..
 
       - name: Build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/GSL-4.2.0/CMakeLists.txt new/GSL-4.2.1/CMakeLists.txt
--- old/GSL-4.2.0/CMakeLists.txt        2025-02-28 15:53:25.000000000 +0100
+++ new/GSL-4.2.1/CMakeLists.txt        2025-12-08 19:17:57.000000000 +0100
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.14...3.16)
 
-project(GSL VERSION 4.1.0 LANGUAGES CXX)
+project(GSL VERSION 4.2.1 LANGUAGES CXX)
 
 add_library(GSL INTERFACE)
 add_library(Microsoft.GSL::GSL ALIAS GSL)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/GSL-4.2.0/README.md new/GSL-4.2.1/README.md
--- old/GSL-4.2.0/README.md     2025-02-28 15:53:25.000000000 +0100
+++ new/GSL-4.2.1/README.md     2025-12-08 19:17:57.000000000 +0100
@@ -202,7 +202,7 @@
 
 FetchContent_Declare(GSL
     GIT_REPOSITORY "https://github.com/microsoft/GSL";
-    GIT_TAG "v4.1.0"
+    GIT_TAG "v4.2.1"
     GIT_SHALLOW ON
 )
 

Reply via email to