commit 000update-repos for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package 000update-repos for openSUSE:Factory 
checked in at 2024-03-20 21:04:11

Comparing /work/SRC/openSUSE:Factory/000update-repos (Old)
 and  /work/SRC/openSUSE:Factory/.000update-repos.new.1905 (New)


Package is "000update-repos"

Wed Mar 20 21:04:11 2024 rev:2465 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  factory:non-oss_3956.2.packages.zst
  factory_20240319.packages.zst



Other differences:
--


commit zstd for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package zstd for openSUSE:Factory checked in 
at 2024-03-20 21:09:32

Comparing /work/SRC/openSUSE:Factory/zstd (Old)
 and  /work/SRC/openSUSE:Factory/.zstd.new.1905 (New)


Package is "zstd"

Wed Mar 20 21:09:32 2024 rev:37 rq:1158640 version:1.5.5

Changes:

--- /work/SRC/openSUSE:Factory/zstd/zstd.changes2024-01-22 
20:39:04.627852030 +0100
+++ /work/SRC/openSUSE:Factory/.zstd.new.1905/zstd.changes  2024-03-20 
21:09:35.091453917 +0100
@@ -1,0 +2,7 @@
+Thu Mar 14 07:13:30 UTC 2024 - Guillaume GARDET 
+
+- Backport PAC/BTI fix for aarch64 
+  https://github.com/facebook/zstd/pull/3961 :
+  * zstd-pr-3961.patch
+
+---

New:

  zstd-pr-3961.patch

BETA DEBUG BEGIN:
  New:  https://github.com/facebook/zstd/pull/3961 :
  * zstd-pr-3961.patch
BETA DEBUG END:



Other differences:
--
++ zstd.spec ++
--- /var/tmp/diff_new_pack.VvdcVp/_old  2024-03-20 21:09:35.747478023 +0100
+++ /var/tmp/diff_new_pack.VvdcVp/_new  2024-03-20 21:09:35.747478023 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package zstd
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,6 +34,8 @@
 Source2:zstd.keyring
 Source99:   baselibs.conf
 Patch1: pzstd.1.patch
+# PATCH-FIX-UPSTREAM - https://github.com/facebook/zstd/pull/3961
+Patch2: zstd-pr-3961.patch
 BuildRequires:  gcc
 # C++ is needed for pzstd only
 BuildRequires:  gcc-c++


++ zstd-pr-3961.patch ++
>From a88781954a875c4f00883eba6a8c5d172c4f5c17 Mon Sep 17 00:00:00 2001
From: Nick Terrell 
Date: Wed, 13 Mar 2024 09:58:34 -0700
Subject: [PATCH] [asm][aarch64] Mark that BTI and PAC are supported

Mark that `huf_decompress_amd64.S` supports BTI and PAC, which it trivially 
does because it is empty for aarch64.

The issue only requested BTI markings, but it also makes sense to mark PAC, 
which is the only other feature.

Also run add a test for this mode to the ARM64 QEMU test. Before this PR it 
warns on `huf_decompress_amd64.S`, after it doesn't.

Fixes Issue #3841.
---
 .github/workflows/dev-short-tests.yml |  1 +
 lib/decompress/huf_decompress_amd64.S | 23 ++-
 2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/dev-short-tests.yml 
b/.github/workflows/dev-short-tests.yml
index b2aaff89cf..5324b38d9a 100644
--- a/.github/workflows/dev-short-tests.yml
+++ b/.github/workflows/dev-short-tests.yml
@@ -409,6 +409,7 @@ jobs:
 - name: ARM64
   if: ${{ matrix.name == 'ARM64' }}
   run: |
+LDFLAGS="-static -z force-bti" 
MOREFLAGS="-mbranch-protection=standard" CC=$XCC QEMU_SYS=$XEMU make clean check
 LDFLAGS="-static" CC=$XCC QEMU_SYS=$XEMU make clean check
 - name: PPC
   if: ${{ matrix.name == 'PPC' }}
diff --git a/lib/decompress/huf_decompress_amd64.S 
b/lib/decompress/huf_decompress_amd64.S
index 3b96b44612..78da291ee3 100644
--- a/lib/decompress/huf_decompress_amd64.S
+++ b/lib/decompress/huf_decompress_amd64.S
@@ -10,11 +10,32 @@
 
 #include "../common/portability_macros.h"
 
+#if defined(__ELF__) && defined(__GNUC__)
 /* Stack marking
  * ref: https://wiki.gentoo.org/wiki/Hardened/GNU_stack_quickstart
  */
-#if defined(__ELF__) && defined(__GNUC__)
 .section .note.GNU-stack,"",%progbits
+
+#if defined(__aarch64__)
+/* Mark that this assembly supports BTI & PAC, because it is empty for aarch64.
+ * See: https://github.com/facebook/zstd/issues/3841
+ * See: https://gcc.godbolt.org/z/sqr5T4ffK
+ * See: 
https://lore.kernel.org/linux-arm-kernel/20200429211641.9279-8-broo...@kernel.org/
+ * See: https://reviews.llvm.org/D62609
+ */
+.pushsection .note.gnu.property, "a"
+.p2align 3
+.long 4 /* size of the name - "GNU\0" */
+.long 0x10  /* size of descriptor */
+.long 0x5   /* NT_GNU_PROPERTY_TYPE_0 */
+.asciz "GNU"
+.long 0xc000/* pr_type - GNU_PROPERTY_AARCH64_FEATURE_1_AND */
+.long 4 /* pr_datasz - 4 bytes */
+.long 3 /* pr_data - GNU_PROPERTY_AARCH64_FEATURE_1_BTI | 
GNU_PROPERTY_AARCH64_FEATURE_1_PAC */
+.p2align 3  /* pr_padding - bring everything to 8 byte alignment */
+.popsection
+#endif
+
 #endif
 
 #if ZSTD_ENABLE_ASM_X86_64_BMI2


commit kf6-kio for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kf6-kio for openSUSE:Factory checked 
in at 2024-03-20 21:09:40

Comparing /work/SRC/openSUSE:Factory/kf6-kio (Old)
 and  /work/SRC/openSUSE:Factory/.kf6-kio.new.1905 (New)


Package is "kf6-kio"

Wed Mar 20 21:09:40 2024 rev:2 rq:1159094 version:6.0.0

Changes:

--- /work/SRC/openSUSE:Factory/kf6-kio/kf6-kio.changes  2024-03-11 
15:26:15.609485923 +0100
+++ /work/SRC/openSUSE:Factory/.kf6-kio.new.1905/kf6-kio.changes
2024-03-20 21:09:46.103858583 +0100
@@ -1,0 +2,6 @@
+Mon Mar 18 15:39:19 UTC 2024 - Fabian Vogt 
+
+- Add patch to fix KTerminalLaucherJob (kde#482107, boo#1221637):
+  * 0001-kterminallauncherjob-Inherit-default-process-environ.patch
+
+---

New:

  0001-kterminallauncherjob-Inherit-default-process-environ.patch

BETA DEBUG BEGIN:
  New:- Add patch to fix KTerminalLaucherJob (kde#482107, boo#1221637):
  * 0001-kterminallauncherjob-Inherit-default-process-environ.patch
BETA DEBUG END:



Other differences:
--
++ kf6-kio.spec ++
--- /var/tmp/diff_new_pack.0vTRD3/_old  2024-03-20 21:09:46.747882248 +0100
+++ /var/tmp/diff_new_pack.0vTRD3/_new  2024-03-20 21:09:46.747882248 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kf6-kio
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -35,6 +35,8 @@
 Source1:%{rname}-%{version}.tar.xz.sig
 Source2:frameworks.keyring
 %endif
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-kterminallauncherjob-Inherit-default-process-environ.patch
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  kf6-extra-cmake-modules >= %{_kf6_bugfix_version}

++ 0001-kterminallauncherjob-Inherit-default-process-environ.patch ++
>From 6e7775d315f389df0a440ed62b842ce83dc9a27e Mon Sep 17 00:00:00 2001
From: Nicolas Fella 
Date: Fri, 1 Mar 2024 22:16:07 +0100
Subject: [PATCH] [kterminallauncherjob] Inherit default process environment
 from parent

Before Qt 6.3, an empty (default constructed) QProcessEnvironment caused
QProcess to incorrectly inherit the environment variables from the parent
process. This was fixed in qtbase 5fc9c02a695.

CommandLauncherJob was adjusted for this in 
916984940f64e07db9b4d152be9f2a87dda0cfb4,
however here we are overriding its default env with our own default-constructed 
one

BUG: 482107
---
 src/gui/kterminallauncherjob.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gui/kterminallauncherjob.cpp b/src/gui/kterminallauncherjob.cpp
index c4e83fb11..edd99327b 100644
--- a/src/gui/kterminallauncherjob.cpp
+++ b/src/gui/kterminallauncherjob.cpp
@@ -22,7 +22,7 @@ public:
 QString m_fullCommand; // "xterm -e ls"
 QString m_desktopName;
 QByteArray m_startupId;
-QProcessEnvironment m_environment;
+QProcessEnvironment m_environment{QProcessEnvironment::InheritFromParent};
 };
 
 KTerminalLauncherJob::KTerminalLauncherJob(const QString &command, QObject 
*parent)
-- 
2.43.2


commit wireplumber for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wireplumber for openSUSE:Factory 
checked in at 2024-03-20 21:09:42

Comparing /work/SRC/openSUSE:Factory/wireplumber (Old)
 and  /work/SRC/openSUSE:Factory/.wireplumber.new.1905 (New)


Package is "wireplumber"

Wed Mar 20 21:09:42 2024 rev:31 rq:1159100 version:0.5.0

Changes:

--- /work/SRC/openSUSE:Factory/wireplumber/wireplumber.changes  2024-03-13 
22:17:54.594795862 +0100
+++ /work/SRC/openSUSE:Factory/.wireplumber.new.1905/wireplumber.changes
2024-03-20 21:09:51.788067457 +0100
@@ -1,0 +2,35 @@
+Mon Mar 18 16:34:10 UTC 2024 - Antonio Larrosa 
+
+- Update to version 0.5.0:
+  * Changes:
+- Bumped the minimum required version of PipeWire to 1.0.2,
+  because we make use of the 'api.bluez5.internal' property of
+  the BlueZ monitor (!613)
+- Improved the naming of Bluetooth nodes when the
+  auto-switching loopback node is present (!614)
+- Updated the documentation on "settings", the Bluetooth
+  monitor, the Access configuration, the file search locations
+  and added a document on how to modify the configuration file
+  (#595, !616)
+  * Fixes:
+- Fixed checking for available routes when selecting the
+  default node (!609)
+- Fixed an issue that was causing an infinite loop storing
+  routes in the state file (!610)
+- Fixed the interpretation of boolean values in the alsa
+  monitor rules (#586, !611)
+- Fixes a Lua crash when we have 2 smart filters, one with a
+  target and one without (!612)
+- Fixed an issue where the default nodes would not be updated
+  when the currently selected default node became unavailable
+  (#588, !615)
+- Fixed an issue that would cause the Props (volume, mute, etc)
+  of loopbacks and other filter nodes to not be restored at
+  startup (#577, !617)
+- Fixed how some constants were represented in the
+  gobject-introspection file, mostly by converting them from
+  defines to enums (#540, #591)
+- Fixed an issue using WirePlumber headers in other projects
+  due to redefinition of G_LOG_DOMAIN (#571)
+
+---

Old:

  wireplumber-0.4.90+git25.95cfa9e.obscpio

New:

  wireplumber-0.5.0.obscpio



Other differences:
--
++ wireplumber.spec ++
--- /var/tmp/diff_new_pack.DlkDVZ/_old  2024-03-20 21:09:52.524094503 +0100
+++ /var/tmp/diff_new_pack.DlkDVZ/_new  2024-03-20 21:09:52.528094650 +0100
@@ -22,7 +22,7 @@
 %define sover 0
 %define libwireplumber libwireplumber-%{apiver_str}-%{sover}
 Name:   wireplumber
-Version:0.4.90+git25.95cfa9e
+Version:0.5.0
 Release:0
 Summary:Session / policy manager implementation for PipeWire
 License:MIT

++ _service ++
--- /var/tmp/diff_new_pack.DlkDVZ/_old  2024-03-20 21:09:52.556095679 +0100
+++ /var/tmp/diff_new_pack.DlkDVZ/_new  2024-03-20 21:09:52.556095679 +0100
@@ -3,9 +3,13 @@
   
 git
 https://gitlab.freedesktop.org/pipewire/wireplumber.git
+0.5.0
+@PARENT_TAG@
+
 

commit DirectX-Headers for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package DirectX-Headers for openSUSE:Factory 
checked in at 2024-03-20 21:09:44

Comparing /work/SRC/openSUSE:Factory/DirectX-Headers (Old)
 and  /work/SRC/openSUSE:Factory/.DirectX-Headers.new.1905 (New)


Package is "DirectX-Headers"

Wed Mar 20 21:09:44 2024 rev:9 rq:1159134 version:1.613.0

Changes:

--- /work/SRC/openSUSE:Factory/DirectX-Headers/DirectX-Headers.changes  
2023-12-13 18:34:16.400876483 +0100
+++ 
/work/SRC/openSUSE:Factory/.DirectX-Headers.new.1905/DirectX-Headers.changes
2024-03-20 21:09:55.580206804 +0100
@@ -1,0 +2,9 @@
+Mon Mar 11 20:54:09 UTC 2024 - Scott Bradnick 
+
+- Update to 1.613.0:
+  * This release matches the content provided in the DirectX12
+Agility SDK and the 1.613.0 NuGet package.
+- https://devblogs.microsoft.com/directx/directx12agility/
+- https://www.nuget.org/packages/Microsoft.Direct3D.D3D12/1.613.0
+
+---

Old:

  DirectX-Headers-1.611.0.tar.gz

New:

  DirectX-Headers-1.613.0.tar.gz



Other differences:
--
++ DirectX-Headers.spec ++
--- /var/tmp/diff_new_pack.ts9j3V/_old  2024-03-20 21:09:57.196266188 +0100
+++ /var/tmp/diff_new_pack.ts9j3V/_new  2024-03-20 21:09:57.200266335 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package DirectX-Headers
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   DirectX-Headers
-Version:1.611.0
+Version:1.613.0
 Release:0
 Summary:DirectX Headers for Mesa
 License:MIT

++ DirectX-Headers-1.611.0.tar.gz -> DirectX-Headers-1.613.0.tar.gz ++
 7153 lines of diff (skipped)


commit python-hypothesmith for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-hypothesmith for 
openSUSE:Factory checked in at 2024-03-20 21:09:47

Comparing /work/SRC/openSUSE:Factory/python-hypothesmith (Old)
 and  /work/SRC/openSUSE:Factory/.python-hypothesmith.new.1905 (New)


Package is "python-hypothesmith"

Wed Mar 20 21:09:47 2024 rev:11 rq:1159225 version:0.3.3

Changes:

--- /work/SRC/openSUSE:Factory/python-hypothesmith/python-hypothesmith.changes  
2024-01-29 22:26:02.338970860 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-hypothesmith.new.1905/python-hypothesmith.changes
2024-03-20 21:10:00.964404654 +0100
@@ -1,0 +2,7 @@
+Tue Mar 19 07:02:34 UTC 2024 - Dirk Müller 
+
+- update to 0.3.3:
+  * Add Python 3.12 and 3.13 to CI
+  * Can now be imported on Python 3.13
+
+---

Old:

  hypothesmith-0.3.2.tar.gz

New:

  hypothesmith-0.3.3.tar.gz



Other differences:
--
++ python-hypothesmith.spec ++
--- /var/tmp/diff_new_pack.3DoA7E/_old  2024-03-20 21:10:01.928440078 +0100
+++ /var/tmp/diff_new_pack.3DoA7E/_new  2024-03-20 21:10:01.928440078 +0100
@@ -1,5 +1,5 @@
 #
-# spec file
+# spec file for package python-hypothesmith
 #
 # Copyright (c) 2024 SUSE LLC
 #
@@ -17,7 +17,6 @@
 
 
 %{?sle15_python_module_pythons}
-%define skip_python2 1
 %global flavor @BUILD_FLAVOR@%{nil}
 %if "%{flavor}" == "test"
 %define psuffix -test
@@ -27,7 +26,7 @@
 %bcond_with test
 %endif
 Name:   python-hypothesmith%{psuffix}
-Version:0.3.2
+Version:0.3.3
 Release:0
 Summary:Hypothesis strategies for generating Python programs, 
something like CSmith
 License:MPL-2.0

++ hypothesmith-0.3.2.tar.gz -> hypothesmith-0.3.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hypothesmith-0.3.2/CHANGELOG.md 
new/hypothesmith-0.3.3/CHANGELOG.md
--- old/hypothesmith-0.3.2/CHANGELOG.md 2024-01-13 17:44:25.0 +0100
+++ new/hypothesmith-0.3.3/CHANGELOG.md 2024-02-16 21:20:34.0 +0100
@@ -1,5 +1,9 @@
 # Changelog
 
+### 0.3.3 - 2024-02-16
+- Add Python 3.12 and 3.13 to CI
+- Can now be imported on Python 3.13
+
 ### 0.3.2 - 2024-01-13
 - Performance improvements based on
   [Hypothesis 
6.93.0](https://hypothesis.readthedocs.io/en/latest/changes.html#v6-93-0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hypothesmith-0.3.2/PKG-INFO 
new/hypothesmith-0.3.3/PKG-INFO
--- old/hypothesmith-0.3.2/PKG-INFO 2024-01-13 17:44:32.809634000 +0100
+++ new/hypothesmith-0.3.3/PKG-INFO 2024-02-16 21:20:46.524302500 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: hypothesmith
-Version: 0.3.2
+Version: 0.3.3
 Summary: Hypothesis strategies for generating Python programs, something like 
CSmith
 Home-page: https://github.com/Zac-HD/hypothesmith
 Author: Zac Hatfield-Dodds
@@ -18,6 +18,7 @@
 Classifier: Programming Language :: Python :: 3.9
 Classifier: Programming Language :: Python :: 3.10
 Classifier: Programming Language :: Python :: 3.11
+Classifier: Programming Language :: Python :: 3.12
 Classifier: Topic :: Software Development :: Testing
 Requires-Python: >=3.8
 Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hypothesmith-0.3.2/deps/check.txt 
new/hypothesmith-0.3.3/deps/check.txt
--- old/hypothesmith-0.3.2/deps/check.txt   2024-01-13 17:44:25.0 
+0100
+++ new/hypothesmith-0.3.3/deps/check.txt   2024-02-16 21:20:34.0 
+0100
@@ -10,9 +10,9 @@
 #   hypothesis
 autoflake==2.2.1
 # via shed
-bandit==1.7.6
+bandit==1.7.7
 # via flake8-bandit
-black==23.12.1
+black==24.2.0
 # via shed
 click==8.1.7
 # via black
@@ -29,17 +29,13 @@
 #   flake8-docstrings
 flake8-bandit==4.1.1
 # via -r deps/check.in
-flake8-bugbear==23.12.2
+flake8-bugbear==24.2.6
 # via -r deps/check.in
 flake8-comprehensions==3.14.0
 # via -r deps/check.in
 flake8-docstrings==1.7.0
 # via -r deps/check.in
-gitdb==4.0.11
-# via gitpython
-gitpython==3.1.41
-# via bandit
-hypothesis==6.93.0
+hypothesis==6.98.6
 # via -r deps/check.in
 isort==5.13.2
 # via shed
@@ -64,7 +60,7 @@
 # via black
 pbr==6.0.0
 # via stevedore
-platformdirs==4.1.0
+platformdirs==4.2.0
 # via black
 pycodestyle==2.11.1
 # via flake8
@@ -84,10 +80,8 @@
 #   libcst
 rich==13.7.0
 # via bandit
-shed==2023.6.1
+shed==2024.1.1
 # via -r deps/check.in
-smmap==5.0.1
-# via gitdb
 snowballstemmer==2.2.0
 # via pydocstyle
 sortedcontainers==2.4.0
diff -urN '--exclude=CVS' '--exclude=.cvsig

commit python-packaging for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-packaging for 
openSUSE:Factory checked in at 2024-03-20 21:09:31

Comparing /work/SRC/openSUSE:Factory/python-packaging (Old)
 and  /work/SRC/openSUSE:Factory/.python-packaging.new.1905 (New)


Package is "python-packaging"

Wed Mar 20 21:09:31 2024 rev:33 rq:1158406 version:24.0

Changes:

--- /work/SRC/openSUSE:Factory/python-packaging/python-packaging.changes
2023-11-13 22:15:43.236125174 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-packaging.new.1905/python-packaging.changes  
2024-03-20 21:09:33.055379098 +0100
@@ -1,0 +2,18 @@
+Sat Mar 16 09:28:29 UTC 2024 - Dirk Müller 
+
+- update to 24.0:
+  * Do specifier matching correctly when the specifier contains
+an epoch number and has more components than the version
+(:issue:`683`)
+  * Support the experimental --disable-gil builds in
+packaging.tags (:issue:`727`)
+  * BREAKING: Make optional metadata.Metadata attributes default
+to None (:issue:`733`)
+  * Fix errors when trying to access the
+description_content_type, keywords, and requires_python
+attributes on metadata.Metadata when those values have not
+been provided (:issue:`733`)
+  * Fix a bug preventing the use of the built in ExceptionGroup
+on versions of Python that support it (:issue:`725`)
+
+---

Old:

  packaging-23.2.tar.gz

New:

  packaging-24.0.tar.gz



Other differences:
--
++ python-packaging.spec ++
--- /var/tmp/diff_new_pack.DVMlvt/_old  2024-03-20 21:09:33.867408938 +0100
+++ /var/tmp/diff_new_pack.DVMlvt/_new  2024-03-20 21:09:33.871409085 +0100
@@ -1,7 +1,7 @@
 #
-# spec file
+# spec file for package python-packaging
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -53,7 +53,7 @@
 %endif
 
 Name:   %{pprefix}-packaging%{?psuffix}
-Version:23.2
+Version:24.0
 Release:0
 Summary:Core utilities for Python packages
 License:Apache-2.0 AND BSD-2-Clause

++ packaging-23.2.tar.gz -> packaging-24.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/packaging-23.2/CHANGELOG.rst 
new/packaging-24.0/CHANGELOG.rst
--- old/packaging-23.2/CHANGELOG.rst2023-10-01 15:49:25.44766 +0200
+++ new/packaging-24.0/CHANGELOG.rst2024-03-10 10:38:57.045243300 +0100
@@ -1,6 +1,20 @@
 Changelog
 -
 
+24.0 - 2024-03-10
+~
+
+* Do specifier matching correctly when the specifier contains an epoch number
+  and has more components than the version (:issue:`683`)
+* Support the experimental ``--disable-gil`` builds in packaging.tags
+  (:issue:`727`)
+* BREAKING: Make optional ``metadata.Metadata`` attributes default to ``None`` 
(:issue:`733`)
+* Fix errors when trying to access the ``description_content_type``, 
``keywords``,
+  and ``requires_python`` attributes on ``metadata.Metadata`` when those values
+  have not been provided (:issue:`733`)
+* Fix a bug preventing the use of the built in ``ExceptionGroup`` on versions 
of
+  Python that support it (:issue:`725`)
+
 23.2 - 2023-10-01
 ~
 
@@ -9,7 +23,7 @@
 * Requirement parsing no longer automatically validates the URL (:issue:`120`)
 * Canonicalize names for requirements comparison (:issue:`644`)
 * Introduce ``metadata.Metadata`` (along with ``metadata.ExceptionGroup`` and 
``metadata.InvalidMetadata``; :issue:`570`)
-* Introduce the ``validate`` keyword parameter to ``utils.validate_name()`` 
(:issue:`570`)
+* Introduce the ``validate`` keyword parameter to ``utils.normalize_name()`` 
(:issue:`570`)
 * Introduce ``utils.is_normalized_name()`` (:issue:`570`)
 * Make ``utils.parse_sdist_filename()`` and ``utils.parse_wheel_filename()``
   raise ``InvalidSdistFilename`` and ``InvalidWheelFilename``, respectively,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/packaging-23.2/PKG-INFO new/packaging-24.0/PKG-INFO
--- old/packaging-23.2/PKG-INFO 1970-01-01 01:00:00.0 +0100
+++ new/packaging-24.0/PKG-INFO 1970-01-01 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: packaging
-Version: 23.2
+Version: 24.0
 Summary: Core utilities for Python packages
 Author-email: Donald Stufft 
 Requires-Python: >=3.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/packaging-23.2/docs/development/getting-started.rst 
new/packaging-24.0/docs/development/gettin

commit python-zope.interface for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-zope.interface for 
openSUSE:Factory checked in at 2024-03-20 21:09:50

Comparing /work/SRC/openSUSE:Factory/python-zope.interface (Old)
 and  /work/SRC/openSUSE:Factory/.python-zope.interface.new.1905 (New)


Package is "python-zope.interface"

Wed Mar 20 21:09:50 2024 rev:36 rq:1159258 version:6.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-zope.interface/python-zope.interface.changes  
2024-01-05 22:59:09.109314476 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-zope.interface.new.1905/python-zope.interface.changes
2024-03-20 21:10:05.040554438 +0100
@@ -1,0 +2,7 @@
+Wed Mar 13 10:01:24 UTC 2024 - Dirk Müller 
+
+- update to 6.2:
+  * Add preliminary support for Python 3.13 as of 3.13a3.
+  * Add support to use the pipe (|) syntax for typing.Union.
+
+---

Old:

  zope.interface-6.1.tar.gz

New:

  zope.interface-6.2.tar.gz



Other differences:
--
++ python-zope.interface.spec ++
--- /var/tmp/diff_new_pack.LxvarG/_old  2024-03-20 21:10:06.780618379 +0100
+++ /var/tmp/diff_new_pack.LxvarG/_new  2024-03-20 21:10:06.796618967 +0100
@@ -1,5 +1,5 @@
 #
-# spec file
+# spec file for package python-zope.interface
 #
 # Copyright (c) 2024 SUSE LLC
 #
@@ -27,7 +27,7 @@
 %global modname zope.interface
 %{?sle15_python_module_pythons}
 Name:   python-zope.interface%{psuffix}
-Version:6.1
+Version:6.2
 Release:0
 Summary:Interfaces for Python
 License:ZPL-2.1

++ zope.interface-6.1.tar.gz -> zope.interface-6.2.tar.gz ++
 8002 lines of diff (skipped)


commit patterns-base for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package patterns-base for openSUSE:Factory 
checked in at 2024-03-20 21:09:52

Comparing /work/SRC/openSUSE:Factory/patterns-base (Old)
 and  /work/SRC/openSUSE:Factory/.patterns-base.new.1905 (New)


Package is "patterns-base"

Wed Mar 20 21:09:52 2024 rev:102 rq:1159295 version:20200505

Changes:

--- /work/SRC/openSUSE:Factory/patterns-base/patterns-base.changes  
2024-01-31 23:53:43.948951056 +0100
+++ /work/SRC/openSUSE:Factory/.patterns-base.new.1905/patterns-base.changes
2024-03-20 21:10:07.984662623 +0100
@@ -1,0 +2,7 @@
+Tue Mar 19 08:29:14 UTC 2024 - Dominique Leuenberger 
+
+- Drop dependency on gconf2 from patterns-base-x11_raspberrypi:
+  gconf2 has been removed from Factory like 2 years ago by now
+  (boo#1221660).
+
+---



Other differences:
--
++ patterns-base.spec ++
--- /var/tmp/diff_new_pack.pETJu3/_old  2024-03-20 21:10:09.636723330 +0100
+++ /var/tmp/diff_new_pack.pETJu3/_new  2024-03-20 21:10:09.652723918 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package patterns-base
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -555,9 +555,9 @@
 Requires:   (libfreebl3-hmac-32bit if libfreebl3-32bit)
 Requires:   (libgcrypt20-hmac if libgcrypt20)
 Requires:   (libgnutls30-hmac if libgnutls30)
-Requires:   (libopenssl-fips-provider if libopenssl)
-Requires:   (libopenssl-3-fips-provider if libopenssl3)
 Requires:   (libgnutls30-hmac-32bit if libgnutls30-32bit)
+Requires:   (libopenssl-3-fips-provider if libopenssl3)
+Requires:   (libopenssl-fips-provider if libopenssl)
 Requires:   (libopenssl1_0_0-hmac if libopenssl1_0_0)
 Requires:   (libopenssl1_0_0-hmac-32bit if libopenssl1_0_0-32bit)
 Requires:   (libopenssl1_1-hmac if libopenssl1_1)
@@ -930,7 +930,6 @@
 Requires:   pattern() = base
 Requires:   pattern() = x11
 # Other X11 packages
-Requires:   gconf2
 Requires:   gtk2-metatheme-adwaita
 Requires:   gtk3-metatheme-adwaita
 # X11/IceWM-specific packages


commit libproxy for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libproxy for openSUSE:Factory 
checked in at 2024-03-20 21:09:55

Comparing /work/SRC/openSUSE:Factory/libproxy (Old)
 and  /work/SRC/openSUSE:Factory/.libproxy.new.1905 (New)


Package is "libproxy"

Wed Mar 20 21:09:55 2024 rev:87 rq:1159310 version:0.5.3

Changes:

--- /work/SRC/openSUSE:Factory/libproxy/libproxy.changes2024-02-29 
21:49:18.739695479 +0100
+++ /work/SRC/openSUSE:Factory/.libproxy.new.1905/libproxy.changes  
2024-03-20 21:10:14.220891782 +0100
@@ -1,0 +2,6 @@
+Tue Mar 19 01:59:20 UTC 2024 - Yifan Jiang 
+
+- Do not use %elif by now since SLE, Leap does not have an rpm
+  supporting the tag.
+
+---



Other differences:
--
++ libproxy.spec ++
--- /var/tmp/diff_new_pack.pbXxbN/_old  2024-03-20 21:10:14.812913536 +0100
+++ /var/tmp/diff_new_pack.pbXxbN/_new  2024-03-20 21:10:14.812913536 +0100
@@ -19,7 +19,8 @@
 %define flavor @BUILD_FLAVOR@%nil
 %if "%{flavor}" == ""
 ExclusiveArch:  do-not-build
-%elif "%{flavor}" == "client"
+%else
+%if "%{flavor}" == "client"
   %define name_suffix %{flavor}
   %define dash -
   %define mini -mini
@@ -27,6 +28,7 @@
   %define name_suffix %{flavor}
   %define dash -
 %endif
+%endif
 
 %define _name   libproxy
 Name:   libproxy%{?dash}%{?name_suffix}


commit cepces for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cepces for openSUSE:Factory checked 
in at 2024-03-20 21:10:00

Comparing /work/SRC/openSUSE:Factory/cepces (Old)
 and  /work/SRC/openSUSE:Factory/.cepces.new.1905 (New)


Package is "cepces"

Wed Mar 20 21:10:00 2024 rev:10 rq:1159565 version:0.3.9

Changes:

--- /work/SRC/openSUSE:Factory/cepces/cepces.changes2024-01-24 
19:04:12.537061472 +0100
+++ /work/SRC/openSUSE:Factory/.cepces.new.1905/cepces.changes  2024-03-20 
21:10:17.913027454 +0100
@@ -1,0 +2,7 @@
+Mon Mar 18 19:06:40 UTC 2024 - dmul...@suse.com
+
+- Update to version 0.3.9:
+  * Fix failure to parse DER encoded cert; (bsc#1196658).
+- Also disable selinux in 15.6, since it is still not supported.
+
+---

Old:

  cepces-0.3.8.tar.bz2

New:

  cepces-0.3.9.tar.bz2



Other differences:
--
++ cepces.spec ++
--- /var/tmp/diff_new_pack.GRulYB/_old  2024-03-20 21:10:18.817060674 +0100
+++ /var/tmp/diff_new_pack.GRulYB/_new  2024-03-20 21:10:18.817060674 +0100
@@ -21,7 +21,7 @@
 %global logdir %{_localstatedir}/log/%{app_name}
 
 Name:   %{app_name}
-Version:0.3.8
+Version:0.3.9
 Release:0%{?dist}
 Summary:Certificate Enrollment through CEP/CES
 
@@ -32,7 +32,7 @@
 
 Requires:   %{app_name}-certmonger == %{version}
 Requires:   python3-%{app_name} == %{version}
-%if 0%{?sle_version} > 150400 || 0%{?suse_version} > 1500
+%if 0%{?sle_version} > 150600 || 0%{?suse_version} > 1500
 Requires:   (%{app_name}-selinux == %{version} if selinux-policy)
 %endif
 BuildRequires:  fdupes
@@ -68,7 +68,7 @@
 %{app_name} is an application for enrolling certificates through CEP and CES.
 This package provides the certmonger integration.
 
-%if 0%{?sle_version} > 150400 || 0%{?suse_version} > 1500
+%if 0%{?sle_version} > 150600 || 0%{?suse_version} > 1500
 %package selinux
 Summary:SELinux support for %{app_name}
 
@@ -87,7 +87,7 @@
 %build
 %py3_build
 
-%if 0%{?sle_version} > 150400 || 0%{?suse_version} > 1500
+%if 0%{?sle_version} > 150600 || 0%{?suse_version} > 1500
 # Build the SELinux module(s).
 for SELINUXVARIANT in %{selinux_variants}; do
   make -C selinux clean all
@@ -100,7 +100,7 @@
 
 install -d -m 0700 %{buildroot}%{logdir}
 
-%if 0%{?sle_version} > 150400 || 0%{?suse_version} > 1500
+%if 0%{?sle_version} > 150600 || 0%{?suse_version} > 1500
 # Install the SELinux module(s).
 rm -fv selinux-files.txt
 
@@ -133,7 +133,7 @@
 
 %fdupes %{buildroot}/%{python3_sitelib}/%{app_name}
 
-%if 0%{?sle_version} > 150400 || 0%{?suse_version} > 1500
+%if 0%{?sle_version} > 150600 || 0%{?suse_version} > 1500
 %post selinux
 for SELINUXVARIANT in %{selinux_variants}; do
   %{_sbindir}/semodule -n -s ${SELINUXVARIANT} \
@@ -191,7 +191,7 @@
 %dir %{_libexecdir}/certmonger
 %{_libexecdir}/certmonger/%{app_name}-submit
 
-%if 0%{?sle_version} > 150400 || 0%{?suse_version} > 1500
+%if 0%{?sle_version} > 150600 || 0%{?suse_version} > 1500
 %files selinux -f selinux-files.txt
 %defattr(0644,root,root,0755)
 %endif

++ _servicedata ++
--- /var/tmp/diff_new_pack.GRulYB/_old  2024-03-20 21:10:18.853061997 +0100
+++ /var/tmp/diff_new_pack.GRulYB/_new  2024-03-20 21:10:18.857062144 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/openSUSE/cepces.git
-  91447ecd6116440b606c797db139da55d6c7a3e6
+  6abc53e7edff33cd07204c7cd10ac658c9f4db4c
 (No newline at EOF)
 

++ cepces-0.3.8.tar.bz2 -> cepces-0.3.9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cepces-0.3.8/cepces/__init__.py 
new/cepces-0.3.9/cepces/__init__.py
--- old/cepces-0.3.8/cepces/__init__.py 2024-01-22 16:27:47.0 +0100
+++ new/cepces-0.3.9/cepces/__init__.py 2024-03-18 20:03:50.0 +0100
@@ -23,7 +23,7 @@
 __title__ = 'cepces'
 __description__ = 'CEP/CES library.'
 __url__ = 'https://github.com/openSUSE/cepces/'
-__version__ = '0.3.8'
+__version__ = '0.3.9'
 __author__ = 'Daniel Uvehag'
 __author_email__ = 'daniel.uve...@gmail.com'
 __license__ = 'GPLv3'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cepces-0.3.8/cepces/core.py 
new/cepces-0.3.9/cepces/core.py
--- old/cepces-0.3.8/cepces/core.py 2024-01-22 16:27:47.0 +0100
+++ new/cepces-0.3.9/cepces/core.py 2024-03-18 20:03:50.0 +0100
@@ -282,10 +282,17 @@
 oid = x509.oid.AuthorityInformationAccessOID
 
 # Load the certificate.
-cert = x509.load_pem_x509_certificate(
-data.encode(),
-default_backend(),
-)
+try:
+cert = x509

commit scons for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package scons for openSUSE:Factory checked 
in at 2024-03-20 21:10:05

Comparing /work/SRC/openSUSE:Factory/scons (Old)
 and  /work/SRC/openSUSE:Factory/.scons.new.1905 (New)


Package is "scons"

Wed Mar 20 21:10:05 2024 rev:47 rq:1159612 version:4.7.0

Changes:

--- /work/SRC/openSUSE:Factory/scons/scons.changes  2023-03-30 
22:50:38.088371793 +0200
+++ /work/SRC/openSUSE:Factory/.scons.new.1905/scons.changes2024-03-20 
21:10:24.277261318 +0100
@@ -1,0 +2,9 @@
+Tue Mar 19 07:07:00 UTC 2024 - Andreas Stieger 
+
+- SCons 4.7.0
+  * Add Method unlink_files to TestCmd for cleaning up
+  * Support LIBLITERALPREFIX
+  * Update support for D compilers, Java
+  * Bug fixes and internal improvements
+
+---

Old:

  SCons-4.5.2.tar.gz

New:

  SCons-4.7.0.tar.gz



Other differences:
--
++ scons.spec ++
--- /var/tmp/diff_new_pack.l4CzHQ/_old  2024-03-20 21:10:25.081290862 +0100
+++ /var/tmp/diff_new_pack.l4CzHQ/_new  2024-03-20 21:10:25.081290862 +0100
@@ -2,6 +2,7 @@
 # spec file for package scons
 #
 # Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 Andreas Stieger 
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +19,7 @@
 
 %define pythons python3
 Name:   scons
-Version:4.5.2
+Version:4.7.0
 Release:0
 Summary:Replacement for Make
 License:MIT

++ SCons-4.5.2.tar.gz -> SCons-4.7.0.tar.gz ++
 24432 lines of diff (skipped)


commit llvm for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package llvm for openSUSE:Factory checked in 
at 2024-03-20 21:10:09

Comparing /work/SRC/openSUSE:Factory/llvm (Old)
 and  /work/SRC/openSUSE:Factory/.llvm.new.1905 (New)


Package is "llvm"

Wed Mar 20 21:10:09 2024 rev:144 rq:1158828 version:18

Changes:

--- /work/SRC/openSUSE:Factory/llvm/llvm.changes2024-03-15 
20:28:50.470689323 +0100
+++ /work/SRC/openSUSE:Factory/.llvm.new.1905/llvm.changes  2024-03-20 
21:10:28.757425948 +0100
@@ -1,0 +2,8 @@
+Sun Mar 17 22:45:02 UTC 2024 - Aaron Puchert 
+
+- Drop libomp-devel and python3-lldb where the versioned package is
+  not being built.
+- Let llvm-devel require libomp-devel only where it is built.
+- Let lldb recommend python3-lldb only where it is built.
+
+---



Other differences:
--
++ llvm.spec ++
--- /var/tmp/diff_new_pack.gVnrGU/_old  2024-03-20 21:10:29.329446967 +0100
+++ /var/tmp/diff_new_pack.gVnrGU/_new  2024-03-20 21:10:29.333447114 +0100
@@ -17,10 +17,17 @@
 
 
 %define _sonum 18
+
+%ifarch aarch64 ppc64 ppc64le %{ix86} x86_64
+%global has_openmp 1
+%endif
+
 %ifarch aarch64 x86_64
 %define has_lldb 1
+%if %{suse_version} > 1600
 %define has_lldb_python 1
 %endif
+%endif
 
 # obsolete_llvm_versioned() prefix postfix
 # Obsolete packages X or X- with X being a set of 
older versions.
@@ -67,7 +74,9 @@
 Requires:   llvm%{_sonum}-devel
 Provides:   llvm-LTO-devel = %{version}
 Obsoletes:  llvm-LTO-devel < %{version}
+%if 0%{?has_openmp}
 Requires:   libomp-devel
+%endif
 Requires:   llvm-gold
 Requires:   llvm-polly-devel
 %obsolete_llvm_versioned llvm devel
@@ -193,7 +202,9 @@
 Group:  Development/Tools/Debuggers
 URL:https://lldb.llvm.org/
 Requires:   lldb%{_sonum}
+%if 0%{?has_lldb_python}
 Recommends: python3-lldb
+%endif
 
 %description -n lldb
 LLDB is a next generation, high-performance debugger. It is built as a set
@@ -354,8 +365,10 @@
 %files -n lld
 %doc README
 
+%if 0%{?has_openmp}
 %files -n libomp-devel
 %doc README
+%endif
 
 %files polly
 %doc README


commit libclc for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libclc for openSUSE:Factory checked 
in at 2024-03-20 21:10:12

Comparing /work/SRC/openSUSE:Factory/libclc (Old)
 and  /work/SRC/openSUSE:Factory/.libclc.new.1905 (New)


Package is "libclc"

Wed Mar 20 21:10:12 2024 rev:27 rq:1158843 version:0.2.0+llvm18.1.0

Changes:

--- /work/SRC/openSUSE:Factory/libclc/libclc.changes2023-11-23 
21:39:12.632314258 +0100
+++ /work/SRC/openSUSE:Factory/.libclc.new.1905/libclc.changes  2024-03-20 
21:10:33.073584551 +0100
@@ -1,0 +2,9 @@
+Sat Mar  9 22:30:18 UTC 2024 - Aaron Puchert 
+
+- Update to version 18.1.0.
+  * Fix signed integer underflow in abs_diff.
+  * Teach prepare-builtins how to handle text-based IR.
+  * Add half implementation for erf/erfc.
+  * Add missing AMD gfx symlinks.
+
+---

Old:

  libclc-17.0.1.src.tar.xz
  libclc-17.0.1.src.tar.xz.sig

New:

  libclc-18.1.0.src.tar.xz
  libclc-18.1.0.src.tar.xz.sig



Other differences:
--
++ libclc.spec ++
--- /var/tmp/diff_new_pack.CvzoFq/_old  2024-03-20 21:10:34.825648932 +0100
+++ /var/tmp/diff_new_pack.CvzoFq/_new  2024-03-20 21:10:34.837649374 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libclc
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 #
 
 
-%define _libclc_llvm_ver 17.0.1
+%define _libclc_llvm_ver 18.1.0
 %define _version %_libclc_llvm_ver%{?_rc:rc%_rc}
 %define _tagver %_libclc_llvm_ver%{?_rc:-rc%_rc}
 

++ libclc-17.0.1.src.tar.xz -> libclc-18.1.0.src.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libclc-17.0.1.src/CMakeLists.txt 
new/libclc-18.1.0.src/CMakeLists.txt
--- old/libclc-17.0.1.src/CMakeLists.txt2023-09-19 11:05:13.0 
+0200
+++ new/libclc-18.1.0.src/CMakeLists.txt2024-02-27 18:18:54.0 
+0100
@@ -142,17 +142,15 @@
 set( barts_aliases turks caicos )
 set( cayman_aliases aruba )
 set( tahiti_aliases pitcairn verde oland hainan bonaire kabini kaveri hawaii
-   mullins tonga iceland carrizo fiji stoney polaris10 polaris11 )
-
-# Support for gfx9 was added in LLVM 5.0 (r295554)
-if( ${LLVM_PACKAGE_VERSION} VERSION_GREATER "4.99.99" )
-   set( tahiti_aliases ${tahiti_aliases} gfx900 gfx902 )
-endif()
-
-# Support for Vega12 and Vega20 was added in LLVM 7 (r331215)
-if( ${LLVM_PACKAGE_VERSION} VERSION_GREATER "6.99.99" )
-   set( tahiti_aliases ${tahiti_aliases} gfx904 gfx906 )
-endif()
+   mullins tonga tongapro iceland carrizo fiji stoney polaris10 polaris11
+   gfx602 gfx705 gfx805
+   gfx900 gfx902 gfx904 gfx906 gfx908 gfx909 gfx90a gfx90c gfx940 gfx941 
gfx942
+   gfx1010 gfx1011 gfx1012 gfx1013
+   gfx1030 gfx1031 gfx1032 gfx1033 gfx1034 gfx1035 gfx1036
+   gfx1100 gfx1101 gfx1102 gfx1103
+   gfx1150 gfx1151
+   gfx1200 gfx1201
+)
 
 # pkg-config file
 configure_file( libclc.pc.in libclc.pc @ONLY )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libclc-17.0.1.src/generic/lib/integer/abs_diff.inc 
new/libclc-18.1.0.src/generic/lib/integer/abs_diff.inc
--- old/libclc-17.0.1.src/generic/lib/integer/abs_diff.inc  2023-09-19 
11:05:13.0 +0200
+++ new/libclc-18.1.0.src/generic/lib/integer/abs_diff.inc  2024-02-27 
18:18:54.0 +0100
@@ -1,3 +1,5 @@
 _CLC_OVERLOAD _CLC_DEF __CLC_U_GENTYPE abs_diff(__CLC_GENTYPE x, __CLC_GENTYPE 
y) {
-  return __builtin_astype((__CLC_GENTYPE)(x > y ? x-y : y-x), __CLC_U_GENTYPE);
+  __CLC_U_GENTYPE ux = __builtin_astype(x, __CLC_U_GENTYPE);
+  __CLC_U_GENTYPE uy = __builtin_astype(y, __CLC_U_GENTYPE);
+  return x > y ? ux - uy : uy - ux;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libclc-17.0.1.src/generic/lib/math/erf.cl 
new/libclc-18.1.0.src/generic/lib/math/erf.cl
--- old/libclc-17.0.1.src/generic/lib/math/erf.cl   2023-09-19 
11:05:13.0 +0200
+++ new/libclc-18.1.0.src/generic/lib/math/erf.cl   2024-02-27 
18:18:54.0 +0100
@@ -399,4 +399,16 @@
 
 _CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, double, erf, double);
 
+#ifdef cl_khr_fp16
+
+#pragma OPENCL EXTENSION cl_khr_fp16 : enable
+
+_CLC_OVERLOAD _CLC_DEF half erf(half h) {
+return (half)erf((float)h);
+}
+
+_CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, half, erf, half);
+
+#endif
+
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libclc-17.0.1.src/generic/

commit python-jwcrypto for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-jwcrypto for openSUSE:Factory 
checked in at 2024-03-20 21:09:48

Comparing /work/SRC/openSUSE:Factory/python-jwcrypto (Old)
 and  /work/SRC/openSUSE:Factory/.python-jwcrypto.new.1905 (New)


Package is "python-jwcrypto"

Wed Mar 20 21:09:48 2024 rev:16 rq:1159234 version:1.5.6

Changes:

--- /work/SRC/openSUSE:Factory/python-jwcrypto/python-jwcrypto.changes  
2024-01-05 22:59:11.213391570 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jwcrypto.new.1905/python-jwcrypto.changes
2024-03-20 21:10:03.996516073 +0100
@@ -1,0 +2,12 @@
+Tue Mar 19 07:14:44 UTC 2024 - Dirk Müller 
+
+- update to 1.5.6:
+  * Address potential DoS with high compression ratio
+- update to 1.5.4:
+  * One more release bump to address issues with
+typing_extensions minimum required version
+- update to 1.5.3:
+  * Drop python 3.6 and 3.7 and add 3.11 support
+  * replace deprecated package with typing_extensions
+
+---

Old:

  jwcrypto-1.5.1.tar.gz

New:

  jwcrypto-1.5.6.tar.gz



Other differences:
--
++ python-jwcrypto.spec ++
--- /var/tmp/diff_new_pack.59QUUO/_old  2024-03-20 21:10:04.604538416 +0100
+++ /var/tmp/diff_new_pack.59QUUO/_new  2024-03-20 21:10:04.608538562 +0100
@@ -16,23 +16,25 @@
 #
 
 
+%{?sle15_python_module_pythons}
 Name:   python-jwcrypto
-Version:1.5.1
+Version:1.5.6
 Release:0
 Summary:Python module package implementing JOSE Web standards
 License:LGPL-3.0-only
 URL:https://github.com/latchset/jwcrypto
 Source: 
https://files.pythonhosted.org/packages/source/j/jwcrypto/jwcrypto-%{version}.tar.gz
-BuildRequires:  %{python_module Deprecated}
+BuildRequires:  %{python_module base >= 3.8}
 BuildRequires:  %{python_module cryptography >= 3.4}
 BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module typing-extensions >= 4.5.0}
 BuildRequires:  %{python_module wheel}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:   python-Deprecated
 Requires:   python-cryptography >= 3.4
+Requires:   python-typing-extensions >= 4.5.0
 BuildArch:  noarch
 %python_subpackages
 

++ jwcrypto-1.5.1.tar.gz -> jwcrypto-1.5.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jwcrypto-1.5.1/PKG-INFO new/jwcrypto-1.5.6/PKG-INFO
--- old/jwcrypto-1.5.1/PKG-INFO 2023-12-26 20:51:00.196697500 +0100
+++ new/jwcrypto-1.5.6/PKG-INFO 2024-03-06 20:58:26.596289400 +0100
@@ -1,20 +1,19 @@
 Metadata-Version: 2.1
 Name: jwcrypto
-Version: 1.5.1
+Version: 1.5.6
 Summary: Implementation of JOSE Web standards
 Home-page: https://github.com/latchset/jwcrypto
 Maintainer: JWCrypto Project Contributors
 Maintainer-email: s...@redhat.com
 License: LGPLv3+
-Classifier: Programming Language :: Python :: 3.6
-Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
 Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
 Classifier: Intended Audience :: Developers
 Classifier: Topic :: Security
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
-Requires-Python: >= 3.6
+Requires-Python: >= 3.8
 Description-Content-Type: text/markdown
 License-File: LICENSE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jwcrypto-1.5.1/jwcrypto/VERSION 
new/jwcrypto-1.5.6/jwcrypto/VERSION
--- old/jwcrypto-1.5.1/jwcrypto/VERSION 2023-12-26 20:50:49.0 +0100
+++ new/jwcrypto-1.5.6/jwcrypto/VERSION 2024-03-06 20:46:25.0 +0100
@@ -1 +1 @@
-1.5.1
+1.5.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jwcrypto-1.5.1/jwcrypto/jwe.py 
new/jwcrypto-1.5.6/jwcrypto/jwe.py
--- old/jwcrypto-1.5.1/jwcrypto/jwe.py  2023-12-26 20:50:49.0 +0100
+++ new/jwcrypto-1.5.6/jwcrypto/jwe.py  2024-03-06 20:46:25.0 +0100
@@ -10,6 +10,9 @@
 from jwcrypto.jwa import JWA
 from jwcrypto.jwk import JWKSet
 
+# Limit the amount of data we are willing to decompress by default.
+default_max_compressed_size = 256 * 1024
+
 
 # RFC 7516 - 4.1
 # name: (description, supported?)
@@ -422,6 +425,10 @@
 
 compress = jh.get('zip', None)
 if compress == 'DEF':
+if len(data) > default_max_compressed_size:
+raise InvalidJWEData(
+'Compressed data exceeds maximum allowed'
+   

commit libpsl for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libpsl for openSUSE:Factory checked 
in at 2024-03-20 21:10:14

Comparing /work/SRC/openSUSE:Factory/libpsl (Old)
 and  /work/SRC/openSUSE:Factory/.libpsl.new.1905 (New)


Package is "libpsl"

Wed Mar 20 21:10:14 2024 rev:24 rq:1158882 version:0.21.5

Changes:

--- /work/SRC/openSUSE:Factory/libpsl/libpsl.changes2024-03-13 
22:16:18.451258903 +0100
+++ /work/SRC/openSUSE:Factory/.libpsl.new.1905/libpsl.changes  2024-03-20 
21:10:38.069768142 +0100
@@ -1,0 +2,7 @@
+Sun Mar 17 23:19:50 UTC 2024 - Andreas Stieger 
+
+- update to 0.21.5:
+  * fixes for other platforms and build system updates
+- add upstream signing key and verify source signature
+
+---
--- /work/SRC/openSUSE:Factory/libpsl/psl-make-dafsa.changes2022-12-29 
13:08:59.444894152 +0100
+++ /work/SRC/openSUSE:Factory/.libpsl.new.1905/psl-make-dafsa.changes  
2024-03-20 21:10:38.273775638 +0100
@@ -1,0 +2,7 @@
+Sun Mar 17 23:23:03 UTC 2024 - Andreas Stieger 
+
+- update to 0.21.5:
+  * no changes for psl-make-dafsa
+- add upstream signing key and verify source signature
+
+---

Old:

  libpsl-0.21.2.tar.gz

New:

  libpsl-0.21.5.tar.gz
  libpsl-0.21.5.tar.gz.sig
  libpsl.keyring



Other differences:
--
++ libpsl.spec ++
--- /var/tmp/diff_new_pack.bblf5j/_old  2024-03-20 21:10:39.149807830 +0100
+++ /var/tmp/diff_new_pack.bblf5j/_new  2024-03-20 21:10:39.153807977 +0100
@@ -2,6 +2,7 @@
 # spec file for package libpsl
 #
 # Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2024 Andreas Stieger 
 # Copyright (c) 2015 r...@cicku.me
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,13 +20,17 @@
 
 %define somajor 5
 Name:   libpsl
-Version:0.21.2
+Version:0.21.5
 Release:0
 Summary:C library for the Publix Suffix List
 License:BSD-3-Clause AND MIT AND MPL-2.0
 Group:  Development/Libraries/C and C++
 URL:https://rockdaboot.github.io/libpsl
 Source: 
https://github.com/rockdaboot/libpsl/releases/download/%{version}/%{name}-%{version}.tar.gz
+Source2:
https://github.com/rockdaboot/libpsl/releases/download/%{version}/%{name}-%{version}.tar.gz.sig
+# https://savannah.nongnu.org/users/rockdaboot
+# https://savannah.nongnu.org/people/viewgpg.php?user_id=87218
+Source3:%{name}.keyring
 Source1000: baselibs.conf
 BuildRequires:  libidn2-devel >= 0.14
 BuildRequires:  libunistring-devel
@@ -88,7 +93,7 @@
 and sorting domain lists by site.
 
 %prep
-%setup -q
+%autosetup -p1
 # fix env shebang to call py3 directly
 sed -i -e "1s|#!.*|#!%{_bindir}/python3|" src/psl-make-dafsa
 
@@ -107,14 +112,13 @@
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 # in psl-make-dafsa package to break build cycle
-make DESTDIR=%{buildroot} install-man
 rm %{buildroot}%{_mandir}/man1/psl-make-dafsa.1
+rm %{buildroot}%{_bindir}/psl-make-dafsa
 
 %check
-%make_build check || (cat tests/test-suite.log; exit 42)
+%make_build check
 
-%post -n %{name}%{somajor} -p /sbin/ldconfig
-%postun -n %{name}%{somajor} -p /sbin/ldconfig
+%ldconfig_scriptlets -n %{name}%{somajor}
 
 %files -n %{name}%{somajor}
 %license COPYING

++ psl-make-dafsa.spec ++
--- /var/tmp/diff_new_pack.bblf5j/_old  2024-03-20 21:10:39.181809006 +0100
+++ /var/tmp/diff_new_pack.bblf5j/_new  2024-03-20 21:10:39.181809006 +0100
@@ -2,6 +2,7 @@
 # spec file for package psl-make-dafsa
 #
 # Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2024 Andreas Stieger 
 # Copyright (c) 2015 r...@cicku.me
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,13 +19,17 @@
 
 
 Name:   psl-make-dafsa
-Version:0.21.2
+Version:0.21.5
 Release:0
 Summary:Tool to create a binary DAFSA from a Public Suffix List
 License:BSD-3-Clause
 Group:  Development/Libraries/C and C++
 URL:https://rockdaboot.github.io/libpsl
 Source: 
https://github.com/rockdaboot/libpsl/releases/download/%{version}/libpsl-%{version}.tar.gz
+Source2:
https://github.com/rockdaboot/libpsl/releases/download/%{version}/libpsl-%{version}.tar.gz.sig
+# https://savannah.nongnu.org/users/rockdaboot
+# https://savannah.nongnu.org/people/viewgpg.php?user_id=87218
+Source3:libpsl.keyring
 BuildRequires:  python-rpm-macros
 Requires:   python3-base
 BuildArch:  noarch
@@ -38,19 +43,16 @@
 This package is a build dependency for the publicsuffix package.
 
 %prep
-%setup -q -n libpsl-%{version}
-# fix env shebang to ca

commit flatpak for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package flatpak for openSUSE:Factory checked 
in at 2024-03-20 21:09:54

Comparing /work/SRC/openSUSE:Factory/flatpak (Old)
 and  /work/SRC/openSUSE:Factory/.flatpak.new.1905 (New)


Package is "flatpak"

Wed Mar 20 21:09:54 2024 rev:83 rq:1159297 version:1.15.6

Changes:

--- /work/SRC/openSUSE:Factory/flatpak/flatpak.changes  2024-03-09 
20:53:44.060501923 +0100
+++ /work/SRC/openSUSE:Factory/.flatpak.new.1905/flatpak.changes
2024-03-20 21:10:12.324822108 +0100
@@ -1,0 +2,6 @@
+Tue Mar 19 08:06:34 UTC 2024 - Antonio Larrosa 
+
+- Make flatpak-remote-flathub only supplement flatpak in TW
+  (bsc#1221662).
+
+---



Other differences:
--
++ flatpak.spec ++
--- /var/tmp/diff_new_pack.300GIO/_old  2024-03-20 21:10:13.080849890 +0100
+++ /var/tmp/diff_new_pack.300GIO/_new  2024-03-20 21:10:13.084850036 +0100
@@ -165,7 +165,9 @@
 Requires:   flatpak
 Requires(postun): flatpak
 Requires(postun): sed
+%if 0%{?suse_version} > 1600
 Supplements:flatpak
+%endif
 BuildArch:  noarch
 
 %description remote-flathub


commit gstreamer-plugins-bad for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gstreamer-plugins-bad for 
openSUSE:Factory checked in at 2024-03-20 21:10:17

Comparing /work/SRC/openSUSE:Factory/gstreamer-plugins-bad (Old)
 and  /work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new.1905 (New)


Package is "gstreamer-plugins-bad"

Wed Mar 20 21:10:17 2024 rev:167 rq:1158892 version:1.24.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-bad/gstreamer-plugins-bad.changes  
2024-03-13 22:17:10.701181088 +0100
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new.1905/gstreamer-plugins-bad.changes
2024-03-20 21:10:42.185919396 +0100
@@ -1,0 +2,6 @@
+Mon Mar 18 06:05:18 UTC 2024 - Antonio Larrosa 
+
+- Disable the webrtcdsp plugin if webrtc-audio-processing-1 is not
+  available (as in s390x).
+
+---



Other differences:
--
++ gstreamer-plugins-bad.spec ++
--- /var/tmp/diff_new_pack.84rS1I/_old  2024-03-20 21:10:42.809942327 +0100
+++ /var/tmp/diff_new_pack.84rS1I/_new  2024-03-20 21:10:42.809942327 +0100
@@ -205,8 +205,6 @@
 %if %{with webrtc_audio_processing_1}
 BuildRequires:  pkgconfig(webrtc-audio-coding-1) >= 1.0
 BuildRequires:  pkgconfig(webrtc-audio-processing-1) >= 1.0
-%else
-BuildRequires:  pkgconfig(webrtc-audio-processing) >= 0.2
 %endif
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xcb) >= 1.10
@@ -919,6 +917,9 @@
-D directshow=disabled \
-D d3d11=disabled \
-D qt6d3d11=disabled \
+%if %{without webrtc_audio_processing_1}
+   -D webrtcdsp=disabled \
+%endif
%{nil}
 %meson_build
 
@@ -1117,7 +1118,9 @@
 %if %{with zxing}
 %{_libdir}/gstreamer-%{gst_branch}/libgstzxing.so
 %endif
+%if %{with webrtc_audio_processing_1}
 %{_libdir}/gstreamer-%{gst_branch}/libgstwebrtcdsp.so
+%endif
 %{_libdir}/gstreamer-%{gst_branch}/libgsty4mdec.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstuvch264.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstwebp.so


commit python-ddt for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ddt for openSUSE:Factory 
checked in at 2024-03-20 21:10:20

Comparing /work/SRC/openSUSE:Factory/python-ddt (Old)
 and  /work/SRC/openSUSE:Factory/.python-ddt.new.1905 (New)


Package is "python-ddt"

Wed Mar 20 21:10:20 2024 rev:22 rq:1158948 version:1.7.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ddt/python-ddt.changes2024-01-09 
20:49:26.179746708 +0100
+++ /work/SRC/openSUSE:Factory/.python-ddt.new.1905/python-ddt.changes  
2024-03-20 21:10:45.682047866 +0100
@@ -1,0 +2,6 @@
+Mon Mar 18 10:29:00 UTC 2024 - Dirk Müller 
+
+- update to 1.7.2:
+  * Github actions to use tox for tests
+
+---

Old:

  ddt-1.7.1.tar.gz

New:

  ddt-1.7.2.tar.gz



Other differences:
--
++ python-ddt.spec ++
--- /var/tmp/diff_new_pack.dtsTR4/_old  2024-03-20 21:10:48.382147085 +0100
+++ /var/tmp/diff_new_pack.dtsTR4/_new  2024-03-20 21:10:48.382147085 +0100
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:   python-ddt
-Version:1.7.1
+Version:1.7.2
 Release:0
 Summary:Data-Driven/Decorated Tests
 License:MIT

++ ddt-1.7.1.tar.gz -> ddt-1.7.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ddt-1.7.1/MANIFEST.in new/ddt-1.7.2/MANIFEST.in
--- old/ddt-1.7.1/MANIFEST.in   2024-01-03 05:48:32.0 +0100
+++ new/ddt-1.7.2/MANIFEST.in   2024-02-26 02:36:21.0 +0100
@@ -1,2 +1,6 @@
 include *.md
 recursive-include test *.py *.json *.yaml
+include MANIFEST.in
+include LICENSE.md
+include tox.ini
+global-exclude *.py[cod] __pycache__
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ddt-1.7.1/PKG-INFO new/ddt-1.7.2/PKG-INFO
--- old/ddt-1.7.1/PKG-INFO  2024-01-03 05:48:40.458808200 +0100
+++ new/ddt-1.7.2/PKG-INFO  2024-02-26 02:36:31.915733000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ddt
-Version: 1.7.1
+Version: 1.7.2
 Summary: Data-Driven/Decorated Tests
 Home-page: https://github.com/datadriventests/ddt
 Author: Carles Barrobés
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ddt-1.7.1/ddt.egg-info/PKG-INFO 
new/ddt-1.7.2/ddt.egg-info/PKG-INFO
--- old/ddt-1.7.1/ddt.egg-info/PKG-INFO 2024-01-03 05:48:40.0 +0100
+++ new/ddt-1.7.2/ddt.egg-info/PKG-INFO 2024-02-26 02:36:31.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ddt
-Version: 1.7.1
+Version: 1.7.2
 Summary: Data-Driven/Decorated Tests
 Home-page: https://github.com/datadriventests/ddt
 Author: Carles Barrobés
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ddt-1.7.1/ddt.egg-info/SOURCES.txt 
new/ddt-1.7.2/ddt.egg-info/SOURCES.txt
--- old/ddt-1.7.1/ddt.egg-info/SOURCES.txt  2024-01-03 05:48:40.0 
+0100
+++ new/ddt-1.7.2/ddt.egg-info/SOURCES.txt  2024-02-26 02:36:31.0 
+0100
@@ -5,6 +5,7 @@
 ddt.py
 setup.cfg
 setup.py
+tox.ini
 ddt.egg-info/PKG-INFO
 ddt.egg-info/SOURCES.txt
 ddt.egg-info/dependency_links.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ddt-1.7.1/ddt.py new/ddt-1.7.2/ddt.py
--- old/ddt-1.7.1/ddt.py2024-01-03 05:48:32.0 +0100
+++ new/ddt-1.7.2/ddt.py2024-02-26 02:36:21.0 +0100
@@ -23,7 +23,7 @@
 from collections.abc import Sequence
 
 
-__version__ = '1.7.1'
+__version__ = '1.7.2'
 
 # These attributes will not conflict with any real python attribute
 # They are added to the decorated test method and processed later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ddt-1.7.1/tox.ini new/ddt-1.7.2/tox.ini
--- old/ddt-1.7.1/tox.ini   1970-01-01 01:00:00.0 +0100
+++ new/ddt-1.7.2/tox.ini   2024-02-26 02:36:21.0 +0100
@@ -0,0 +1,29 @@
+[tox]
+envlist = py36,py37,py38,py39,py310
+
+[testenv]
+deps = 
+pytest
+pytest-cov
+coverage
+aiounittest
+flake8
+six>=1.4.0
+PyYAML
+commands = 
+pytest --cov=ddt --cov-report html
+flake8 ddt.py test
+
+[flake8]
+max-line-length = 127
+exclude = .git,__pycache__,docs/source/conf.py,old,build,dist,.tox,.venv
+max-complexity = 10
+
+[gh-actions]
+python = 
+  3.8: py38
+  3.6: py36
+  3.7: py37
+  3.8: py38
+  3.9: py39
+  3.10: py310


commit suse-xsl-stylesheets for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package suse-xsl-stylesheets for 
openSUSE:Factory checked in at 2024-03-20 21:10:03

Comparing /work/SRC/openSUSE:Factory/suse-xsl-stylesheets (Old)
 and  /work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new.1905 (New)


Package is "suse-xsl-stylesheets"

Wed Mar 20 21:10:03 2024 rev:78 rq:1159591 version:2.94.2

Changes:

--- 
/work/SRC/openSUSE:Factory/suse-xsl-stylesheets/suse-xsl-stylesheets.changes
2024-02-18 20:22:43.393044235 +0100
+++ 
/work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new.1905/suse-xsl-stylesheets.changes
  2024-03-20 21:10:20.177110651 +0100
@@ -1,0 +2,9 @@
+Tue Mar 19 12:57:02 UTC 2024 - Thomas Schraitle  - 
2.94.2
+
+- Update 2.94.2
+  * Add abstract/para in article.titlepage.recto.auto.mode (SBPs) (#610)
+  * Correct include.ssi.{header,body,footer} params (#613)
+  * Introduce json-ld-base.dir parameter (#614)
+  * Correct social media length (#615)
+
+---

Old:

  suse-xsl-2.94.1.tar.bz2

New:

  suse-xsl-2.94.2.tar.bz2



Other differences:
--
++ suse-xsl-stylesheets.spec ++
--- /var/tmp/diff_new_pack.bkv8wd/_old  2024-03-20 21:10:22.105181501 +0100
+++ /var/tmp/diff_new_pack.bkv8wd/_new  2024-03-20 21:10:22.105181501 +0100
@@ -22,7 +22,7 @@
 %define suse_styles_dir   %{db_xml_dir}/stylesheet
 #
 Name:   suse-xsl-stylesheets
-Version:2.94.1
+Version:2.94.2
 Release:0
 Summary:SUSE-Branded Stylesheets for DocBook
 License:GPL-2.0-only OR GPL-3.0-only

++ suse-xsl-2.94.1.tar.bz2 -> suse-xsl-2.94.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/suse-xsl-2.94.1/ChangeLog 
new/suse-xsl-2.94.2/ChangeLog
--- old/suse-xsl-2.94.1/ChangeLog   2024-02-16 17:27:10.0 +0100
+++ new/suse-xsl-2.94.2/ChangeLog   2024-03-19 13:47:40.0 +0100
@@ -1,4 +1,12 @@
 ---
+Tue Mar 19 12:47:24 UTC 2024 - toms...@users.noreply.github.com
+
+- Update 2.94.2
+  * Add abstract/para in article.titlepage.recto.auto.mode (SBPs) (#610)
+  * Correct include.ssi.{header,body,footer} params (#613)
+  * Introduce json-ld-base.dir parameter (#614)
+  * Correct social media length (#615)
+---
 Fri Feb 16 16:26:56 UTC 2024 - toms...@users.noreply.github.com
 
 - Update 2.94.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/suse-xsl-2.94.1/sbp/xhtml/titlepage.templates.xsl 
new/suse-xsl-2.94.2/sbp/xhtml/titlepage.templates.xsl
--- old/suse-xsl-2.94.1/sbp/xhtml/titlepage.templates.xsl   2024-02-16 
17:27:10.0 +0100
+++ new/suse-xsl-2.94.2/sbp/xhtml/titlepage.templates.xsl   2024-03-19 
13:47:40.0 +0100
@@ -78,6 +78,10 @@
   
 
 
+  
+
+  
+
   
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/suse-xsl-2.94.1/suse2022-ns/xhtml/json-ld.xsl 
new/suse-xsl-2.94.2/suse2022-ns/xhtml/json-ld.xsl
--- old/suse-xsl-2.94.1/suse2022-ns/xhtml/json-ld.xsl   2024-02-16 
17:27:10.0 +0100
+++ new/suse-xsl-2.94.2/suse2022-ns/xhtml/json-ld.xsl   2024-03-19 
13:47:40.0 +0100
@@ -238,12 +238,12 @@
 select="$filename"/>" for 
   Found  node(s) (=).
   Found DC filename ""
-  base.dir=""
+  json-ld-base.dir=""
   filename=""
   
   -->
   
-
+
 
 text
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/suse-xsl-2.94.1/suse2022-ns/xhtml/param.xsl 
new/suse-xsl-2.94.2/suse2022-ns/xhtml/param.xsl
--- old/suse-xsl-2.94.1/suse2022-ns/xhtml/param.xsl 2024-02-16 
17:27:10.0 +0100
+++ new/suse-xsl-2.94.2/suse2022-ns/xhtml/param.xsl 2024-03-19 
13:47:40.0 +0100
@@ -416,11 +416,11 @@
   
   
-  
-  
+  
+  
   
   
-  
+  
   
   
   
-  /docserv/fragments/{{#language#}}/suse-head.fragment.html
-  /docserv/fragments/{{#language#}}/suse-body.fragment.html
-  /docserv/fragments/{{#language#}}/suse-footer.fragment.html
+  /docserv/fragments/suseparts/head_{{#language#}}.html
+  /docserv/fragments/suseparts/header_{{#language#}}.html
+  /docserv/fragments/suseparts/footer_{{#language#}}.html
 
   
   
@@ -467,6 +467,8 @@
   
   
   
+  
+  
   
   
   


commit python-gobject for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-gobject for openSUSE:Factory 
checked in at 2024-03-20 21:10:47

Comparing /work/SRC/openSUSE:Factory/python-gobject (Old)
 and  /work/SRC/openSUSE:Factory/.python-gobject.new.1905 (New)


Package is "python-gobject"

Wed Mar 20 21:10:47 2024 rev:97 rq:1159428 version:3.48.1

Changes:

--- /work/SRC/openSUSE:Factory/python-gobject/python-gobject.changes
2023-09-20 13:21:45.558673737 +0200
+++ /work/SRC/openSUSE:Factory/.python-gobject.new.1905/python-gobject.changes  
2024-03-20 21:11:33.051788533 +0100
@@ -1,0 +2,40 @@
+Mon Mar 11 08:00:09 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.48.1:
+  + Fix installation with pip failing in some environments with
+ModuleNotFoundError in g-ir-scanner.
+
+---
+Sat Mar  9 18:38:20 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.48.0:
+  + test: fix some tests on macOS.
+  + docs: some dark mode fixes.
+
+---
+Tue Feb 13 07:52:01 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.47.0:
+  + Drop setuptools in favor of meson-python.
+  + Fundamental type support.
+  + Fundamental type support for GValues.
+  + pygi-convert.sh: migrate FILE_CHOOSER_CONFIRMATION_*.
+  + gimodule, cairo: Use multi-phase initialization as per PEP-489.
+  + Deprecate classes in gi.option module.
+  + Deprecate pygtkcompat.
+  + Add support for (optional) nullable GErrors.
+  + Fix CssProvider not valid in GTK2.
+  + Fix double free if array item cannot be marshalled to Python.
+  + Raise exception if a callback property is encountered.
+  + build: Fix pycairo detection "script" for Windows.
+  + Replace deprecated ``pkgutil.find_loader`` call.
+  + Avoid segfault on property access for incompletely initialized
+objects.
+  + pygenum: When getting a member instance, use correct key for
+the lookup.
+  + Project / Development / CI:
+- Remove pborelli from the maintainer list.
+- Add Arjan Molenaar to maintainers.
+- Remove runtests script.
+
+---

Old:

  pygobject-3.46.0.tar.xz

New:

  _service
  pygobject-3.48.1.obscpio
  pygobject.obsinfo



Other differences:
--
++ python-gobject.spec ++
--- /var/tmp/diff_new_pack.wwGQS3/_old  2024-03-20 21:11:33.639810141 +0100
+++ /var/tmp/diff_new_pack.wwGQS3/_new  2024-03-20 21:11:33.639810141 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-gobject
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,18 +34,19 @@
 %define libffi_version 3.0
 %{?sle15_python_module_pythons}
 Name:   python-gobject
-Version:3.46.0
+Version:3.48.1
 Release:0
 Summary:Python bindings for GObject
 License:LGPL-2.1-or-later
 Group:  Development/Languages/Python
 URL:https://wiki.gnome.org/Projects/PyGObject/
-Source0:
https://download.gnome.org/sources/pygobject/3.46/%{_name}-%{version}.tar.xz
+Source0:%{_name}-%{version}.tar.zst
 
 BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module meson-python}
+BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module pycairo >= %{pycairo_version}}
 BuildRequires:  %{python_module pycairo-devel}
-BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  pkgconfig
 BuildRequires:  python-rpm-macros
@@ -128,10 +129,13 @@
 
 %build
 export CFLAGS="%{optflags}"
-%python_build
+%meson
+%meson_build
+%pyproject_wheel
 
 %install
-%python_install
+%meson_install
+%pyproject_install
 # Incorrectly installed by a python38-setuptools vendored distutils
 # which does not play well with the distro patched python38.
 # Later flavors installed the correct files into lib64 as well
@@ -153,6 +157,7 @@
 }
 
 find %{buildroot} "(" -name '*.la' -or -name '*.a' ")" -delete
+rm %{buildroot}%{_libdir}/*/site-packages/*.egg-info
 
 %{?python_compileall}
 %python_expand %fdupes %{buildroot}%{$python_sitearch}
@@ -162,9 +167,9 @@
 %doc NEWS
 %doc examples/
 %{python_sitearch}/gi/
-%{python_sitearch}/PyGObject-%{version}*-py*.egg-info
 # Lives in cairo subpackage
 %exclude %{python_sitearch}/gi/_gi_cairo*.so
+%{python_sitearch}/pygobject-%{version}.dist-info/
 # Lives in Gdk subpackage
 %exclude %{python_sitearch}/gi/_gtktemplate.py
 %exclude %{python_sitearch}/gi/overrides/Gdk.*
@@ -198,6 +203,7 @@
 
 %files %{python_files devel}
 %doc 

commit gnome-disk-utility for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-disk-utility for 
openSUSE:Factory checked in at 2024-03-20 21:10:49

Comparing /work/SRC/openSUSE:Factory/gnome-disk-utility (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-disk-utility.new.1905 (New)


Package is "gnome-disk-utility"

Wed Mar 20 21:10:49 2024 rev:87 rq:1159437 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-disk-utility/gnome-disk-utility.changes
2024-03-13 22:17:05.969007000 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-disk-utility.new.1905/gnome-disk-utility.changes
  2024-03-20 21:11:38.932004610 +0100
@@ -1,0 +2,13 @@
+Thu Mar 13 07:59:12 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + metainfo: Fix wrong developer id
+  + Updated translations.
+
+---
+Wed Mar 13 07:29:54 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + appdata: Improve appdata for AppStream 1.0.
+
+---

Old:

  gnome-disk-utility-45.1.tar.xz

New:

  _service
  gnome-disk-utility-46.0.obscpio
  gnome-disk-utility.obsinfo



Other differences:
--
++ gnome-disk-utility.spec ++
--- /var/tmp/diff_new_pack.gjdrvf/_old  2024-03-20 21:11:39.540026952 +0100
+++ /var/tmp/diff_new_pack.gjdrvf/_new  2024-03-20 21:11:39.544027100 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-disk-utility
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-disk-utility
-Version:45.1
+Version:46.0
 Release:0
 Summary:Disks application for dealing with storage devices
 License:GPL-2.0-or-later
 Group:  Hardware/Other
 URL:https://wiki.gnome.org/Apps/Disks
-Source0:
https://download.gnome.org/sources/gnome-disk-utility/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  appstream-glib
 BuildRequires:  desktop-file-utils

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gnome-disk-utility.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ gnome-disk-utility.obsinfo ++
name: gnome-disk-utility
version: 46.0
mtime: 1710015143
commit: d5618e1a91fd3795e3470b95326a16d9f81a246c


commit python-hatchling for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-hatchling for 
openSUSE:Factory checked in at 2024-03-20 21:10:40

Comparing /work/SRC/openSUSE:Factory/python-hatchling (Old)
 and  /work/SRC/openSUSE:Factory/.python-hatchling.new.1905 (New)


Package is "python-hatchling"

Wed Mar 20 21:10:40 2024 rev:23 rq:1159684 version:1.22.3

Changes:

--- /work/SRC/openSUSE:Factory/python-hatchling/python-hatchling.changes
2024-01-26 22:46:17.858102922 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-hatchling.new.1905/python-hatchling.changes  
2024-03-20 21:11:14.207096058 +0100
@@ -1,0 +2,53 @@
+Wed Mar 20 03:43:33 UTC 2024 - Matej Cepl 
+
+- Clean up the SPEC file
+
+---
+Tue Mar 19 20:32:47 UTC 2024 - Benoît Monin 
+
+- update to version 1.22.3:
+  * Fix the custom build hook when using dynamic dependencies
+
+---
+Sun Mar 17 21:05:34 UTC 2024 - Benoît Monin 
+
+- update to 1.22.2:
+  * Fixed:
++ Fix regression when loading metadata from source
+  distributions
++ Fix metadata hooks when building wheels from source
+  distributions
+- additional changes from version 1.22.1:
+  * Fixed:
++ Update the default version of core metadata to 2.3
+
+- additional changes from version 1.22.0:
+  * Deprecated:
++ The app build target has been renamed to binary to reduce
+  ambiguity with the name of an upcoming feature. The former
+  name will still be usable for several minor releases.
+  * Added:
++ Metadata for the wheel target now defaults to the PKG-INFO
+  metadata within source distributions
++ Add dependencies method to the build hook interface so that
+  hooks can themselves dynamically define dependencies
++ Update the default version of core metadata to 2.2
++ Update SPDX license information to version 3.23
++ Improve error message for when the default heuristics for
+  wheel file inclusion fail
+  * Fixed:
++ Properly support core metadata version 2.2
++ Remove editables as a direct dependency
++ Fix default wheel tag when the supported Python version
+  declaration is strict
++ Load VCS ignore patterns first so that whitelisted patterns
+  can be excluded by project configuration
++ Don't consider VCS ignore files that are outside of the VCS
+  boundary
++ The sdist build target now gracefully ignores UNIX socket
+  files
++ Begin ignoring certain files ubiquitously, like .DS_Store on
+  macOS
+- remove editables from the required packages
+
+---

Old:

  hatchling-1.21.1.tar.gz

New:

  hatchling-1.22.3.tar.gz



Other differences:
--
++ python-hatchling.spec ++
--- /var/tmp/diff_new_pack.V0p5Ux/_old  2024-03-20 21:11:15.355138245 +0100
+++ /var/tmp/diff_new_pack.V0p5Ux/_new  2024-03-20 21:11:15.355138245 +0100
@@ -18,14 +18,13 @@
 
 %{?sle15_python_module_pythons}
 Name:   python-hatchling
-Version:1.21.1
+Version:1.22.3
 Release:0
 Summary:Build backend used by Hatch
 License:MIT
 URL:https://hatch.pypa.io/latest/
 Source0:
https://files.pythonhosted.org/packages/source/h/hatchling/hatchling-%{version}.tar.gz
 BuildRequires:  %{python_module base >= 3.8}
-BuildRequires:  %{python_module editables >= 0.3}
 BuildRequires:  %{python_module packaging >= 21.3}
 BuildRequires:  %{python_module pathspec >= 0.10.1}
 BuildRequires:  %{python_module pip}
@@ -34,17 +33,14 @@
 BuildRequires:  %{python_module trove-classifiers}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:   python-editables >= 0.3
 Requires:   python-packaging >= 21.3
 Requires:   python-pathspec >= 0.10.1
 Requires:   python-pluggy >= 1.0.0
 Requires:   python-trove-classifiers
+Requires:   (python-tomli >= 1.2.2 if python-base < 3.11)
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
 BuildArch:  noarch
-%if 0%{?python_version_nodots} < 311
-Requires:   python-tomli >= 1.2.2
-%endif
 %python_subpackages
 
 %description

++ hatchling-1.21.1.tar.gz -> hatchling-1.22.3.tar.gz ++
 1824 lines of diff (skipped)


commit gtksourceview5 for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gtksourceview5 for openSUSE:Factory 
checked in at 2024-03-20 21:11:13

Comparing /work/SRC/openSUSE:Factory/gtksourceview5 (Old)
 and  /work/SRC/openSUSE:Factory/.gtksourceview5.new.1905 (New)


Package is "gtksourceview5"

Wed Mar 20 21:11:13 2024 rev:10 rq:1159472 version:5.12.0

Changes:

--- /work/SRC/openSUSE:Factory/gtksourceview5/gtksourceview5.changes
2023-09-20 13:23:23.766192080 +0200
+++ /work/SRC/openSUSE:Factory/.gtksourceview5.new.1905/gtksourceview5.changes  
2024-03-20 21:12:01.408830552 +0100
@@ -1,0 +2,54 @@
+Sat Mar 16 09:19:33 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 5.12.0:
+  + Do not trigger default indenter for Return when a selection is
+active.
+  + Render overview slider below text rather than above w/ RGBA.
+  + Premix certain colors in overview when drawing to avoid RGBA
+blends on GPU.
+  + Avoid round-trip to main loop when map slider needs allocation.
+  + Avoid an extra GSK transform for each line number in the
+gutter.
+  + Updated translations.
+
+---
+Mon Mar  4 08:36:52 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 5.11.2:
+  + Ignore empty globs in language specification for mimetypes.
+  + Ensure that partially visible highlight lines are drawn.
+  + Fix line style properties after unsetting style scheme.
+  + latex.lang: Improvements to command parsing.
+
+---
+Wed Feb 28 17:54:12 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 5.11.1+9:
+  + languagemanager: ignore empty globs.
+  + view: highlight partially visible line.
+  + view: reset current line style properties after unsetting the
+style scheme.
+
+---
+Tue Feb 13 07:20:24 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 5.11.1:
+  + A new -Dbuild-testsuite configuration option.
+  + Some build options were renamed to follow more closely what GTK
+itself uses now:
+-Dgtk_doc became -Ddocumentation
+-Dinstall_tests became -Dinstall-tests
+  + Fix a rendering issue where the gutter would not highlight the
+same as the current-line-highlight.
+  + An optimization for line number drawing which avoids using
+PangoLayout when drawing.
+  + Ensure the gutter is redrawn when focus leaves text view.
+  + Improved support for input methods when X11 and ibus are used
+by making it behave closer to Wayland input methods.
+  + Ignore the current-line highlight when out of view which
+improves the damage area calculation in GTK.
+  + A new Wren language spec.
+  + Updates for the sh language-spec.
+  + Updated translations.
+
+---

Old:

  gtksourceview-5.10.0.tar.xz

New:

  _service
  gtksourceview-5.12.0.obscpio
  gtksourceview.obsinfo



Other differences:
--
++ gtksourceview5.spec ++
--- /var/tmp/diff_new_pack.BD2Gso/_old  2024-03-20 21:12:02.052854217 +0100
+++ /var/tmp/diff_new_pack.BD2Gso/_new  2024-03-20 21:12:02.056854365 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gtksourceview5
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 %define _name   gtksourceview
 Name:   gtksourceview5
-Version:5.10.0
+Version:5.12.0
 Release:0
 Summary:GTK+ Source Editing Widget
 License:LGPL-2.1-or-later
 Group:  System/GUI/GNOME
 URL:https://wiki.gnome.org/Projects/GtkSourceView
-Source0:
https://download.gnome.org/sources/gtksourceview/5.10/%{_name}-%{version}.tar.xz
+Source0:%{_name}-%{version}.tar.zst
 Source1:changes.lang
 
 BuildRequires:  gobject-introspection-devel >= 1.70
@@ -96,7 +96,6 @@
 %build
 %global _lto_cflags %{_lto_cflags} -ffat-lto-objects
 %meson \
--Dgtk_doc=true \
 %{nil}
 %meson_build
 
@@ -122,7 +121,6 @@
 %{_includedir}/gtksourceview-5/
 %{_libdir}/libgtksourceview-5.so
 %{_libdir}/pkgconfig/gtksourceview-5.pc
-%{_datadir}/doc/%{name}/
 %{_datadir}/gir-1.0/GtkSource-5.gir
 %dir %{_datadir}/vala/vapi
 %{_datadir}/vala/vapi/gtksourceview-5.*

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gtksourceview.git
5.12.0
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ gtksourceview.obsinfo ++
name: gtksourceview
version: 5.12.0
mtime: 1710540784
commit:

commit gnome-clocks for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-clocks for openSUSE:Factory 
checked in at 2024-03-20 21:11:12

Comparing /work/SRC/openSUSE:Factory/gnome-clocks (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-clocks.new.1905 (New)


Package is "gnome-clocks"

Wed Mar 20 21:11:12 2024 rev:52 rq:1159469 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-clocks/gnome-clocks.changes
2023-09-20 13:22:41.528678896 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-clocks.new.1905/gnome-clocks.changes  
2024-03-20 21:11:59.768770286 +0100
@@ -1,0 +2,19 @@
+Fri Mar 15 21:05:54 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Updated translations.
+
+---
+Mon Mar  4 07:38:59 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Add mnemonic to Start button.
+  + Disable alarm after ringing when not set to repeat.
+  + Fix countdown timer progress during suspend.
+  + Fix resume bug on clear button pressed.
+  + Fix sorting of locations.
+  + Improve app metainfo for AppStream 1.0.
+  + Show a toast when a new alarm is set.
+  + Updated translations.
+
+---

Old:

  gnome-clocks-45.0.tar.xz

New:

  gnome-clocks-46.0.tar.xz



Other differences:
--
++ gnome-clocks.spec ++
--- /var/tmp/diff_new_pack.0bSngr/_old  2024-03-20 21:12:00.260788366 +0100
+++ /var/tmp/diff_new_pack.0bSngr/_new  2024-03-20 21:12:00.260788366 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-clocks
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 # Copyright (c) 2012 Dominique Leuenberger, Amsterdam, The Netherlands.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,13 +18,13 @@
 
 
 Name:   gnome-clocks
-Version:45.0
+Version:46.0
 Release:0
 Summary:Clock application designed for GNOME 3
 License:GPL-2.0-or-later
 Group:  Productivity/Office/Other
 URL:https://live.gnome.org/Design/Apps/Clock
-Source0:
https://download.gnome.org/sources/gnome-clocks/45/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gnome-clocks/46/%{name}-%{version}.tar.xz
 BuildRequires:  appstream-glib
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes

++ gnome-clocks-45.0.tar.xz -> gnome-clocks-46.0.tar.xz ++
 19780 lines of diff (skipped)


commit gobject-introspection for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gobject-introspection for 
openSUSE:Factory checked in at 2024-03-20 21:10:43

Comparing /work/SRC/openSUSE:Factory/gobject-introspection (Old)
 and  /work/SRC/openSUSE:Factory/.gobject-introspection.new.1905 (New)


Package is "gobject-introspection"

Wed Mar 20 21:10:43 2024 rev:109 rq:1159418 version:1.80.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gobject-introspection/gobject-introspection.changes  
2023-12-02 17:12:10.631158367 +0100
+++ 
/work/SRC/openSUSE:Factory/.gobject-introspection.new.1905/gobject-introspection.changes
2024-03-20 21:11:24.719482351 +0100
@@ -1,0 +2,42 @@
+Sat Mar  9 19:06:32 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.80.0:
+  + Allow using `transfer none` with GClosure.
+  + Only allow loading GIRepository-2.0.
+  + Add marshalling tests for uninitialized and NaN arguments.
+  + Check for setuptools when building with Python >= 3.12.
+  + Add fallback doc elements for virtual functions.
+  + Add doc elements for callback fields.
+  + Support static inline declarations in the GIR.
+  + Add annotations for sync, async, and async-finish functions in
+the GIR.
+  + Simplify the giscanner module build with Python >= 3.12.
+  + Allow passing full shared library paths on Windows.
+
+---
+Wed Mar  6 15:46:59 UTC 2024 - Dominique Leuenberger 
+
+- BuildRequire glib2-stage1-devel to break a build cycle.
+- Explcitly BuildIgnore glib2-devel (pulled in by gtk-doc).
+
+---
+Tue Jan 16 13:34:38 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.79.1:
+  + Build fixes
+  + Require Meson ≥ 1.2
+  + Avoid test failures with Python ≥ 3.12
+  + Update the GIR schema, and validate GIR files as part of the
+test suite
+  + Support (not optional) annotation
+  + Allow ownership transfer of structure types with copy/free
+functions
+- Changes from version 1.79.0:
+  + Require GLib >= 2.79
+  + Require Python >= 3.8
+  + Simplify libtool use with wrappers
+  + Drop GIO dependency from libgirepository
+  + Do not install the GLib introspection data
+- Convert to source service for easier updating.
+
+---

Old:

  gobject-introspection-1.78.1.tar.xz

New:

  _service
  gobject-introspection-1.80.0.obscpio
  gobject-introspection.obsinfo



Other differences:
--
++ gobject-introspection.spec ++
--- /var/tmp/diff_new_pack.LKGC9y/_old  2024-03-20 21:11:26.439545557 +0100
+++ /var/tmp/diff_new_pack.LKGC9y/_new  2024-03-20 21:11:26.455546145 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gobject-introspection
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gobject-introspection
-Version:1.78.1
+Version:1.80.0
 Release:0
 # FIXME: Find a way to identify if we need python3-gobject or python-gobject 
from gi-find-deps.sh.
 Summary:GObject Introspection Tools
@@ -25,7 +25,7 @@
 Group:  Development/Libraries/GNOME
 URL:https://wiki.gnome.org/Projects/GObjectIntrospection
 
-Source0:
https://download.gnome.org/sources/gobject-introspection/1.78/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 # gi-find-deps.sh is a rpm helper for Provides and Requires. Script creates 
typelib()-style Provides/Requires.
 Source1:gi-find-deps.sh
 Source2:gobjectintrospection.attr
@@ -36,18 +36,15 @@
 BuildRequires:  bison
 BuildRequires:  fdupes
 BuildRequires:  flex
+BuildRequires:  glib2-stage1-devel
 BuildRequires:  gtk-doc
+#!BuildIgnore:  glib2-devel
 BuildRequires:  meson >= 0.55.3
 BuildRequires:  pkgconfig
 BuildRequires:  python3-Mako
 BuildRequires:  python3-Markdown
 BuildRequires:  python3-devel
 BuildRequires:  python3-xml
-BuildRequires:  pkgconfig(gio-2.0)
-BuildRequires:  pkgconfig(gio-unix-2.0)
-BuildRequires:  pkgconfig(glib-2.0) >= 2.75.0
-BuildRequires:  pkgconfig(gmodule-2.0)
-BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(libffi) >= 3.0.0
 # gi-find-deps makes use of 'file' to identify the types.
 Requires:   file
@@ -131,7 +128,7 @@
 
 %files
 %license COPYING COPYING.GPL
-%doc NEWS README.rst TODO
+%doc NEWS README.rst
 %{_bindir}/g-ir-annotation-tool
 %{_bindir}/g-ir-compiler
 %{_bindir}/g-ir-doc-tool

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gobject-introspectio

commit swell-foop for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package swell-foop for openSUSE:Factory 
checked in at 2024-03-20 21:11:34

Comparing /work/SRC/openSUSE:Factory/swell-foop (Old)
 and  /work/SRC/openSUSE:Factory/.swell-foop.new.1905 (New)


Package is "swell-foop"

Wed Mar 20 21:11:34 2024 rev:34 rq:1159491 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/swell-foop/swell-foop.changes2022-04-30 
00:45:10.818932797 +0200
+++ /work/SRC/openSUSE:Factory/.swell-foop.new.1905/swell-foop.changes  
2024-03-20 21:12:20.729540520 +0100
@@ -1,0 +2,24 @@
+Sun Mar 17 09:26:02 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Updated translations.
+
+---
+Mon Mar  4 07:47:47 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + GTK4 port improvements.
+  + Appdata fixes.
+  + Improved score handling.
+  + Improved keyboard-only gampeplay.
+  + Do not show highscores if score is not high enough.
+  + Show highscore goal on game over screen.
+  + use gnome post_install script.
+  + Updated translations.
+- Adjust BuildRequires for port to GTK4:
+  + Drop pkgconfig(gtk+-3.0), pkgconfig(clutter-gtk-1.0),
+pkgconfig(clutter-1.0) and pkgconfig(libgnome-games-support-1).
+  + Add pkgconfig(gtk4), pkgconfig(libgnome-games-support-2),
+pkgconfig(librsvg-2.0), and pkgconfig(pangocairo).
+
+---

Old:

  swell-foop-41.1.tar.xz

New:

  _service
  swell-foop-46.0.obscpio
  swell-foop.obsinfo



Other differences:
--
++ swell-foop.spec ++
--- /var/tmp/diff_new_pack.q31tgp/_old  2024-03-20 21:12:21.281560805 +0100
+++ /var/tmp/diff_new_pack.q31tgp/_new  2024-03-20 21:12:21.281560805 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package swell-foop
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,27 +17,27 @@
 
 
 Name:   swell-foop
-Version:41.1
+Version:46.0
 Release:0
 Summary:Same Game for GNOME
 License:GPL-2.0-or-later
 Group:  Amusements/Games/Board/Puzzle
 URL:https://wiki.gnome.org/Apps/Swell_Foop
-Source0:
https://download.gnome.org/sources/swell-foop/41/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  meson >= 0.50
+BuildRequires:  meson >= 0.60
 BuildRequires:  pkgconfig
 BuildRequires:  vala >= 0.22.0
 BuildRequires:  yelp-tools
-BuildRequires:  pkgconfig(clutter-1.0) >= 1.14.0
-BuildRequires:  pkgconfig(clutter-gtk-1.0) >= 1.5.0
 BuildRequires:  pkgconfig(gee-0.8) >= 0.14.0
-BuildRequires:  pkgconfig(glib-2.0) >= 2.36
+BuildRequires:  pkgconfig(glib-2.0) >= 2.74
 BuildRequires:  pkgconfig(gmodule-2.0)
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.36.0
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.24
-BuildRequires:  pkgconfig(libgnome-games-support-1) >= 1.7.1
+BuildRequires:  pkgconfig(gtk4) >= 4.10
+BuildRequires:  pkgconfig(libgnome-games-support-2) >= 2.0.0
+BuildRequires:  pkgconfig(librsvg-2.0)
+BuildRequires:  pkgconfig(pangocairo)
 
 %description
 Swell Foop is a puzzle game, of which the objective is to clear the
@@ -51,6 +51,7 @@
 %autosetup -p1
 
 %build
+export CFLAGS="%{optflags} -Wno-error=return-type"
 %meson
 %meson_build
 
@@ -64,7 +65,6 @@
 %doc NEWS
 %doc %{_datadir}/help/C/%{name}/
 %{_bindir}/%{name}
-%{_datadir}/%{name}/
 %{_datadir}/applications/org.gnome.SwellFoop.desktop
 %{_datadir}/dbus-1/services/org.gnome.SwellFoop.service
 %{_datadir}/glib-2.0/schemas/org.gnome.SwellFoop.gschema.xml

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/swell-foop.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ swell-foop.obsinfo ++
name: swell-foop
version: 46.0
mtime: 1710617655
commit: d173f2c751acdf572a2cc90ef55cdd624f9305d5


commit gnome-shell for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2024-03-20 21:11:35

Comparing /work/SRC/openSUSE:Factory/gnome-shell (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-shell.new.1905 (New)


Package is "gnome-shell"

Wed Mar 20 21:11:35 2024 rev:252 rq:1159492 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2024-03-09 
20:53:47.412624627 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new.1905/gnome-shell.changes
2024-03-20 21:12:22.357600346 +0100
@@ -1,0 +2,86 @@
+Sun Mar 17 09:27:43 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Fix model selection in on-screen keyboard.
+  + Fix key getting stuck when raising screen shield.
+  + Fix notifications sometimes being empty.
+  + Fix cursor visibilty when magnified.
+  + Fixed crashes.
+  + Misc. bug fixes and cleanups.
+  + Updated translations.
+
+---
+Fri Mar  8 08:31:07 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Fix repainting drawing area.
+  + Support locking down extension installation.
+  + Fix auto-closing FDO notifications.
+  + Ensure remote actions are activated with correct platform data.
+  + FDO notifications: Support ActivationToken signal.
+  + Delete selected text on backspace from on-screen keyboard.
+  + Various on-screen keyboard improvements.
+  + Inform users of conflicting local/remote sessions on login.
+  + screencasts: Use h264 encoding if available.
+  + Work around issue in NetworkManager's wireguard support.
+  + Allow expanding notifications in message list.
+  + Fixed crash.
+  + Misc. bug fixes and cleanups.
+  + Updated translations.
+
+---
+Fri Mar  8 00:47:00 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Improve High Contrast styling.
+  + Improve default styling.
+  + Close mount notification when drive gets disconnected.
+  + extensions-app: Remember window state.
+  + Fix feedback look in keyboard backlight slider.
+  + Follow "switch-shapes" accessibility setting.
+  + Fix effects of transient wayland windows.
+  + Add keyboard model configuration support.
+  + Add Text Editor to the dash by default.
+  + Fix icon size regression in dash.
+  + Improve project and development documentation.
+  + overview: Keep dimming effect for modal dialogs.
+  + Do not use markup in button labels.
+  + Fix menu alignment in RTL locales.
+  + Overhaul assets in monitor layout switcher.
+  + Fix overview transition from search results to session.
+  + Add header to notifications.
+  + extensions-app: Use adaptive dialogs.
+  + Register custom D-Bus errors.
+  + Improve appearance of symbolic icons in notifications.
+  + Improve minimize animation.
+  + Use a single source for all system notifications.
+  + Add missing shift level to Georgian OSK layout.
+  + Tweak switch appearance.
+  + Improve handling of screencast failures.
+  + Fixed crash.
+  + Misc. bug fixes and cleanups.
+
+---
+Fri Mar  8 00:46:00 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Fix scroll handling on sliders.
+  + overview: Handle unredirection as part of the state transition.
+  + Handle DESKTOP windows during workspace animations.
+  + Improve wording in welcome dialog.
+  + Improve recording indicator in light style.
+  + Fix calendar popup shrinking on date changes.
+  + app: Make all windows on target workspace recent when
+activated.
+  + Fix performance degradation due to repeated signal leak.
+  + Optimize application search.
+  + Fix on-screen keyboard backspace getting stuck.
+  + Adapt to ClutterContainer removal.
+  + Fix arrow navigation in search results.
+  + Improve monitor OSD labels.
+  + Use dedicated assets in ctrl-alt-tab popup.
+  + Updated translations.
+- Replace gtk-doc BuildRequires with pkgconfig(gi-docgen): follow
+  upstreams port to gi-docgen.
+
+---

Old:

  gnome-shell-45.3.obscpio

New:

  gnome-shell-46.0.obscpio



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.q76he1/_old  2024-03-20 21:12:23.405638857 +0100
+++ /var/tmp/diff_new_pack.q76he1/_new  2024-03-20 21:12:23.409639005 +0100
@@ -17,11 +17,11 @@
 
 
 %global __requires_exclude 
typelib\\(Meta|MetaTest|Soup|St|Cogl|Clutter|TelepathyGlib\\)
-%define mutter_api 13
-%define mutter_req 45.beta
+%define mutter_api 14
+%define mutter_req 46.0
 
 Name:   gnome-shell
-Version:45.3
+Version

commit evolution for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package evolution for openSUSE:Factory 
checked in at 2024-03-20 21:10:55

Comparing /work/SRC/openSUSE:Factory/evolution (Old)
 and  /work/SRC/openSUSE:Factory/.evolution.new.1905 (New)


Package is "evolution"

Wed Mar 20 21:10:55 2024 rev:275 rq:1159459 version:3.52.0

Changes:

--- /work/SRC/openSUSE:Factory/evolution/evolution.changes  2024-01-06 
17:29:12.515688951 +0100
+++ /work/SRC/openSUSE:Factory/.evolution.new.1905/evolution.changes
2024-03-20 21:11:46.496282570 +0100
@@ -1,0 +2,79 @@
+Fri Mar 15 07:14:21 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.52.0:
+  + Bug Fixes:
+ - Workaround excessive memory use
+ - Calendar: Prefer html/markdown description in preview
+ - Incorrect/missing URLs in app metadata
+  + Updated translations.
+
+---
+Fri Mar  1 08:38:46 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.51.3:
+  + Replace G_TYPE_INSTANCE_GET_PRIVATE() with G_ADD_PRIVATE().
+  + plugin_ui_hook_finalize: Chain up to the finalize() method.
+  + Composer: Stop message send when retrieve of the content
+failed.
+  + Composer: Hint places for folding in Autocrypt header.
+  + Composer: Change "Remove Key" to "Send without Key" in
+Autocrypt question.
+  + ci: Export the help with Gitlab Pages.
+  + itip-formatter: Show "Unable to send item..." errors with error
+icon.
+  + Calendar: Remove support for
+E_CAL_STATIC_CAPABILITY_RETRACT_SUPPORTED.
+  + Calendar: Meeting deletion can sometimes send duplicate cancel
+messages.
+  + appdata: Add  colors.
+
+---
+Mon Feb 12 15:05:23 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.51.2:
+  + build: Don't set CFLAGS returned by pkg-config as
+CMAKE_REQUIRED_FLAGS.
+  + build: Bump CMake version requirement to 3.15.
+  + build: align glib_encoded_version with the version
+requirements.
+  + EContactEditor: Explicitly set horizontal/vertical expand/fill
+for tab content.
+  + e-shell: Describe --force-shutdown option as closing also
+background processes.
+  + Composer: Ask before sending mail with an Autocrypt header.
+
+---
+Tue Jan 16 09:19:35 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.51.1:
+  + shell: Move from gtk_main() to g_application_run().
+  + flatpak: Add missing comma in the manifests.
+  + EBulkEditTasks: Edit Categories as diff of added/removed
+categories.
+  + EContactCard: Card sometimes hides values.
+  + Fix a memory leak in ECompEditor.
+  + evolution-util-docs: Remove API index for 2.24 symbols, none
+exist anymore.
+  + build: Use -Wshadow build option, if available.
+  + Calendar: Go to day/today in Year View doesn't update internal
+view dates.
+  + Update Flatpak manifests.
+  + e-bulk-edit-contacts: Initialize 'section_grid' variable.
+  + data: Update appdata.
+  + EHTMLEditor: Let emoji chooser point to the caret in the
+message body.
+  + EYearView: Fix a crash when moving through search results.
+  + EShell: Emit "ready-to-start" event after modules and
+preferences window is ready.
+  + Composer: Use link references only when composing HTML message.
+  + rss: Ensure feed icon size to not be too large.
+  + Mail: Skip disabled accounts for File->Download messages for
+offline use.
+  + EMailBackend: Fallback to CamelOperation message when showing
+error.
+  + Add x-scheme-handler/mid into the .desktop file.
+  + help: Fix invalid markup in Czech help translation.
+  + Updated translations.
+- Convert to source service for easier updating.
+
+---

Old:

  evolution-3.50.3.tar.xz

New:

  _service
  evolution-3.52.0.obscpio
  evolution.obsinfo



Other differences:
--
++ evolution.spec ++
--- /var/tmp/diff_new_pack.UEpgh6/_old  2024-03-20 21:11:47.184307852 +0100
+++ /var/tmp/diff_new_pack.UEpgh6/_new  2024-03-20 21:11:47.184307852 +0100
@@ -20,7 +20,7 @@
 %define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')
 
 Name:   evolution
-Version:3.50.3
+Version:3.52.0
 Release:0
 # FIXME: check if note on license is still valid (comment before license)
 Summary:The Integrated GNOME Mail, Calendar, and Address Book Suite
@@ -28,11 +28,11 @@
 License:CC-BY-SA-3.0 AND LGPL-2.0-only AND LGPL-3.0-only AND OLDAP-2.8 
AND GFDL-1.1-only AND GFDL-1.3-only
 Group:  Productivity/Networking/Email/Clients
 URL:https://wiki.gnome.org/

commit gnome-system-monitor for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-system-monitor for 
openSUSE:Factory checked in at 2024-03-20 21:11:30

Comparing /work/SRC/openSUSE:Factory/gnome-system-monitor (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-system-monitor.new.1905 (New)


Package is "gnome-system-monitor"

Wed Mar 20 21:11:30 2024 rev:118 rq:1159489 version:46.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-system-monitor/gnome-system-monitor.changes
2023-09-20 13:22:59.209312315 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-system-monitor.new.1905/gnome-system-monitor.changes
  2024-03-20 21:12:16.317378389 +0100
@@ -1,0 +2,46 @@
+Sun Mar 17 09:24:36 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + style: Blend header bar with window contents.
+  + Updated translations.
+
+---
+Mon Mar  4 07:45:15 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + interface: Readd Delete key as shortcut to end process.
+  + Fixed memory leak in affinity change.
+  + Updated app links.
+  + Metainformation improvements: correct developer and platform
+added.
+  + Updated translations.
+
+---
+Mon Feb 12 15:53:01 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Fixed several memory leaks.
+  + Fixed several plotting issues.
+  + Partial rework of graph class hierarchy>
+  + Remember window state.
+  + Renamed appdata to match desktop file.
+  + Updated translations.
+
+---
+Tue Jan 16 11:07:58 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Application ported to GTK4.
+  + Fixed shortcuts.
+  + Fixed highcontrast graph labels.
+  + Fixed argument type mismatch.
+  + Updated UI to match Human Interface Guidelines.
+  + Ported various application components to adwaita.
+  + Added flatpak build manifest.
+  + Various code improvements.
+  + Appdata updates.
+  + Updated translations.
+- Convert to source service for easier updating.
+- Add pkgconfig(libadwaita-1) BuildRequires: new dependency.
+
+---

Old:

  gnome-system-monitor-45.0.2.tar.xz

New:

  _service
  gnome-system-monitor-46.0.obscpio
  gnome-system-monitor.obsinfo



Other differences:
--
++ gnome-system-monitor.spec ++
--- /var/tmp/diff_new_pack.gZlC9S/_old  2024-03-20 21:12:18.093443653 +0100
+++ /var/tmp/diff_new_pack.gZlC9S/_new  2024-03-20 21:12:18.113444388 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-system-monitor
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-system-monitor
-Version:45.0.2
+Version:46.0
 Release:0
 Summary:A process monitor for the GNOME desktop
 License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
 URL:https://wiki.gnome.org/Apps/SystemMonitor
-Source0:
https://download.gnome.org/sources/gnome-system-monitor/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -32,13 +32,14 @@
 BuildRequires:  polkit-devel
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(gdk-x11-3.0)
-BuildRequires:  pkgconfig(giomm-2.4) >= 2.46
+BuildRequires:  pkgconfig(giomm-2.68)
 BuildRequires:  pkgconfig(glib-2.0) >= 2.55.0
 BuildRequires:  pkgconfig(glibmm-2.4) >= 2.46
 BuildRequires:  pkgconfig(gmodule-2.0)
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22.0
-BuildRequires:  pkgconfig(gtkmm-3.0) >= 3.3.18
-BuildRequires:  pkgconfig(libgtop-2.0) >= 2.37.2
+BuildRequires:  pkgconfig(gtk4) >= 3.22.0
+BuildRequires:  pkgconfig(gtkmm-4.0) >= 3.3.18
+BuildRequires:  pkgconfig(libadwaita-1)
+BuildRequires:  pkgconfig(libgtop-2.0) >= 2.41.2
 BuildRequires:  pkgconfig(libhandy-1) >= 1.5.0
 BuildRequires:  pkgconfig(librsvg-2.0) >= 2.35
 BuildRequires:  pkgconfig(libsystemd) >= 44
@@ -71,11 +72,11 @@
 %doc NEWS README.md
 %doc %{_datadir}/help/C/%{name}/
 %{_bindir}/gnome-system-monitor
-%{_datadir}/applications/gnome-system-monitor.desktop
 %{_datadir}/applications/gnome-system-monitor-kde.desktop
+%{_datadir}/applications/org.gnome.SystemMonitor.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.gnome-system-monitor.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.gnome-system-monitor.gschema.xml
-%{_datadir}/metainfo/gnome-system-monitor.appdata.xml
+%{_datadir}/me

commit gvfs for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gvfs for openSUSE:Factory checked in 
at 2024-03-20 21:11:04

Comparing /work/SRC/openSUSE:Factory/gvfs (Old)
 and  /work/SRC/openSUSE:Factory/.gvfs.new.1905 (New)


Package is "gvfs"

Wed Mar 20 21:11:04 2024 rev:191 rq:1159462 version:1.54.0

Changes:

--- /work/SRC/openSUSE:Factory/gvfs/gvfs.changes2024-01-10 
21:50:32.704368174 +0100
+++ /work/SRC/openSUSE:Factory/.gvfs.new.1905/gvfs.changes  2024-03-20 
21:11:48.928371940 +0100
@@ -1,0 +2,55 @@
+Fri Mar 15 08:03:31 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.54.0:
+  + Updated translations.
+
+---
+Tue Mar  5 13:51:57 UTC 2024 - Dominique Leuenberger 
+
+- Enable onedrive support: msgraph is now packaged and works.
+
+---
+Fri Mar  1 11:57:26 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.53.91:
+  + onedrive: Fix several issues.
+  + wsdd: List just devices of pub:Computer type to filter out
+unwanted devices.
+  + Updated translations.
+
+---
+Mon Feb 12 15:17:30 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.53.90:
+  + daemon: Add OneDrive support based on msgraph library.
+  + client: Reduce synchronous metadata methods calls to improve
+performance.
+  + network: Provide standard::content-type and access::can-rename
+attributes.
+  + build: Fix unknown arguments error on systems that don't use
+GNU C library.
+  + udisks2: Fix unmounting of mount paths that contain non-ASCII
+characters.
+  + Updated translations.
+- Add pkgconfig(msgraph-0.1) BuildRequires conditionally, guarded
+  with bcond: new dependency for OneDrive support, but the
+  dependency does not yet exist in Tumbleweed.
+
+---
+Tue Jan 16 11:15:13 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.53.1:
+  + daemon:
+- Add WS-Discovery support based on wsdd daemon.
+- Port to gcr4.
+  + network:
+- Hide Windows Network folder and show the servers merged by
+  default.
+- Variousother fixes and enhancements.
+  + smb:
+- Fix livelock when mounting share without enough permissions.
+- Fix moving files across filesystem boundaries.
+  + Updated translations.
+- Convert to source service for easier updating.
+
+---

Old:

  gvfs-1.52.2.tar.xz

New:

  _service
  gvfs-1.54.0.obscpio
  gvfs.obsinfo



Other differences:
--
++ gvfs.spec ++
--- /var/tmp/diff_new_pack.5KwiHc/_old  2024-03-20 21:11:51.204455578 +0100
+++ /var/tmp/diff_new_pack.5KwiHc/_new  2024-03-20 21:11:51.220456166 +0100
@@ -17,14 +17,15 @@
 
 
 %bcond_without  cdda
+%bcond_without  onedrive
 Name:   gvfs
-Version:1.52.2
+Version:1.54.0
 Release:0
 Summary:Virtual File System functionality for GLib
 License:GPL-3.0-only AND LGPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:https://wiki.gnome.org/Projects/gvfs
-Source0:
https://download.gnome.org/sources/gvfs/1.52/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 Source99:   baselibs.conf
 
 ### NOTE: Please, keep SLE-only patches at bottom (starting on 1000).
@@ -64,6 +65,9 @@
 BuildRequires:  pkgconfig(libsystemd)
 BuildRequires:  pkgconfig(libusb-1.0) >= 1.0.21
 BuildRequires:  pkgconfig(libxml-2.0)
+%if %{with onedrive}
+BuildRequires:  pkgconfig(msgraph-0.1)
+%endif
 BuildRequires:  pkgconfig(polkit-gobject-1) >= 0.114
 BuildRequires:  pkgconfig(smbclient)
 BuildRequires:  pkgconfig(systemd)
@@ -186,6 +190,7 @@
%{!?with_cdda: -Dcdda=false} \
-Dman=true \
-Dsystemduserunitdir=%{_userunitdir} \
+-Donedrive=%[%{with onedrive} ? "true" : "false" ] \
%{nil}
 %meson_build
 
@@ -323,6 +328,10 @@
 %endif
 %{_libexecdir}/%{name}/gvfsd-network
 %{_datadir}/%{name}/mounts/network.mount
+%if %{with onedrive}
+%{_libexecdir}/gvfs/gvfsd-onedrive
+%{_datadir}/gvfs/mounts/onedrive.mount
+%endif
 # allow priv ports for mounting nfs. Otherwise the nfs-service requires 
insecure (boo#1065864)
 %verify(not mode caps) %caps(cap_net_bind_service=+ep) 
%{_libexecdir}/%{name}/gvfsd-nfs
 %{_libexecdir}/%{name}/gvfsd-nfs
@@ -341,6 +350,9 @@
 %dir %{_datadir}/GConf
 %dir %{_datadir}/GConf/gsettings
 %{_datadir}/GConf/gsettings/gvfs-dns-sd.convert
+%{_libexecdir}/gvfs/gvfsd-wsdd
+%{_datadir}/glib-2.0/schemas/org.gnome.system.wsdd.gschema.xml
+%{_datadir}/gvfs/mounts/wsd

commit eog for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package eog for openSUSE:Factory checked in 
at 2024-03-20 21:11:37

Comparing /work/SRC/openSUSE:Factory/eog (Old)
 and  /work/SRC/openSUSE:Factory/.eog.new.1905 (New)


Package is "eog"

Wed Mar 20 21:11:37 2024 rev:169 rq:1159495 version:45.3

Changes:

--- /work/SRC/openSUSE:Factory/eog/eog.changes  2024-01-17 22:15:25.587275499 
+0100
+++ /work/SRC/openSUSE:Factory/.eog.new.1905/eog.changes2024-03-20 
21:12:23.929658113 +0100
@@ -1,0 +2,6 @@
+Sun Mar 17 09:34:06 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 45.3:
+  + Updated translations.
+
+---

Old:

  eog-45.2.obscpio

New:

  eog-45.3.obscpio



Other differences:
--
++ eog.spec ++
--- /var/tmp/diff_new_pack.aeTqzB/_old  2024-03-20 21:12:24.545680749 +0100
+++ /var/tmp/diff_new_pack.aeTqzB/_new  2024-03-20 21:12:24.549680897 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   eog
-Version:45.2
+Version:45.3
 Release:0
 Summary:Image Viewer for GNOME
 License:GPL-2.0-or-later AND LGPL-2.1-or-later

++ _service ++
--- /var/tmp/diff_new_pack.aeTqzB/_old  2024-03-20 21:12:24.569681632 +0100
+++ /var/tmp/diff_new_pack.aeTqzB/_new  2024-03-20 21:12:24.573681779 +0100
@@ -3,7 +3,7 @@
   
 git
 https://gitlab.gnome.org/GNOME/eog.git
-45.2
+45.3
 @PARENT_TAG@+@TAG_OFFSET@
 (.*)\+0
 \1

++ eog-45.2.obscpio -> eog-45.3.obscpio ++
/work/SRC/openSUSE:Factory/eog/eog-45.2.obscpio 
/work/SRC/openSUSE:Factory/.eog.new.1905/eog-45.3.obscpio differ: char 49, line 
1

++ eog.obsinfo ++
--- /var/tmp/diff_new_pack.aeTqzB/_old  2024-03-20 21:12:24.609683101 +0100
+++ /var/tmp/diff_new_pack.aeTqzB/_new  2024-03-20 21:12:24.613683249 +0100
@@ -1,5 +1,5 @@
 name: eog
-version: 45.2
-mtime: 1704577916
-commit: 12616fa866e9e42824d255f5d22dfc2105f6f637
+version: 45.3
+mtime: 1710628160
+commit: b8a7922f82d7935dc7e76cd3d30f22d872c09908
 


commit gnome-software for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-software for openSUSE:Factory 
checked in at 2024-03-20 21:11:08

Comparing /work/SRC/openSUSE:Factory/gnome-software (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-software.new.1905 (New)


Package is "gnome-software"

Wed Mar 20 21:11:08 2024 rev:118 rq:1159465 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-software/gnome-software.changes
2024-01-09 20:48:46.938319995 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-software.new.1905/gnome-software.changes  
2024-03-20 21:11:57.192675624 +0100
@@ -1,0 +2,51 @@
+Fri Mar 15 20:58:09 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Improvements for screen readers.
+  + Stop ‘loading updates’ in a loop on Debian.
+  + Updated translations.
+
+---
+Fri Mar  1 14:09:54 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Various UI text improvements.
+  + Fix launch of some apps.
+  + Fix invalid app state after it's uninstalled.
+  + Fix read of app description text.
+  + Do not ask to reboot after failed firmware update.
+  + Updated translations.
+
+---
+Mon Feb 12 15:10:04 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Show feedback for all conditions that pause automatic updates.
+  + Various UI improvements and move to new libadwaita widgets.
+  + Fix loading OS AppStream catalog data if it is available as
+YAML.
+  + Add openSUSE Leap distro upgrade plugin.
+- Pass -D opensuse-distro-upgrade=true to meson: we are openSUSE,
+  so we want the plugin.
+- Drop gnome-software-plugin-opensuse-distro-upgrade.patch: fixed
+  upstream.
+
+---
+Tue Jan 16 13:19:59 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Recognize links in package update descriptions.
+  + Expose package names discreetly in the UI.
+  + Increase speed of load of the category pages.
+  + Improve search match with multiple words.
+  + Recognize verified apps by Flathub.
+  + Correct message when installing firmware updates.
+  + Improve application safety checks.
+  + Improve update preferences dialog.
+  + Fix deadlock when cancelling app update.
+  + Support user installation of local flatpak files.
+  * Fix apps appearing unsorted and without tiles in category page.
+- Convert to source service for easier updating.
+- Drop gnome-software-support-appstream-1_0.patch: fixed upstream.
+
+---

Old:

  gnome-software-45.2.tar.xz
  gnome-software-plugin-opensuse-distro-upgrade.patch
  gnome-software-support-appstream-1_0.patch

New:

  _service
  gnome-software-46.0.obscpio
  gnome-software.obsinfo

BETA DEBUG BEGIN:
  Old:  so we want the plugin.
- Drop gnome-software-plugin-opensuse-distro-upgrade.patch: fixed
  upstream.
  Old:- Convert to source service for easier updating.
- Drop gnome-software-support-appstream-1_0.patch: fixed upstream.
BETA DEBUG END:



Other differences:
--
++ gnome-software.spec ++
--- /var/tmp/diff_new_pack.u1YTwp/_old  2024-03-20 21:11:58.208712959 +0100
+++ /var/tmp/diff_new_pack.u1YTwp/_new  2024-03-20 21:11:58.208712959 +0100
@@ -20,23 +20,19 @@
 %bcond_with profiling
 
 Name:   gnome-software
-Version:45.2
+Version:46.0
 Release:0
 Summary:GNOME Software Store
 License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
 URL:https://wiki.gnome.org/Apps/Software
-Source0:
https://download.gnome.org/sources/gnome-software/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 %if 0%{?sle_version}
 # PATCH-FIX-OPENSUSE gnome-software-launch-gpk-update-viewer-for-updates.patch 
bsc#1077332 boo#1090042 sck...@suse.com -- Don't launch gnome-software when 
clicking the updates notification. Launch gpk-update-viewer instead.
 Patch0: gnome-software-launch-gpk-update-viewer-for-updates.patch
 # PATCH-FIX-OPENSUSE gnome-software-disable-offline-update.patch bsc#944832 
sck...@suse.com -- Disable offline update in SLE and openSUSE Leap
 Patch1: gnome-software-disable-offline-update.patch
 %endif
-# PATCH-FIX-UPSTREAM gnome-software-plugin-opensuse-distro-upgrade.patch 
glgo#GNOME/gnome-software!1557 sck...@suse.com -- plugins: add 
opensuse-distro-upgrade plugin
-Patch2: gnome-software-plugin-opensuse-distro-upgrade.patch
-# PATCH-FIX-UPSTREAM gnome-software-support-appstream-1_0.patch boo#1217047 -- 
Apply upstream changes to support appstream 1.0
-Patc

commit gjs for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gjs for openSUSE:Factory checked in 
at 2024-03-20 21:11:14

Comparing /work/SRC/openSUSE:Factory/gjs (Old)
 and  /work/SRC/openSUSE:Factory/.gjs.new.1905 (New)


Package is "gjs"

Wed Mar 20 21:11:14 2024 rev:114 rq:1159479 version:1.80.0

Changes:

--- /work/SRC/openSUSE:Factory/gjs/gjs.changes  2023-12-05 17:01:52.730189804 
+0100
+++ /work/SRC/openSUSE:Factory/.gjs.new.1905/gjs.changes2024-03-20 
21:12:02.992888761 +0100
@@ -1,0 +2,48 @@
+Sat Mar 16 09:29:30 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.80.0:
+  + In GNOME 46 and later, platform-specific GLib and Gio APIs have
+moved to the separate libraries GLibUnix, GioUnix, GLibWin32,
+and GioWin32.
+
+---
+Mon Mar  4 08:06:05 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.79.90:
+  + Workspace switching performance degradation due to leaked
+WeakRefs in JS.
+  + GTop.glibtop_get_mountlist invocation causes GNOME Shell Crash.
+  + Progress towards some performance improvements in accessing
+GObject properties.
+  + Various maintenance.
+
+---
+Mon Feb 12 15:49:59 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.79.3:
+  + Various maintenance.
+
+---
+Fri Jan 19 08:01:28 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.79.2:
+  + Progress towards some performance improvements in accessing
+GObject properties.
+  + Regression fix also released in 1.78.3.
+
+---
+Tue Jan 16 07:48:45 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.79.1:
+  + Improve console output.
+  + Name the GC source.
+  + Various maintenance.
+  + build: Fix meson deprecations.
+  + doc: fix broken link in Mainloop.md.
+  + overrides: Make class object a parameter of register type
+hooks.
+  + Display correct stack trace on SyntaxError.
+  + HTTP server stops listening.
+- convert to source service for easier updating.
+
+---

Old:

  gjs-1.78.1.tar.xz

New:

  _service
  gjs-1.80.0.obscpio
  gjs.obsinfo



Other differences:
--
++ gjs.spec ++
--- /var/tmp/diff_new_pack.a6A8mf/_old  2024-03-20 21:12:03.608911397 +0100
+++ /var/tmp/diff_new_pack.a6A8mf/_new  2024-03-20 21:12:03.608911397 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gjs
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,13 @@
 %bcond_with profiling
 
 Name:   gjs
-Version:1.78.1
+Version:1.80.0
 Release:0
 Summary:JavaScript bindings based on gobject-introspection and Mozilla
 License:LGPL-2.0-or-later AND MIT
 Group:  Development/Libraries/GNOME
 URL:https://wiki.gnome.org/Projects/Gjs
-Source0:
https://download.gnome.org/sources/gjs/1.78/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  /usr/bin/dbus-run-session
 BuildRequires:  c++_compiler

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gjs.git
1.80.0
@PARENT_TAG@+@TAG_OFFSET@
(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ gjs.obsinfo ++
name: gjs
version: 1.80.0
mtime: 1710562992
commit: 524a0e4c06591a48769bf0141dddac2de9cff0d3


commit tracker for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tracker for openSUSE:Factory checked 
in at 2024-03-20 21:11:47

Comparing /work/SRC/openSUSE:Factory/tracker (Old)
 and  /work/SRC/openSUSE:Factory/.tracker.new.1905 (New)


Package is "tracker"

Wed Mar 20 21:11:47 2024 rev:162 rq:1159500 version:3.7.0

Changes:

--- /work/SRC/openSUSE:Factory/tracker/tracker.changes  2024-03-08 
18:08:18.296160158 +0100
+++ /work/SRC/openSUSE:Factory/.tracker.new.1905/tracker.changes
2024-03-20 21:12:36.514120547 +0100
@@ -1,0 +2,47 @@
+Sun Mar 17 09:39:44 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.7.0:
+  + Handle POST requests in HTTP endpoints.
+  + Fix a number of Coverity and static scan reports.
+  + Drop deprecated SQLite API.
+  + Test improvements.
+  + Updated translations.
+
+---
+Thu Mar  7 08:07:16 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.7.rc:
+  + Improve database integrity checks so they don't necessarily
+happen after unclean exit, and so there are greater guarantees
+to repair the damage.
+  + Handle HTTPS in SERVICE syntax.
+  + Fixes for 32-bit platforms.
+  + Fixes to bash completion.
+  + Updated translations.
+
+---
+Thu Mar  7 06:43:30 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.7.beta:
+  + Add Avahi support to the TrackerEndpointHttp API object.
+  + There is now an --arg argument in `tracker3 sparql` subcommand
+to assign values to parameters in queries.
+  + CLI subcommands are now split into their own executables.
+  + Improvements in SPARQL handling.
+  + Code cleanups and refactors.
+- Changes from version 3.7.alpha:
+  + New TrackerEndpoint access control API.
+  + New API to map language tagged strings to rdf:langString.
+  + Embed Nepomuk ontology as a GResource.
+  + Allow using TrackerEndpoint on private D-Bus connections.
+  + Cache SPARQL statements in D-Bus endpoints.
+  + Reduce heap memory usage in large transactions over D-Bus
+endpoints.
+  + Make internals future proof wrt handling of string literals
+in SQLite.
+  + Threading improvements for direct connection SELECT queries.
+- Add pkgconfig(avahi-glib) BuildRequires: new dependency.
+- Drop 0001-decouple-fts-initialization-from-ontologies.patch and
+  0002-early-fts-initialization.patch: fixed upstream.
+
+---

Old:

  0001-decouple-fts-initialization-from-ontologies.patch
  0002-early-fts-initialization.patch
  tracker-3.6.0.tar.xz

New:

  _service
  tracker-3.7.0.obscpio
  tracker.obsinfo

BETA DEBUG BEGIN:
  Old:- Add pkgconfig(avahi-glib) BuildRequires: new dependency.
- Drop 0001-decouple-fts-initialization-from-ontologies.patch and
  0002-early-fts-initialization.patch: fixed upstream.
  Old:- Drop 0001-decouple-fts-initialization-from-ontologies.patch and
  0002-early-fts-initialization.patch: fixed upstream.
BETA DEBUG END:



Other differences:
--
++ tracker.spec ++
--- /var/tmp/diff_new_pack.lz38XH/_old  2024-03-20 21:12:38.846206243 +0100
+++ /var/tmp/diff_new_pack.lz38XH/_new  2024-03-20 21:12:38.846206243 +0100
@@ -21,17 +21,13 @@
 %define RPMTrackerAPI 3_0
 
 Name:   tracker
-Version:3.6.0
+Version:3.7.0
 Release:0
 Summary:Object database, tag/metadata database, search tool and indexer
 License:GPL-2.0-or-later
 Group:  Productivity/Other
 URL:https://wiki.gnome.org/Projects/Tracker
-Source0:
https://download.gnome.org/sources/tracker/3.6/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM 0001-decouple-fts-initialization-from-ontologies.patch 
glgo#GNOME/tracker#418 yfji...@suse.com -- Decouple FTS initialization from 
ongologies
-Patch0: 0001-decouple-fts-initialization-from-ontologies.patch
-# PATCH-FIX-UPSTREAM 0002-early-fts-initialization.patch 
glgo#GNOME/tracker#418 yfji...@suse.com -- Move FTS initialization to an 
earlier stage
-Patch1: 0002-early-fts-initialization.patch
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  asciidoc
 BuildRequires:  fdupes
@@ -47,6 +43,7 @@
 BuildRequires:  sqlite3-devel >= 3.35.2
 BuildRequires:  vala >= 0.18.0
 BuildRequires:  zlib-devel
+BuildRequires:  pkgconfig(avahi-glib)
 BuildRequires:  pkgconfig(dbus-1)
 BuildRequires:  pkgconfig(gdk-pixbuf-2.0)
 BuildRequires:  pkgconfig(gi-docgen)
@@ -180,12 +177,18 @@
 %files
 %license COPYING
 %{_bindir}/tracker3
+%{_bindir}/tracker3-endpoint
+%{_bindir}/tracker3-export
+%{_bindir}/tracker3-help
+%{_bindir}/tracker3-import
+%{_bindir}/tracker3-sparql
+%{_bi

commit NetworkManager for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package NetworkManager for openSUSE:Factory 
checked in at 2024-03-20 21:11:18

Comparing /work/SRC/openSUSE:Factory/NetworkManager (Old)
 and  /work/SRC/openSUSE:Factory/.NetworkManager.new.1905 (New)


Package is "NetworkManager"

Wed Mar 20 21:11:18 2024 rev:265 rq:1159481 version:1.46.0

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager/NetworkManager.changes
2023-12-06 23:49:05.073136885 +0100
+++ /work/SRC/openSUSE:Factory/.NetworkManager.new.1905/NetworkManager.changes  
2024-03-20 21:12:06.681024286 +0100
@@ -1,0 +2,65 @@
+Fri Feb 23 08:28:58 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.46.0:
+  + Support dynamic value "${NETWORK_SSID}" for
+connection.stable-id to generate the stable ID based on the
+Wi-Fi's SSID.
+  + Support new value "wifi.cloned-mac-address=stable-ssid" for
+randomizing the MAC address based on the Wi-Fi network.
+  + Change internal ABI of NMSetting types and NMSimpleConnection.
+The layout of these structs was already hidden from public
+headers since 1.34 and this change should not be noticeable.
+  + Honor udev property ID_NET_AUTO_LINK_LOCAL_ONLY=1 for enabling
+link local addresses on default wired connection.
+  + Honor udev property ID_NET_MANAGED_BY to only manage an
+interface when set to "org.freedesktop.NetworkManager".
+  + D-Bus methods StartFind() and StopFind() on interface
+"org.freedesktop.NetworkManager.Device.WifiP2P" now require the
+"org.freedesktop.NetworkManager.wifi.scan" Polkit permission.
+  + Drop build support with Python2. Python3 is now required.
+  + nmcli: limit number of printed addresses/routes in `nmcli`
+overview to 10.
+  + Limit number of exported IP addresses/routes on D-Bus to 100 to
+reduce performance cost. Also, D-Bus updates for
+addresses/routes are now rate limited to 3 per second.
+  + cloud-setup: enable more sandboxing options in systemd service
+file.
+  + nmcli: show WiFi bandwidth.
+  + Internal improvements and bugfixes.
+  + Man page now show the format and accepted values of all
+properties.
+  + Added the 'dns-change' dispatcher event.
+  + Show WiFi devices capability to work on the 6GHz band.
+  + Allow to set dhcp-client-id to none.
+  + Support configuring ethtool channels property to configure NIC
+multiqueue.
+  + Don't attempt to use IPv6 if it's disabled in kernel.
+  + Fix handling of OVS interfaces with netdev datapath and cloned
+MAC.
+  + Support for old systemd has been droped, at least systemd v200
+is required.
+  + Support Ethtool EEE (Energy Efficient Ethernet) settings.
+  + Add options to prevent edns0 and trust-ad being automatically
+added to DNS configuration.
+  + Implement fwmark property for IP tunnels.
+  + Add support to HSR/PRP interfaces.
+  + Deprecated connection.* properties master, slave-type,
+autoconnect-slaves
+  + Allow configuring static routes also when addresses is empty.
+  + VPN: accept pref-src for IPv6 routes from VPN plugins.
+  + nmcli: show global metered state.
+  + Support modifying the DSCP header field for DHCP packets, and
+change the default to CS0.
+  + Enable IPv4 DAD (Duplicate Address Detection) by default.
+  + vpn: support 2FA authentication from VPN plugins.
+  + nmtui: allow adding a bond as bridge port.
+  + sriov: add support to configure the NIC's eswitch settings via
+Devlink.
+  + ndisc: fix IPv6 address lifetimes computation.
+  + Support the MACsec offload mode.
+  + Support creating generic devices via external "device-handler"
+dispatcher.
+  + Documentation improvements.
+  + Many internal improvements and bug fixes.
+
+---

Old:

  NetworkManager-1.44.2.obscpio

New:

  NetworkManager-1.46.0.obscpio



Other differences:
--
++ NetworkManager.spec ++
--- /var/tmp/diff_new_pack.5OQsoM/_old  2024-03-20 21:12:07.621058829 +0100
+++ /var/tmp/diff_new_pack.5OQsoM/_new  2024-03-20 21:12:07.621058829 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package NetworkManager
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -64,7 +64,7 @@
 %endif
 
 Name:   NetworkManager
-Version:1.44.2
+Version:1.46.0
 Release:0
 Summary:Standard Linux network configuration tool suite
 License:GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -109,7 +109,7 @@
 BuildRequires:  perl(YAML)
 BuildRequires:  pkgconfig(dbus-1)
 BuildRequires:  pkgconfig(dbus-glib-1)

commit tracker-miners for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tracker-miners for openSUSE:Factory 
checked in at 2024-03-20 21:11:48

Comparing /work/SRC/openSUSE:Factory/tracker-miners (Old)
 and  /work/SRC/openSUSE:Factory/.tracker-miners.new.1905 (New)


Package is "tracker-miners"

Wed Mar 20 21:11:48 2024 rev:57 rq:1159501 version:3.7.0

Changes:

--- /work/SRC/openSUSE:Factory/tracker-miners/tracker-miners.changes
2024-03-08 18:08:14.736026910 +0100
+++ /work/SRC/openSUSE:Factory/.tracker-miners.new.1905/tracker-miners.changes  
2024-03-20 21:12:39.886244460 +0100
@@ -1,0 +2,42 @@
+Sun Mar 17 09:40:51 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.7.0:
+  + Call malloc_trim more timely after extraction.
+  + Further syscall rules in the seccomp sandbox.
+  + Further landlock rules.
+  + Disallow indexer for gnome-initial-setup user.
+  + Add -Dsandbox_tests option to disable sandbox tests.
+  + Updated translations.
+
+---
+Thu Mar  7 14:09:08 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.7.rc:
+  + Fix execution permissions of `tracker-extract-3` executable
+under Landlock.
+  + Fix build with several combinations of options.
+  + Update `tracker3 tag` man page.
+  + Updated translations.
+
+---
+Thu Mar  7 13:59:46 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.7.beta+24:
+  + libtracker-miners-common: Allow epoll_wait syscall in SECCOMP
+sandbox.
+
+---
+Thu Mar  7 09:55:21 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.7.beta:
+  + Install CLI subcommands as expected by Tracker 3.7.beta
+  + Add build option for Landlock.
+- Changes from version 3.7.alpha:
+  + Use Landlock kernel API to control file access.
+  + Use private D-Bus connection for communication between
+tracker-extract-3 and tracker-miner-fs-3.
+  + Further tightened seccomp sandbox.
+  + CLI man page improvements.
+  + CI, build and test improvements.
+
+---

Old:

  tracker-miners-3.6.2.tar.xz

New:

  _service
  tracker-miners-3.7.0.obscpio
  tracker-miners.obsinfo



Other differences:
--
++ tracker-miners.spec ++
--- /var/tmp/diff_new_pack.fEQ77g/_old  2024-03-20 21:12:44.186402476 +0100
+++ /var/tmp/diff_new_pack.fEQ77g/_new  2024-03-20 21:12:44.218403651 +0100
@@ -16,16 +16,16 @@
 #
 
 
-%define tracker_basever 3.6
+%define tracker_basever 3.7
 
 Name:   tracker-miners
-Version:3.6.2
+Version:3.7.0
 Release:0
 Summary:Various miners for Tracker
 License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
 URL:https://wiki.gnome.org/Projects/Tracker
-Source0:
https://download.gnome.org/sources/tracker-miners/%{tracker_basever}/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  asciidoc
 BuildRequires:  giflib-devel
@@ -109,25 +109,33 @@
 %find_lang tracker3-miners
 
 %post
-%systemd_user_post tracker-extract-3.service tracker-writeback-3.service 
tracker-miner-fs-3.service tracker-miner-fs-control-3.service
+%systemd_user_post tracker-writeback-3.service tracker-miner-fs-3.service 
tracker-miner-fs-control-3.service
 
 %preun
-%systemd_user_preun tracker-extract-3.service tracker-writeback-3.service 
tracker-miner-fs-3.service tracker-miner-fs-control-3.service
+%systemd_user_preun tracker-writeback-3.service tracker-miner-fs-3.service 
tracker-miner-fs-control-3.service
 
 %files
 %license COPYING
 %doc README.md
+%{_bindir}/tracker3-daemon
+%{_bindir}/tracker3-extract
+%{_bindir}/tracker3-index
+%{_bindir}/tracker3-info
+%{_bindir}/tracker3-reset
+%{_bindir}/tracker3-search
+%{_bindir}/tracker3-status
+%{_bindir}/tracker3-tag
 %{_datadir}/dbus-1/interfaces/org.freedesktop.Tracker3.Miner.xml
-%{_datadir}/dbus-1/services/org.freedesktop.Tracker3.Miner.Extract.service
 %{_datadir}/dbus-1/services/org.freedesktop.Tracker3.Writeback.service
 %{_datadir}/glib-2.0/schemas/org.freedesktop.Tracker3.Extract.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.freedesktop.Tracker3.FTS.gschema.xml
+%dir %{_datadir}/tracker3
+%{_datadir}/tracker3/commands/
 %{_datadir}/tracker3-miners/
 %dir %{_libdir}/tracker-miners-3.0
 %{_libdir}/tracker-miners-3.0/extract-modules/
 %{_libdir}/tracker-miners-3.0/libtracker-extract.so
 %{_libdir}/tracker-miners-3.0/writeback-modules/
-%{_libexecdir}/tracker3/
 %{_libexecdir}/tracker-extract-3
 %{_libexecdir}/tracker-writeback-3
 %{_mandir}/man1/tracker3-daemon.1%{?ext_man}
@@ -139,7 +147,6 @@
 %{_ma

commit gnome-calculator for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-calculator for 
openSUSE:Factory checked in at 2024-03-20 21:11:28

Comparing /work/SRC/openSUSE:Factory/gnome-calculator (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calculator.new.1905 (New)


Package is "gnome-calculator"

Wed Mar 20 21:11:28 2024 rev:58 rq:1159488 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calculator/gnome-calculator.changes
2023-09-20 13:23:01.653399876 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-calculator.new.1905/gnome-calculator.changes  
2024-03-20 21:12:14.269303128 +0100
@@ -1,0 +2,33 @@
+Sun Mar 17 09:23:40 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Metainfo improvements.
+  + Updated translations.
+
+---
+Mon Mar  4 07:44:13 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Metainfo (homepage, developer id) improvements.
+  + Updated translations.
+
+---
+Mon Feb 12 15:51:54 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Updated translations.
+
+---
+Tue Jan 16 08:16:23 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Allow substring search in the unit selection drop-downs.
+  + libsoup library usage update.
+  + appdata updates.
+  + Ported some components to adwaita.
+  + Support Argentine Peso currency.
+  + Reload conversion rates if in search-provider conversion fails.
+  + Add Troy ounce (ozt) as new unit.
+  + Updated translations.
+
+---

Old:

  gnome-calculator-45.0.2.tar.xz

New:

  _service
  gnome-calculator-46.0.obscpio
  gnome-calculator.obsinfo



Other differences:
--
++ gnome-calculator.spec ++
--- /var/tmp/diff_new_pack.Tdve4f/_old  2024-03-20 21:12:15.413345168 +0100
+++ /var/tmp/diff_new_pack.Tdve4f/_new  2024-03-20 21:12:15.417345316 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-calculator
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,13 @@
 %define gcisover 1-0_0_0
 
 Name:   gnome-calculator
-Version:45.0.2
+Version:46.0
 Release:0
 Summary:A GNOME Calculator Application
 License:GPL-3.0-or-later
 Group:  Productivity/Scientific/Math
 URL:https://wiki.gnome.org/Apps/Calculator
-Source0:
https://download.gnome.org/sources/gnome-calculator/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  fdupes
 BuildRequires:  meson >= 0.52.0

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gnome-calculator.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ gnome-calculator.obsinfo ++
name: gnome-calculator
version: 46.0
mtime: 1710616893
commit: 9ca2245ca3f58007d79da785ebf44d54ce0d1ff6


commit folks for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package folks for openSUSE:Factory checked 
in at 2024-03-20 21:11:26

Comparing /work/SRC/openSUSE:Factory/folks (Old)
 and  /work/SRC/openSUSE:Factory/.folks.new.1905 (New)


Package is "folks"

Wed Mar 20 21:11:26 2024 rev:60 rq:1159486 version:0.15.8

Changes:

--- /work/SRC/openSUSE:Factory/folks/folks.changes  2023-03-24 
15:17:56.962114667 +0100
+++ /work/SRC/openSUSE:Factory/.folks.new.1905/folks.changes2024-03-20 
21:12:09.837140262 +0100
@@ -1,0 +2,35 @@
+Sun Mar 17 09:21:16 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 0.15.8:
+  + Major changes:
+- simple-query: Avoid some silly string copies.
+- Lots of translation updates.
+  + Bugs fixed:
+- bluez: Follow breaking API change in dbusmock.
+
+---
+Wed Feb 28 08:50:39 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 0.15.7+7:
+  + build: add missing API declaration -include to dummy and EDS
+backends.
+  + Revert "tests/bluez: Follow PairDevice() API change"
+  + Updated translations.
+- Pass -Wno-error=return-type to CFLAGS: new meson version no
+  longer hides the errors/warnings, but vala is not yet better at
+  creating C code.
+
+---
+Tue Jan 16 07:44:07 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 0.15.7:
+  + Major changes:
+- Add .editorconfig file.
+- Lots of translation updates.
+  + Bugs fixed:
+- bluez: Fix invalid ownership of property accessors in Device
+  interface.
+- tests/telepathy: Use shared_library() to fix g-ir-scanner
+  which expects proper library.
+
+---

Old:

  folks-0.15.6.tar.xz

New:

  _service
  folks-0.15.8.obscpio
  folks.obsinfo



Other differences:
--
++ folks.spec ++
--- /var/tmp/diff_new_pack.BsBykA/_old  2024-03-20 21:12:10.581167603 +0100
+++ /var/tmp/diff_new_pack.BsBykA/_new  2024-03-20 21:12:10.581167603 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package folks
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 %global __requires_exclude 
libfolks|libfolks-dummy|libfolks-eds|libfolks-telepathy
 
 %define soversion  26
@@ -23,13 +24,13 @@
 %define with_zeitgeist  0
 
 Name:   folks
-Version:0.15.6
+Version:0.15.8
 Release:0
 Summary:Library to create metacontacts from multiple sources
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/C and C++
 URL:http://telepathy.freedesktop.org/wiki/Folks
-Source: 
https://download.gnome.org/sources/folks/0.15/%{name}-%{version}.tar.xz
+Source: %{name}-%{version}.tar.zst
 
 BuildRequires:  gettext
 BuildRequires:  gobject-introspection-devel
@@ -164,6 +165,7 @@
 
 %build
 %define _lto_cflags %{nil}
+export CFLAGS="%{optflags} -Wno-error=return-type"
 %meson \
 %if %{with_zeitgeist}
-Dzeitgeist=true \

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/folks.git
0.15.8
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ folks.obsinfo ++
name: folks
version: 0.15.8
mtime: 1710593468
commit: 554fca9ae1e37d0a5723f1d4ca8701b75c691a68


commit lightsoff for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lightsoff for openSUSE:Factory 
checked in at 2024-03-20 21:11:32

Comparing /work/SRC/openSUSE:Factory/lightsoff (Old)
 and  /work/SRC/openSUSE:Factory/.lightsoff.new.1905 (New)


Package is "lightsoff"

Wed Mar 20 21:11:32 2024 rev:31 rq:1159490 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/lightsoff/lightsoff.changes  2023-02-21 
15:35:39.972157404 +0100
+++ /work/SRC/openSUSE:Factory/.lightsoff.new.1905/lightsoff.changes
2024-03-20 21:12:19.185483782 +0100
@@ -1,0 +2,14 @@
+Sun Mar 17 09:25:25 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Updated translations.
+
+---
+Mon Mar  4 08:53:08 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Appdata fixes.
+  + Exclude source SVG icons.
+  + Help fix describing menu button location.
+
+---

Old:

  lightsoff-40.0.1.tar.xz

New:

  _service
  lightsoff-46.0.obscpio
  lightsoff.obsinfo



Other differences:
--
++ lightsoff.spec ++
--- /var/tmp/diff_new_pack.FIEpbb/_old  2024-03-20 21:12:20.325525675 +0100
+++ /var/tmp/diff_new_pack.FIEpbb/_new  2024-03-20 21:12:20.325525675 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lightsoff
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   lightsoff
-Version:40.0.1
+Version:46.0
 Release:0
 Summary:Lights Out Game for GNOME
 License:GPL-2.0-or-later
 Group:  Amusements/Games/Board/Other
 URL:https://wiki.gnome.org/Apps/Lightsoff
-Source0:
https://download.gnome.org/sources/lightsoff/40/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  fdupes
 BuildRequires:  gettext >= 0.19.8

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/lightsoff.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ lightsoff.obsinfo ++
name: lightsoff
version: 46.0
mtime: 1710617863
commit: b383e33570b957b823036b0d7813d4d9d70c1aa8


commit gsettings-desktop-schemas for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gsettings-desktop-schemas for 
openSUSE:Factory checked in at 2024-03-20 21:11:44

Comparing /work/SRC/openSUSE:Factory/gsettings-desktop-schemas (Old)
 and  /work/SRC/openSUSE:Factory/.gsettings-desktop-schemas.new.1905 (New)


Package is "gsettings-desktop-schemas"

Wed Mar 20 21:11:44 2024 rev:71 rq:1159498 version:46.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gsettings-desktop-schemas/gsettings-desktop-schemas.changes
  2024-03-13 22:16:52.424508723 +0100
+++ 
/work/SRC/openSUSE:Factory/.gsettings-desktop-schemas.new.1905/gsettings-desktop-schemas.changes
2024-03-20 21:12:29.937878894 +0100
@@ -1,0 +2,30 @@
+Sun Mar 17 09:37:29 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Updated translations.
+
+---
+Tue Mar 12 02:03:32 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Make default clock format overridable by translators.
+  + Updated translations.
+
+---
+Tue Mar 12 01:40:38 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Add key to modify XKB options.
+  + Add key to indicate whether switches should indicate state with
+shapes.
+  + Updated translations.
+
+---
+Tue Mar 12 00:50:03 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Update default background file extension to jxl.
+  + Updated translations.
+- Convert to source service for easier updating.
+
+---

Old:

  gsettings-desktop-schemas-45.0.tar.xz

New:

  _service
  gsettings-desktop-schemas-46.0.obscpio
  gsettings-desktop-schemas.obsinfo



Other differences:
--
++ gsettings-desktop-schemas.spec ++
--- /var/tmp/diff_new_pack.RQOljW/_old  2024-03-20 21:12:32.681979730 +0100
+++ /var/tmp/diff_new_pack.RQOljW/_new  2024-03-20 21:12:32.685979877 +0100
@@ -18,13 +18,13 @@
 
 
 Name:   gsettings-desktop-schemas
-Version:45.0
+Version:46.0
 Release:0
 Summary:Shared GSettings Schemas for the Desktop
 License:LGPL-2.1-or-later
 Group:  System/GUI/GNOME
 URL:https://gnome.org/
-Source0:
https://download.gnome.org/sources/gsettings-desktop-schemas/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 # SOURCE-FIX-SLE 00_org.gnome.desktop.peripherals.gschema.override bsc#1171593 
alynx.z...@suse.com -- Change touchpad click method to default
 Source1:00_org.gnome.desktop.peripherals.gschema.override
 

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
(.*)\+0
\1
disable
  
  
  
*.tar
zst
  
  



++ gsettings-desktop-schemas.obsinfo ++
name: gsettings-desktop-schemas
version: 46.0
mtime: 1710626352
commit: 38196cc6692c3622d974466c7964a0263b4ff3b4


commit gnome-settings-daemon for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:Factory checked in at 2024-03-20 21:11:41

Comparing /work/SRC/openSUSE:Factory/gnome-settings-daemon (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-settings-daemon.new.1905 (New)


Package is "gnome-settings-daemon"

Wed Mar 20 21:11:41 2024 rev:191 rq:1159497 version:46.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes  
2024-01-05 21:40:59.217344689 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-settings-daemon.new.1905/gnome-settings-daemon.changes
2024-03-20 21:12:25.737724553 +0100
@@ -1,0 +2,29 @@
+Sun Mar 17 09:35:43 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Fixed glib deprecation warnings
+  + Updated translations.
+
+---
+Tue Mar  5 08:01:50 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Smartcard: Don't lose track of token name on card removal.
+  + Updated translations.
+
+---
+Tue Feb 13 09:27:01 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Xsettings: Expose setting for switch shapes.
+  + Updated translations.
+
+---
+Tue Jan 16 13:04:11 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Power: Don't show notifications on mobile hardware.
+  + Sharing: Add support for gnome-remote-desktop headless mode.
+  + Updated translations.
+
+---

Old:

  gnome-settings-daemon-45.1.tar.xz

New:

  _service
  gnome-settings-daemon-46.0.obscpio
  gnome-settings-daemon.obsinfo



Other differences:
--
++ gnome-settings-daemon.spec ++
--- /var/tmp/diff_new_pack.CCljFc/_old  2024-03-20 21:12:29.541864342 +0100
+++ /var/tmp/diff_new_pack.CCljFc/_new  2024-03-20 21:12:29.541864342 +0100
@@ -27,16 +27,16 @@
 %bcond_without wacom
 %endif
 
-%define base_ver 45
+%define base_ver 46
 
 Name:   gnome-settings-daemon
-Version:45.1
+Version:46.0
 Release:0
 Summary:Settings daemon for the GNOME desktop
 License:GPL-2.0-or-later AND LGPL-2.1-only
 Group:  System/GUI/GNOME
 URL:https://gitlab.gnome.org/GNOME/gnome-settings-daemon
-Source0:
https://download.gnome.org/sources/gnome-settings-daemon/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 # PATCH-FIX-OPENSUSE gnome-settings-daemon-initial-keyboard.patch bsc#979051 
boo#1009515 feder...@suse.com -- Deal with the default keyboard being set from 
xkb instead of GNOME
 Patch0: gnome-settings-daemon-initial-keyboard.patch
@@ -67,9 +67,9 @@
 BuildRequires:  pkgconfig(geocode-glib-2.0) >= 3.10.0
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gio-unix-2.0)
-BuildRequires:  pkgconfig(glib-2.0) >= 2.58
+BuildRequires:  pkgconfig(glib-2.0) >= 2.70
 BuildRequires:  pkgconfig(gnome-desktop-3.0) >= 3.11.1
-BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 42
+BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 46.beta
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.15.3
 BuildRequires:  pkgconfig(gudev-1.0)
 BuildRequires:  pkgconfig(gweather4)
@@ -85,7 +85,7 @@
 BuildRequires:  pkgconfig(mm-glib) >= 1.0
 BuildRequires:  pkgconfig(pango) >= 1.20.0
 BuildRequires:  pkgconfig(polkit-gobject-1) >= 0.114
-BuildRequires:  pkgconfig(systemd)
+BuildRequires:  pkgconfig(systemd) >= 243
 BuildRequires:  pkgconfig(udev)
 BuildRequires:  pkgconfig(upower-glib) >= 0.99.12
 BuildRequires:  pkgconfig(x11)

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gnome-settings-daemon.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
(.*)\+0
\1
disable
  
  
  
*.tar
zst
  
  



++ gnome-settings-daemon.obsinfo ++
name: gnome-settings-daemon
version: 46.0
mtime: 1710627298
commit: 8ff4196096efba8b2441ee31a63c8bd8cea4b1d8


commit adwaita-icon-theme for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package adwaita-icon-theme for 
openSUSE:Factory checked in at 2024-03-20 21:12:15

Comparing /work/SRC/openSUSE:Factory/adwaita-icon-theme (Old)
 and  /work/SRC/openSUSE:Factory/.adwaita-icon-theme.new.1905 (New)


Package is "adwaita-icon-theme"

Wed Mar 20 21:12:15 2024 rev:36 rq:1159519 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/adwaita-icon-theme/adwaita-icon-theme.changes
2023-09-20 13:23:32.830516815 +0200
+++ 
/work/SRC/openSUSE:Factory/.adwaita-icon-theme.new.1905/adwaita-icon-theme.changes
  2024-03-20 21:13:07.551261051 +0100
@@ -1,0 +2,47 @@
+Tue Mar 19 07:45:29 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Stable release: no changes since 46.rc.
+
+---
+Mon Mar  4 08:51:24 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + cursors: fix windows build.
+  + cursors: reinstate some x11 cursor names.
+  + symbolic: thunderbolt, phone & export fixes.
+  + index.theme: remove duplicate entries .
+
+---
+Thu Feb 29 07:43:42 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta+6:
+  + build: Reinstate symlinks from X11 cursor names to closest CSS
+names.
+
+---
+Mon Feb 12 15:31:05 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + cursors: clean up shapes, sync DND metaphors with macos.
+  + symbolic: revert about metaphor.
+  + symbolic: shared screen metaphor update.
+
+---
+Tue Jan 23 14:28:27 UTC 2024 - Dominique Leuenberger 
+
+- Create symlinks for hand2, xterm and left_ptr cursors
+  (glgo#GNOME/adwaita-icon-theme#274).
+
+---
+Tue Jan 16 07:30:58 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + fullcolor: antialias 16x16 a little more.
+  + symbolic: replace filled silhouettes with outlines.
+  + cursors: only cover the CSS named.
+  + symbolic: help-about metaphor.
+  + symbolic: sync not-junk metaphor.
+  + symbolic: cleaned up export with Symbolic Preview.
+
+---

Old:

  adwaita-icon-theme-45.0.tar.xz

New:

  _service
  adwaita-icon-theme-46.0.obscpio
  adwaita-icon-theme.obsinfo



Other differences:
--
++ adwaita-icon-theme.spec ++
--- /var/tmp/diff_new_pack.hhEFzX/_old  2024-03-20 21:13:08.103281335 +0100
+++ /var/tmp/diff_new_pack.hhEFzX/_new  2024-03-20 21:13:08.103281335 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package adwaita-icon-theme
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,18 +17,18 @@
 
 
 Name:   adwaita-icon-theme
-Version:45.0
+Version:46.0
 Release:0
 Summary:GNOME Icon Theme
 License:CC-BY-SA-3.0 OR LGPL-3.0-or-later
 Group:  System/GUI/GNOME
 URL:https://gitlab.gnome.org/GNOME/adwaita-icon-theme
-Source0:
https://download.gnome.org/sources/adwaita-icon-theme/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  fdupes
 BuildRequires:  gdk-pixbuf-loader-rsvg
 BuildRequires:  gtk3-tools >= 3.24.2
-BuildRequires:  meson
+BuildRequires:  meson >= 0.64.0
 BuildRequires:  pkgconfig
 # To make sure the icon theme cache gets generated
 Requires(post): (gtk3-tools if libgtk-3-0)

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/adwaita-icon-theme.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ adwaita-icon-theme.obsinfo ++
name: adwaita-icon-theme
version: 46.0
mtime: 1710787584
commit: 7d2510820199ff7f233511a00895043f3843dbcd


commit gnome-contacts for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-contacts for openSUSE:Factory 
checked in at 2024-03-20 21:12:14

Comparing /work/SRC/openSUSE:Factory/gnome-contacts (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-contacts.new.1905 (New)


Package is "gnome-contacts"

Wed Mar 20 21:12:14 2024 rev:73 rq:1159518 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-contacts/gnome-contacts.changes
2023-09-20 13:24:00.891522116 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-contacts.new.1905/gnome-contacts.changes  
2024-03-20 21:13:06.335216365 +0100
@@ -1,0 +2,48 @@
+Tue Mar 19 07:42:19 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + It's now possible to import multiple VCard files at once.
+  + When importing new contacts, the confirmation dialog will also
+helpfully preview the names of the contacts to import.
+  + Searching contacts just got a bit faster, with improved
+performance and reduces power consumption, especially on large
+contact lists.
+  + Searching for a contact through GNOME Shell and clicking it
+while editing an existing one could lead to a broken state.
+Now, Contacts will first confirm whether it's okay to stop
+editing.
+  + A bug where (un)selecting a contact would fail when clicking
+the checkbox directly is now fixed.
+  + Phone numbers are now always shown from left to right,
+regardless of the configured text direction.
+  + Updated translations.
+
+---
+Wed Feb 28 09:16:03 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Phone numbers are shown from left to right, regardless of the
+configured text direction.
+  + Updated translations.
+
+---
+Tue Jan 16 08:18:42 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + It's now possible to import multiple VCard files at once.
+  + When importing new contacts, the confirmation dialog will also
+helpfully preview the names of the contacts to import.
+  + Searching for a contact through GNOME Shell and clicking it
+while editing an existing one could lead to a broken state.
+Now, Contacts will first confirm whether it's okay to stop
+editing.
+  + A bug where (un)selecting a contact would fail when clicking
+the checkbox directly is now fixed.
+  + The nightly Flatpak should now properly show avatars for
+contacts.
+  + Some outdated and missing info was added in the app
+description.
+  + Updated translations.
+- Convert to source service for easier updating.
+
+---

Old:

  gnome-contacts-45.0.tar.xz

New:

  _service
  gnome-contacts-46.0.obscpio
  gnome-contacts.obsinfo



Other differences:
--
++ gnome-contacts.spec ++
--- /var/tmp/diff_new_pack.a9iWnP/_old  2024-03-20 21:13:06.795233269 +0100
+++ /var/tmp/diff_new_pack.a9iWnP/_new  2024-03-20 21:13:06.799233416 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-contacts
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,13 +21,13 @@
 %define glib_version 2.64
 
 Name:   gnome-contacts
-Version:45.0
+Version:46.0
 Release:0
 Summary:Contacts Manager for GNOME
 License:GPL-2.0-or-later
 Group:  Productivity/Office/Other
 URL:https://wiki.gnome.org/Apps/Contacts
-Source0:
https://download.gnome.org/sources/gnome-contacts/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  desktop-file-utils
 BuildRequires:  docbook-xsl-stylesheets
@@ -104,7 +104,7 @@
 
 %files
 %license COPYING
-%doc NEWS README.md
+%doc README.md
 %{_mandir}/man1/gnome-contacts.1%{ext_man}
 %{_bindir}/gnome-contacts
 %dir %{_datadir}/metainfo

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gnome-contacts.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
(.*)\+0
\1
disable
  
  
  
*.tar
zst
  
  



++ gnome-contacts.obsinfo ++
name: gnome-contacts
version: 46.0
mtime: 1710596353
commit: 466925e6e797c62dc0ce2c01e1bca3f85c187edf


commit gdm for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gdm for openSUSE:Factory checked in 
at 2024-03-20 21:12:20

Comparing /work/SRC/openSUSE:Factory/gdm (Old)
 and  /work/SRC/openSUSE:Factory/.gdm.new.1905 (New)


Package is "gdm"

Wed Mar 20 21:12:20 2024 rev:266 rq:1159526 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gdm/gdm.changes  2024-03-05 18:47:06.277293352 
+0100
+++ /work/SRC/openSUSE:Factory/.gdm.new.1905/gdm.changes2024-03-20 
21:13:15.847565910 +0100
@@ -1,0 +2,43 @@
+Tue Mar 19 07:49:19 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + PAM improvements.
+  + Updated translations.
+
+---
+Mon Mar  4 08:17:19 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Support for killing conflicting sessions at login time.
+  + XDMCP fix.
+  + Use wayland by default on certain server chips.
+  + Fix pam extension size computation.
+  + Introspection fix.
+  + Fix for homed users.
+  + Updated translations.
+- Rebase gdm-default-wm.patch and
+  gdm-xvnc-start-session-failed.patch.
+
+---
+Mon Mar  4 03:02:11 UTC 2024 - Xiaoguang Wang 
+
+- Rebase gdm-sysconfig-settings.patch: to fix build with GCC 14.
+
+---
+Mon Mar  4 02:20:49 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Support remote login from gnome-remote-desktop (and hopefuly
+nicedcv in the future).
+  + Support new JSON pam extension.
+  + Fix build with user-display-server=false.
+  + Minor clean ups.
+  + Move private D-Bus sockets to private directory.
+  + Build goo fixes.
+  + Warning fixes.
+  + Updated translations.
+- Rebase gdm-default-wm.patch.
+- Add pkgconfig(json-glib-1.0) BuildRequires: new dependency.
+- Convert to source service for easier updating.
+
+---

Old:

  gdm-45.0.1.tar.xz

New:

  _service
  gdm-46.0.obscpio
  gdm.obsinfo



Other differences:
--
++ gdm.spec ++
--- /var/tmp/diff_new_pack.2H4hO1/_old  2024-03-20 21:13:16.651595455 +0100
+++ /var/tmp/diff_new_pack.2H4hO1/_new  2024-03-20 21:13:16.651595455 +0100
@@ -27,14 +27,14 @@
 %endif
 
 Name:   gdm
-Version:45.0.1
+Version:46.0
 Release:0
 Summary:The GNOME Display Manager
 License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
 URL:https://wiki.gnome.org/Projects/GDM
 
-Source0:
https://download.gnome.org/sources/gdm/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 Source1:gdm.pamd
 Source2:gdm-autologin.pamd
 Source3:gdm-launch-environment.pamd
@@ -112,6 +112,7 @@
 BuildRequires:  pkgconfig(gtk+-3.0) >= 2.91.1
 BuildRequires:  pkgconfig(gudev-1.0) >= 232
 BuildRequires:  pkgconfig(iso-codes)
+BuildRequires:  pkgconfig(json-glib-1.0)
 BuildRequires:  pkgconfig(libcanberra-gtk3) >= 0.4
 BuildRequires:  pkgconfig(libkeyutils)
 BuildRequires:  pkgconfig(libsystemd)
@@ -384,6 +385,7 @@
 %config %{_sysconfdir}/gdm/[IPXl]*
 %{_sbindir}/gdm
 %{_bindir}/gdm
+%{_bindir}/gdm-config
 %{_bindir}/gdm-screenshot
 %dir %{_datadir}/dconf
 %dir %{_datadir}/dconf/profile

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gdm.git
46.0
@PARENT_TAG@+@TAG_OFFSET@
(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ gdm-default-wm.patch ++
--- /var/tmp/diff_new_pack.2H4hO1/_old  2024-03-20 21:13:16.735598542 +0100
+++ /var/tmp/diff_new_pack.2H4hO1/_new  2024-03-20 21:13:16.739598688 +0100
@@ -1,15 +1,17 @@
 a/daemon/gdm-session.c
-+++ b/daemon/gdm-session.c
-@@ -43,6 +43,8 @@
- #include 
- #include 
+Index: gdm-46.rc/daemon/gdm-session.c
+===
+--- gdm-46.rc.orig/daemon/gdm-session.c
 gdm-46.rc/daemon/gdm-session.c
+@@ -47,6 +47,8 @@
+ 
+ #include 
  
 +#include "gdm-sysconfig.h"
 +
  #include "gdm-session.h"
  #include "gdm-session-glue.h"
  #include "gdm-dbus-util.h"
-@@ -589,6 +591,14 @@ get_fallback_session_name (GdmSession *s
+@@ -618,6 +620,14 @@ get_fallback_session_name (GdmSession *s
  }
  }
  

++ gdm-sysconfig-settings.patch ++
--- /var/tmp/diff_new_pack.2H4hO1/_old  2024-03-20 21:13:16.823601776 +0100
+++ /var/tmp/diff_new_pack.2H4hO1/_new  2024-03-20 21:13:16.831602069 +0100
@@ -1,5 +1,7 @@
+Index: gdm-46.alpha/common/gdm-settings-system-backend.c
+===
 --- /dev/null
-+++ b/common/gdm-settings-system-backend.c
++

commit tepl for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tepl for openSUSE:Factory checked in 
at 2024-03-20 21:12:28

Comparing /work/SRC/openSUSE:Factory/tepl (Old)
 and  /work/SRC/openSUSE:Factory/.tepl.new.1905 (New)


Package is "tepl"

Wed Mar 20 21:12:28 2024 rev:17 rq:1159532 version:6.9.0

Changes:

--- /work/SRC/openSUSE:Factory/tepl/tepl.changes2023-09-20 
13:21:37.210374656 +0200
+++ /work/SRC/openSUSE:Factory/.tepl.new.1905/tepl.changes  2024-03-20 
21:13:24.503883998 +0100
@@ -1,0 +2,12 @@
+Fri Feb 16 07:28:15 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 6.9.0:
+  + libhandy-1 is used as a new dependency (for dark style
+preference handling).
+  + Replace _TEPL_EXTERN custom macro by G_MODULE_EXPORT.
+  + New APIs: see the API docs.
+- Add pkgconfig(libhandy-1) BuildRequires: new dependency.
+- Drop pkgconfig(gtksourceview-4) BuildRequires: no longer needed
+  since version 6.6.
+
+---

Old:

  tepl-6.8.0.tar.xz

New:

  tepl-6.9.0.tar.xz



Other differences:
--
++ tepl.spec ++
--- /var/tmp/diff_new_pack.Ydfe5g/_old  2024-03-20 21:13:25.407917218 +0100
+++ /var/tmp/diff_new_pack.Ydfe5g/_new  2024-03-20 21:13:25.411917365 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tepl
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,13 @@
 %define lib_ver %{api_ver}-4
 
 Name:   tepl
-Version:6.8.0
+Version:6.9.0
 Release:0
 Summary:Text Editor Product Line
 License:LGPL-3.0-or-later
 Group:  Productivity/Text/Editors
 URL:https://wiki.gnome.org/Projects/Tepl
-Source: 
https://download.gnome.org/sources/tepl/6.8/%{name}-%{version}.tar.xz
+Source: 
https://download.gnome.org/sources/tepl/6.9/%{name}-%{version}.tar.xz
 
 BuildRequires:  gobject-introspection-devel >= 1.42.0
 BuildRequires:  gtk-doc
@@ -35,11 +35,11 @@
 BuildRequires:  pkgconfig(gio-2.0) >= 2.64
 BuildRequires:  pkgconfig(gsettings-desktop-schemas)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22
-BuildRequires:  pkgconfig(gtksourceview-4)
 BuildRequires:  pkgconfig(icu-i18n)
 BuildRequires:  pkgconfig(icu-uc)
 BuildRequires:  pkgconfig(libgedit-amtk-5)
-BuildRequires:  pkgconfig(libgedit-gtksourceview-300) >= 299.0.4
+BuildRequires:  pkgconfig(libgedit-gtksourceview-300) >= 299.1.0
+BuildRequires:  pkgconfig(libhandy-1) >= 1.6
 BuildRequires:  pkgconfig(uchardet)
 
 %description

++ tepl-6.8.0.tar.xz -> tepl-6.9.0.tar.xz ++
 2783 lines of diff (skipped)


commit gtk4 for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gtk4 for openSUSE:Factory checked in 
at 2024-03-20 21:11:52

Comparing /work/SRC/openSUSE:Factory/gtk4 (Old)
 and  /work/SRC/openSUSE:Factory/.gtk4.new.1905 (New)


Package is "gtk4"

Wed Mar 20 21:11:52 2024 rev:72 rq:1159503 version:4.14.1

Changes:

--- /work/SRC/openSUSE:Factory/gtk4/gtk4.changes2024-02-11 
15:44:50.721102525 +0100
+++ /work/SRC/openSUSE:Factory/.gtk4.new.1905/gtk4.changes  2024-03-20 
21:12:50.446632516 +0100
@@ -1,0 +2,204 @@
+Sun Mar 17 09:43:01 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 4.14.1:
+  + GtkTextView: Fix a mixup of cursor and anchor when retrieving
+surrounding text in input methods.
+  + Printing: Avoid accessing freed printers.
+  + Accessibility: Fix memory leaks.
+  + GDK:
+- Rename the GDK_VULKAN_SKIP environment variable to
+  GDK_VULKAN_DISABLE.
+- Add a GDK_GL_DISABLE environment variable.
+  + GSK:
+- Rename the GSK_GPU_SKIP environment variable to
+  GSK_GPU_DISABLE.
+- Speed up handling of repeated ops, which should help for
+  text.
+- Speed up the inner loop of text node conversion.
+- Drop the glyph-align optimization flag.
+- ngl: Avoid reusing frames while they are in use.
+- Fix flickering thumbnails in nautilus.
+- Speed up buffer handling in both ngl and Vulkan.
+  + Demos: Skip demos using gl shaders when we're not using the gl
+renderer.
+  + Build:
+- Fix some ubsan warnings.
+- Avoid zink in ci since it spams stderr.
+  + Updated translations.
+
+---
+Tue Mar 12 13:38:30 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 4.14.0:
+  + GtkTextView:
+- Don't snapshot children twice.
+- Don't blink the cursor when hidden.
+  + GtkEmojiChooser: Fix presentation selector handling.
+  + GtkSnapshot: Fix wrong nodes with transformed shadows.
+  + GtkIMContext: Make gtk_im_context_activate_osk public.
+  + Accessibility:
+- Implement get_contents_at for all our text widgets.
+- Add GtkAccessibleText.get_default_attributes.
+  + GSK:
+- Don't fall back to cairo for software rendering. gl+llvmpipe
+  is better.
+- Round vertical glyph position to a device pixel position if
+  the font is hinted.
+- Fix problems with clip handling.
+- Make vulkan and ngl match their font handling.
+- Fix some corner-cases with offloading and clips.
+- Fix problem with rendering of missing glyphs in hinted fonts.
+  + Updated translations.
+
+---
+Mon Mar  4 08:08:06 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 4.13.9:
+  + GtkEditable: Fix preconditions to be not too strict.
+  + GtkEmojiChooser: Support search in the locale as well as in
+English.
+  + GtkIconTheme: Make gtk_icon_paintable_new_for_file support
+symbolics.
+  + GtkVideo: Fix a problem with cursor handling that could lead to
+crashes.
+  + Accessibility:
+- Fix GetCharacterAtOffset implementation.
+- Add a Terminal role.
+- Make TextCaretMoved match gtk3.
+- Support multiple levels of GtkEditable delegates.
+  + GSK:
+- Make the node parser more flexible for text nodes.
+- Change the way font scaling is handled to avoid clipping.
+- Fix handling of missing glyphs in the new renderers.
+  + X11: Don't claim to support shadows without a compositor.
+  + Wayland: Fix handling of output scales.
+  + Tools: Add a compare command to gtk4-rendernode-tool.
+  + Build: Fix some ubsan complaints.
+
+---
+Thu Feb 22 11:17:20 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 4.13.8.1+7:
+  + Fix Crash in gtk_file_dialog_save() with initial filename.
+  + x11: Shadows require compositing 
+
+---
+Wed Feb 21 07:59:25 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 4.13.8:
+  + Accessibility:
+- Add a GtkAccessibleText interface for allowing 3rd party.
+  text widgets (notably vte) to be accessible.
+- Avoid duplicate accessible descriptions.
+- Fix GetAccessibleAtPoint.
+  + GSK:
+- Avoid offscreens for disjoint containers.
+- Don't use the gpu renderers with llvmpipe.
+- Fix various rendering issues found by tests.
+- Allow unnormalized node bounds again.
+- Fix a broken case of rounded-rect intersection.
+- Fix handling of external textures in gpu renderers.
+- Make gpu renderers work with WGL on Windows.
+  + build: Allow building without dmabuf support on (old) Linux.
+  + X11: Fix monitor enter/leave signals.
+  + Updated translations.
+
+---

commit gtkmm3 for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gtkmm3 for openSUSE:Factory checked 
in at 2024-03-20 21:12:03

Comparing /work/SRC/openSUSE:Factory/gtkmm3 (Old)
 and  /work/SRC/openSUSE:Factory/.gtkmm3.new.1905 (New)


Package is "gtkmm3"

Wed Mar 20 21:12:03 2024 rev:54 rq:1159507 version:3.24.9

Changes:

--- /work/SRC/openSUSE:Factory/gtkmm3/gtkmm3.changes2023-09-20 
13:21:54.418991164 +0200
+++ /work/SRC/openSUSE:Factory/.gtkmm3.new.1905/gtkmm3.changes  2024-03-20 
21:12:56.542856531 +0100
@@ -1,0 +2,11 @@
+Mon Mar 18 07:52:03 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.24.9:
+  + Documentation:
+- Gtk::Clipboard: Update documentation.
+- Gtk::ScrolledWindow: Update the class description.
+  + Tests: Gdk::RGBA test: Avoid some comparisons for exact
+equality.
+  + Meson build: Donʼt fail if warning_level=everything.
+
+---

Old:

  gtkmm-3.24.8.tar.xz

New:

  gtkmm-3.24.9.tar.xz



Other differences:
--
++ gtkmm3.spec ++
--- /var/tmp/diff_new_pack.6aeOMR/_old  2024-03-20 21:12:57.066875787 +0100
+++ /var/tmp/diff_new_pack.6aeOMR/_new  2024-03-20 21:12:57.070875934 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gtkmm3
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define _name gtkmm
 
 Name:   gtkmm3
-Version:3.24.8
+Version:3.24.9
 Release:0
 Summary:C++ Interface for GTK3 (a GUI Library for X)
 License:LGPL-2.1-or-later

++ gtkmm-3.24.8.tar.xz -> gtkmm-3.24.9.tar.xz ++
/work/SRC/openSUSE:Factory/gtkmm3/gtkmm-3.24.8.tar.xz 
/work/SRC/openSUSE:Factory/.gtkmm3.new.1905/gtkmm-3.24.9.tar.xz differ: char 
26, line 1


commit seahorse for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package seahorse for openSUSE:Factory 
checked in at 2024-03-20 21:12:32

Comparing /work/SRC/openSUSE:Factory/seahorse (Old)
 and  /work/SRC/openSUSE:Factory/.seahorse.new.1905 (New)


Package is "seahorse"

Wed Mar 20 21:12:32 2024 rev:123 rq:1159535 version:43.0+22

Changes:

--- /work/SRC/openSUSE:Factory/seahorse/seahorse.changes2023-01-07 
17:19:26.694059496 +0100
+++ /work/SRC/openSUSE:Factory/.seahorse.new.1905/seahorse.changes  
2024-03-20 21:13:29.748076703 +0100
@@ -1,0 +2,9 @@
+Wed Feb 28 09:09:56 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 43.0+22:
+  + Avoid C99 incompatibility around
+seahorse_pkcs11_backend_initialize.
+  + Allow building with GnuPG-2.4.x.
+- Drop 9260c747.patch: fixed upstream.
+
+---

Old:

  9260c747.patch
  seahorse-43.0.tar.xz

New:

  _service
  seahorse-43.0+22.obscpio
  seahorse.obsinfo

BETA DEBUG BEGIN:
  Old:  + Allow building with GnuPG-2.4.x.
- Drop 9260c747.patch: fixed upstream.
BETA DEBUG END:



Other differences:
--
++ seahorse.spec ++
--- /var/tmp/diff_new_pack.6JCpdA/_old  2024-03-20 21:13:30.276096106 +0100
+++ /var/tmp/diff_new_pack.6JCpdA/_new  2024-03-20 21:13:30.280096253 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package seahorse
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,13 @@
 
 
 Name:   seahorse
-Version:43.0
+Version:43.0+22
 Release:0
 Summary:GNOME interface for gnupg
 License:GFDL-1.1-only AND GPL-2.0-or-later AND LGPL-2.1-or-later
 Group:  Productivity/Security
 URL:https://wiki.gnome.org/Apps/Seahorse
-Source0:
https://download.gnome.org/sources/seahorse/43/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM 9260c747.patch dims...@opensuse.org -- Allow building 
with GnuPG-2.4.x
-Patch0: https://gitlab.gnome.org/GNOME/seahorse/-/commit/9260c747.patch
+Source0:%{name}-%{version}.tar.zst
 BuildRequires:  appstream-glib
 BuildRequires:  desktop-file-utils
 BuildRequires:  docbook-xsl-stylesheets

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/seahorse.git
main
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ seahorse.obsinfo ++
name: seahorse
version: 43.0+22
mtime: 1708971802
commit: 0f4cb1f4f421af4a0e1c240f012e915c4e3d59b3


commit gnome-session for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-session for openSUSE:Factory 
checked in at 2024-03-20 21:12:18

Comparing /work/SRC/openSUSE:Factory/gnome-session (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-session.new.1905 (New)


Package is "gnome-session"

Wed Mar 20 21:12:18 2024 rev:208 rq:1159521 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-session/gnome-session.changes  
2023-12-06 23:49:10.169321066 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-session.new.1905/gnome-session.changes
2024-03-20 21:13:09.511333076 +0100
@@ -1,0 +2,27 @@
+Tue Mar 19 07:47:48 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Updated translations.
+
+---
+Mon Mar  4 08:23:59 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Fix for race a shutdown with loginctl terminate-user
+  + Updates for Access portal changes
+  + Updated translations.
+
+---
+Tue Jan 16 12:06:30 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + Make ctrl-c behave better in gnome-session-inhibit.
+  + Advertise support for headless session.
+  + Build goo cleanups.
+  + Copyright header cleanups.
+  + README cleanups.
+  + Updated translations.
+- Drop -D systemd=true -D systemd_journal=true meson parameters: no
+  longer supported to be switched off.
+
+---

Old:

  gnome-session-45.0.obscpio

New:

  gnome-session-46.0.obscpio



Other differences:
--
++ gnome-session.spec ++
--- /var/tmp/diff_new_pack.0IGq81/_old  2024-03-20 21:13:12.263434206 +0100
+++ /var/tmp/diff_new_pack.0IGq81/_new  2024-03-20 21:13:12.275434647 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-session
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,10 +16,10 @@
 #
 
 
-%define basever 45
+%define basever 46
 
 Name:   gnome-session
-Version:45.0
+Version:46.0
 Release:0
 Summary:Session Tools for the GNOME Desktop
 License:GPL-2.0-or-later
@@ -112,8 +112,6 @@
 %build
 %meson \
-D docbook=false \
-   -D systemd=true \
-   -D systemd_journal=true \
-D systemduserunitdir=%{_userunitdir} \
%{nil}
 %meson_build
@@ -185,7 +183,6 @@
 %{_bindir}/gnome-session
 %{_bindir}/gnome-session-inhibit
 %{_bindir}/gnome-session-quit
-%{_datadir}/GConf/gsettings/gnome-session.convert
 %{_datadir}/glib-2.0/schemas/org.gnome.SessionManager.gschema.xml
 %dir %{_datadir}/gnome-session
 %dir %{_datadir}/gnome-session/sessions

++ _service ++
--- /var/tmp/diff_new_pack.0IGq81/_old  2024-03-20 21:13:12.555444936 +0100
+++ /var/tmp/diff_new_pack.0IGq81/_new  2024-03-20 21:13:12.587446112 +0100
@@ -3,7 +3,7 @@
   
 git
 https://gitlab.gnome.org/GNOME/gnome-session.git
-refs/tags/45.0
+46.0
 @PARENT_TAG@+@TAG_OFFSET@
 (.*)\+0
 \1

++ gnome-session-45.0.obscpio -> gnome-session-46.0.obscpio ++
 12184 lines of diff (skipped)

++ gnome-session.obsinfo ++
--- /var/tmp/diff_new_pack.0IGq81/_old  2024-03-20 21:13:13.703487122 +0100
+++ /var/tmp/diff_new_pack.0IGq81/_new  2024-03-20 21:13:13.727488005 +0100
@@ -1,5 +1,5 @@
 name: gnome-session
-version: 45.0
-mtime: 1694951611
-commit: 998ed1d8ee2ff5396583c284230648625b4103e5
+version: 46.0
+mtime: 1710790206
+commit: 2437153bfd7cbebe62c73926bb85f88076313963
 


commit gcr3 for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gcr3 for openSUSE:Factory checked in 
at 2024-03-20 21:12:44

Comparing /work/SRC/openSUSE:Factory/gcr3 (Old)
 and  /work/SRC/openSUSE:Factory/.gcr3.new.1905 (New)


Package is "gcr3"

Wed Mar 20 21:12:44 2024 rev:5 rq:1159545 version:3.41.2

Changes:

--- /work/SRC/openSUSE:Factory/gcr3/gcr3.changes2023-11-29 
21:19:38.566763597 +0100
+++ /work/SRC/openSUSE:Factory/.gcr3.new.1905/gcr3.changes  2024-03-20 
21:13:43.580584998 +0100
@@ -1,0 +2,21 @@
+Thu Jan 18 16:49:26 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.41.2:
+  + ui: Add gcr.gresource.xml back into the build.
+  + misc: Several memory leaks were fixed.
+  + ci: Several CI fixes.
+  + Updated translations.
+- Changes from version 3.41.1:
+  + meson: Fix unknown kw argument in gnome.generate_gir.
+  + gcr: Add G_SPAWN_CLOEXEC_PIPES flag to all the g_spawn
+commands.
+  + docs: Port from gtk-doc to gi-docgen.
+  + Unbreak build without systemd.
+  + Several CI fixes.
+  + Updated translations.
+- Drop b3ca1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch: fixed
+  upstream.
+- Replace gtk-doc buildRequires with pkgconfig(gi-docgen): follow
+  upstreams port of the documentation infrastructure.
+
+---

Old:

  b3ca1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch
  gcr-3.41.0.tar.xz

New:

  _service
  gcr-3.41.2.obscpio
  gcr.obsinfo

BETA DEBUG BEGIN:
  Old:  + Updated translations.
- Drop b3ca1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch: fixed
  upstream.
BETA DEBUG END:



Other differences:
--
++ gcr3.spec ++
--- /var/tmp/diff_new_pack.otj46s/_old  2024-03-20 21:13:44.056602489 +0100
+++ /var/tmp/diff_new_pack.otj46s/_new  2024-03-20 21:13:44.060602637 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gcr3
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,28 +18,26 @@
 
 %define _name gcr
 Name:   gcr3
-Version:3.41.0
+Version:3.41.2
 Release:0
 # FIXME: Verify if the requires in typelib-1_0-Gcr-3 is still correct and 
required (see bgo#725501).
 Summary:Library for Crypto UI related tasks
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:http://www.gnome.org
-Source0:
https://download.gnome.org/sources/gcr/3.41/%{_name}-%{version}.tar.xz
+Source0:%{_name}-%{version}.tar.zst
 Source1:baselibs.conf
 # PATCH-FIX-SLE gcr-bsc932232-use-libgcrypt-allocators.patch bsc#932232 
h...@suse.com -- use libgcrypt allocators for FIPS mode
 Patch1: gcr-bsc932232-use-libgcrypt-allocators.patch
-# PATCH-FIX-UPSTREAM b3ca1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch -- Fix 
build with meson 060.0 and newer
-Patch2: 
https://gitlab.gnome.org/GNOME/gcr/-/commit/b3ca1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch
 
 # For directory ownership
 BuildRequires:  dbus-1
 BuildRequires:  gettext >= 0.19.8
 BuildRequires:  gobject-introspection-devel >= 1.34
-# configure is looking for the gpg2 path
-BuildRequires:  gtk-doc
 BuildRequires:  libgcrypt-devel >= 1.4.5
-BuildRequires:  meson
+BuildRequires:  meson >= 0.52
+BuildRequires:  pkgconfig(gi-docgen)
+# configure is looking for the gpg2 path
 BuildRequires:  openssh-clients
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
@@ -207,7 +205,6 @@
 %if 0%{?sle_version}
 %patch -P 1 -p1
 %endif
-%patch -P 2 -p1
 
 %build
 %meson \
@@ -278,7 +275,7 @@
 %{_libdir}/girepository-1.0/GcrUi-3.typelib
 
 %files -n libgcr3-devel
-%doc %{_datadir}/gtk-doc/html/gcr/
+%doc %{_datadir}/doc/gcr*/
 %{_libdir}/libgcr-base-3.so
 %{_libdir}/libgcr-ui-3.so
 %{_libdir}/pkgconfig/gcr-3.pc
@@ -297,7 +294,7 @@
 %{_libdir}/girepository-1.0/Gck-1.typelib
 
 %files -n libgck1-devel
-%doc %{_datadir}/gtk-doc/html/gck/
+%doc %{_datadir}/doc/gck*/
 %{_libdir}/libgck-1.so
 %{_libdir}/pkgconfig/gck-1.pc
 %{_includedir}/gck-1/

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gcr.git
3.41.2
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ gcr.obsinfo ++
name: gcr
version: 3.41.2
mtime: 1705259110
commit: cd63e8a0378e13ba0aa15c2a68d1070fa62e6532


commit gnome-terminal for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-terminal for openSUSE:Factory 
checked in at 2024-03-20 21:12:18

Comparing /work/SRC/openSUSE:Factory/gnome-terminal (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-terminal.new.1905 (New)


Package is "gnome-terminal"

Wed Mar 20 21:12:18 2024 rev:155 rq:1159524 version:3.52.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-terminal/gnome-terminal.changes
2023-10-24 20:07:19.502273014 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-terminal.new.1905/gnome-terminal.changes  
2024-03-20 21:13:14.615520637 +0100
@@ -1,0 +2,19 @@
+Tue Mar 19 07:51:35 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.52.0:
+  + Updated translations.
+
+---
+Tue Feb 20 09:09:30 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 3.51.90:
+  + schemas: Fix inverted help text for word-char-exceptions.
+  + settings: Make schema verifier stricter.
+  + prefs: Add pref to scroll on paste.
+  + window: Show nicely formatted numbers up to 2^64-1 in the
+context menu.
+  + help: Add VTE's new hardcoded shell integration shortcut keys.
+  + help: Consistently use "Terminal" instead of "GNOME Terminal".
+  + Updated translations.
+
+---

Old:

  gnome-terminal-3.50.1.obscpio

New:

  gnome-terminal-3.52.0.obscpio



Other differences:
--
++ gnome-terminal.spec ++
--- /var/tmp/diff_new_pack.4pZ53B/_old  2024-03-20 21:13:15.231543273 +0100
+++ /var/tmp/diff_new_pack.4pZ53B/_new  2024-03-20 21:13:15.231543273 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-terminal
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %bcond_without  nautilus_extension
 Name:   gnome-terminal
-Version:3.50.1
+Version:3.52.0
 Release:0
 Summary:GNOME Terminal
 License:GPL-3.0-or-later AND LGPL-2.1-or-later
@@ -42,16 +42,16 @@
 BuildRequires:  pkgconfig(dconf) >= 0.14.0
 BuildRequires:  pkgconfig(gio-2.0) >= 2.52.0
 BuildRequires:  pkgconfig(gio-unix-2.0)
-BuildRequires:  pkgconfig(glib-2.0) >= 2.52
+BuildRequires:  pkgconfig(glib-2.0) >= 2.76.0
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 0.1.0
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.18
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22.7
 BuildRequires:  pkgconfig(libhandy-1)
 %if %{with nautilus_extension}
 BuildRequires:  pkgconfig(libnautilus-extension-4)
 %endif
 BuildRequires:  pkgconfig(libpcre2-8) >= 10.00
 BuildRequires:  pkgconfig(uuid)
-BuildRequires:  pkgconfig(vte-2.91) >= 0.74.0
+BuildRequires:  pkgconfig(vte-2.91) >= 0.76.0
 BuildRequires:  pkgconfig(x11)
 Requires(pre):  filesystem
 

++ _service ++
--- /var/tmp/diff_new_pack.4pZ53B/_old  2024-03-20 21:13:15.255544155 +0100
+++ /var/tmp/diff_new_pack.4pZ53B/_new  2024-03-20 21:13:15.259544302 +0100
@@ -4,8 +4,8 @@
 https://gitlab.gnome.org/GNOME/gnome-terminal.git
 git
 @PARENT_TAG@
-enable
-refs/tags/3.50.1
+disable
+3.52.0
   
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.4pZ53B/_old  2024-03-20 21:13:15.279545037 +0100
+++ /var/tmp/diff_new_pack.4pZ53B/_new  2024-03-20 21:13:15.279545037 +0100
@@ -1,6 +1,6 @@
 
 
 https://gitlab.gnome.org/GNOME/gnome-terminal.git
-  5ac3b8e4bd6fa02651b3c23cedb0a7e1cd769655
+  204c2432fd2391db2fd35e6bbc46aed65559dde5
 (No newline at EOF)
 

++ gnome-terminal-3.50.1.obscpio -> gnome-terminal-3.52.0.obscpio ++
/work/SRC/openSUSE:Factory/gnome-terminal/gnome-terminal-3.50.1.obscpio 
/work/SRC/openSUSE:Factory/.gnome-terminal.new.1905/gnome-terminal-3.52.0.obscpio
 differ: char 49, line 1

++ gnome-terminal.obsinfo ++
--- /var/tmp/diff_new_pack.4pZ53B/_old  2024-03-20 21:13:15.315546360 +0100
+++ /var/tmp/diff_new_pack.4pZ53B/_new  2024-03-20 21:13:15.315546360 +0100
@@ -1,5 +1,5 @@
 name: gnome-terminal
-version: 3.50.1
-mtime: 1697731530
-commit: 5ac3b8e4bd6fa02651b3c23cedb0a7e1cd769655
+version: 3.52.0
+mtime: 1710537761
+commit: 09c8b31168460c325ac00820759d6eefdf3957ab
 


commit file-roller for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package file-roller for openSUSE:Factory 
checked in at 2024-03-20 21:12:46

Comparing /work/SRC/openSUSE:Factory/file-roller (Old)
 and  /work/SRC/openSUSE:Factory/.file-roller.new.1905 (New)


Package is "file-roller"

Wed Mar 20 21:12:46 2024 rev:161 rq:1159546 version:44.beta

Changes:

--- /work/SRC/openSUSE:Factory/file-roller/file-roller.changes  2023-12-05 
17:01:50.518108267 +0100
+++ /work/SRC/openSUSE:Factory/.file-roller.new.1905/file-roller.changes
2024-03-20 21:13:44.636623803 +0100
@@ -1,0 +2,18 @@
+Mon Mar 11 08:01:54 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 44.beta:
+  + window: Fix incompatible pointer types,
+  + appdata: Fix reverse DNS developer id,
+  + Updated translations.
+
+---
+Sun Feb 18 10:43:47 UTC 2024 - Muhammad Akbar Yanuar Mantari 
+
+- Update to version 44.alpha:
+  + Ported to GTK4
+- Change BuildRequires ported from gtk3 to gtk4:
+  + pkgconfig(gtk+-3.0) to pkgconfig(gtk4)
+  + pkgconfig(libhandy-1) to pkgconfig(libadwaita-1)
+  + pkgconfig(libportal-gtk3) to pkgconfig(libportal-gtk4)
+  
+---

Old:

  file-roller-43.1.tar.xz

New:

  _service
  file-roller-44.beta.obscpio
  file-roller.obsinfo



Other differences:
--
++ file-roller.spec ++
--- /var/tmp/diff_new_pack.itbfxG/_old  2024-03-20 21:13:45.192644235 +0100
+++ /var/tmp/diff_new_pack.itbfxG/_new  2024-03-20 21:13:45.192644235 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package file-roller
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   file-roller
-Version:43.1
+Version:44.beta
 Release:0
 Summary:An Archive Manager for GNOME
 License:GPL-2.0-or-later
 Group:  Productivity/Archiving/Compression
 URL:https://wiki.gnome.org/Apps/FileRoller
-Source0:
https://download.gnome.org/sources/file-roller/43/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 # PATCH-FIX-OPENSUSE file-roller-3.4-change-archiver-priority.patch bnc#767386 
gan...@opensuse.org -- Give unzip a higher priority than 7z when unpackging zip 
files. Gives better results for non-latin charsets.
 Patch0: file-roller-3.4-change-archiver-priority.patch
@@ -42,13 +42,13 @@
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(glib-2.0) >= 2.38.0
 BuildRequires:  pkgconfig(gthread-2.0)
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22.0
+BuildRequires:  pkgconfig(gtk4)
 BuildRequires:  pkgconfig(json-glib-1.0) >= 0.14.0
+BuildRequires:  pkgconfig(libadwaita-1)
 BuildRequires:  pkgconfig(libarchive) >= 3.0.0
-BuildRequires:  pkgconfig(libhandy-1) >= 1.5
 BuildRequires:  pkgconfig(libnautilus-extension-4)
 BuildRequires:  pkgconfig(libportal)
-BuildRequires:  pkgconfig(libportal-gtk3)
+BuildRequires:  pkgconfig(libportal-gtk4)
 # Formats that we likely want to support by default
 Recommends: bzip2
 Recommends: 7zip

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/file-roller.git
44.beta
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ file-roller.obsinfo ++
name: file-roller
version: 44.beta
mtime: 1710088705
commit: 9c2e28e83e351d87d93d62ac1c4850b658ad4746


commit libshumate for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libshumate for openSUSE:Factory 
checked in at 2024-03-20 21:12:50

Comparing /work/SRC/openSUSE:Factory/libshumate (Old)
 and  /work/SRC/openSUSE:Factory/.libshumate.new.1905 (New)


Package is "libshumate"

Wed Mar 20 21:12:50 2024 rev:12 rq:1159552 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/libshumate/libshumate.changes2024-02-18 
20:22:27.616474898 +0100
+++ /work/SRC/openSUSE:Factory/.libshumate.new.1905/libshumate.changes  
2024-03-20 21:13:48.352760358 +0100
@@ -1,0 +2,46 @@
+Sat Mar 16 09:31:19 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.2.0:
+  + Use g_assert_true instead of g_assert in tests.
+  + Updated translations.
+
+---
+Tue Mar  5 07:59:25 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.2.rc2:
+  + Fix regression in vector renderer with the latest optimizations
+causing the hightway shield renderer in Maps not showing
+shields.
+  + Fix compiling new tests with gcc using
+-Wimplicit-function-declaration.
+  + Updated translations.
+
+---
+Mon Mar  4 07:34:51 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.2.rc:
+  + Performance improvements to the vector renderer.
+  + Remove undefined tile API.
+  + Fix zooming with smooth scrolling mice.
+  + Updated translations.
+
+---
+Sun Feb 18 15:37:05 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.2.beta:
+  + Fix artifacts in NGL renderer.
+  + Don't crash in vector reader if key is NULL.
+  + Enable the vector renderer by default when building (can still
+be disabled if not needed).
+  + Add distance method for Location.
+
+---
+Sat Feb 17 10:18:07 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.2.alpha:
+  + Various vector renderer improvements.
+  + Support continous scroll.
+  + Support arrow key panning.
+- Drop -D libsoup3=true mesom paraameter: no longer supported.
+
+---

Old:

  libshumate-1.1.2.obscpio

New:

  libshumate-1.2.0.obscpio



Other differences:
--
++ libshumate.spec ++
--- /var/tmp/diff_new_pack.FaJQ2T/_old  2024-03-20 21:13:50.000820918 +0100
+++ /var/tmp/diff_new_pack.FaJQ2T/_new  2024-03-20 21:13:50.004821065 +0100
@@ -22,7 +22,7 @@
 %bcond_with profiling
 
 Name:   libshumate
-Version:1.1.2
+Version:1.2.0
 Release:0
 Summary:C library providing a GtkWidget to display maps
 License:Apache-2.0 AND LGPL-2.1-or-later AND BSD-3-Clause AND CC0-1.0 
AND CC-BY-3.0 AND GFDL-1.2-only
@@ -89,7 +89,6 @@
 
 %build
 %meson \
-   -D libsoup3=true \
-D vector_renderer=true \
-D gtk_doc=true \
-D sysprof=%{?with_profiling:enabled}%{!?with_profiling:disabled} \

++ _service ++
--- /var/tmp/diff_new_pack.FaJQ2T/_old  2024-03-20 21:13:50.024821800 +0100
+++ /var/tmp/diff_new_pack.FaJQ2T/_new  2024-03-20 21:13:50.028821947 +0100
@@ -4,7 +4,7 @@
 https://gitlab.gnome.org/GNOME/libshumate.git
 git
 @PARENT_TAG@+@TAG_OFFSET@
-refs/tags/1.1.2
+1.2.0
 (.*)\+0
 \1
   

++ libshumate-1.1.2.obscpio -> libshumate-1.2.0.obscpio ++
 10249 lines of diff (skipped)

++ libshumate.obsinfo ++
--- /var/tmp/diff_new_pack.FaJQ2T/_old  2024-03-20 21:13:50.216828855 +0100
+++ /var/tmp/diff_new_pack.FaJQ2T/_new  2024-03-20 21:13:50.220829003 +0100
@@ -1,5 +1,5 @@
 name: libshumate
-version: 1.1.2
-mtime: 1698869336
-commit: eeb257ab8cfca9133ec2e7da739d3ce815be7067
+version: 1.2.0
+mtime: 1710576260
+commit: 14434008eb5da2b382e93704e099c2d6f171ebd7
 


commit libhandy for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libhandy for openSUSE:Factory 
checked in at 2024-03-20 21:12:27

Comparing /work/SRC/openSUSE:Factory/libhandy (Old)
 and  /work/SRC/openSUSE:Factory/.libhandy.new.1905 (New)


Package is "libhandy"

Wed Mar 20 21:12:27 2024 rev:30 rq:1159531 version:1.8.3

Changes:

--- /work/SRC/openSUSE:Factory/libhandy/libhandy.changes2023-03-07 
16:49:26.773304139 +0100
+++ /work/SRC/openSUSE:Factory/.libhandy.new.1905/libhandy.changes  
2024-03-20 21:13:22.871824025 +0100
@@ -1,0 +2,9 @@
+Mon Feb 12 15:20:56 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 1.8.3:
+  + HdyStyleManager:
+- Support contrast setting in the settings portal.
+- Remove an extra unref.
+  + Updated translations.
+
+---

Old:

  libhandy-1.8.2.tar.xz

New:

  _service
  libhandy-1.8.3.obscpio
  libhandy.obsinfo



Other differences:
--
++ libhandy.spec ++
--- /var/tmp/diff_new_pack.KvuEsL/_old  2024-03-20 21:13:23.631851954 +0100
+++ /var/tmp/diff_new_pack.KvuEsL/_new  2024-03-20 21:13:23.635852101 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libhandy
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,13 +22,13 @@
 %define with_glade 1
 
 Name:   libhandy
-Version:1.8.2
+Version:1.8.3
 Release:0
 Summary:A GTK+ library to develop UI for mobile devices
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:https://gitlab.gnome.org/GNOME/libhandy
-Source0:
https://download.gnome.org/sources/libhandy/1.8/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  meson >= 0.49.0
 BuildRequires:  pkgconfig

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/libhandy.git
1.8.3
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ libhandy.obsinfo ++
name: libhandy
version: 1.8.3
mtime: 1707485351
commit: 9b0071408ce86a3ef843806fddd723a85f6f2416


commit uhttpmock for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package uhttpmock for openSUSE:Factory 
checked in at 2024-03-20 21:12:35

Comparing /work/SRC/openSUSE:Factory/uhttpmock (Old)
 and  /work/SRC/openSUSE:Factory/.uhttpmock.new.1905 (New)


Package is "uhttpmock"

Wed Mar 20 21:12:35 2024 rev:11 rq:1159537 version:0.10.0

Changes:

--- /work/SRC/openSUSE:Factory/uhttpmock/uhttpmock.changes  2022-10-13 
15:45:23.079117355 +0200
+++ /work/SRC/openSUSE:Factory/.uhttpmock.new.1905/uhttpmock.changes
2024-03-20 21:13:33.092199588 +0100
@@ -1,0 +2,8 @@
+Tue Mar  5 08:23:46 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 0.10.0:
+  + Bugs fixed:
+- Add PATCH request method.
+- Add CONNECT request method.
+
+---

Old:

  uhttpmock-0.9.0.tar.bz2

New:

  uhttpmock-0.10.0.tar.bz2



Other differences:
--
++ uhttpmock.spec ++
--- /var/tmp/diff_new_pack.d2227A/_old  2024-03-20 21:13:33.560216785 +0100
+++ /var/tmp/diff_new_pack.d2227A/_new  2024-03-20 21:13:33.560216785 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package uhttpmock
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 # Copyright (c) 2013 Dominique Leuenberger, Amsterdam, The Netherlands.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   uhttpmock
-Version:0.9.0
+Version:0.10.0
 Release:0
 Summary:HTTP web service mocking library
 License:LGPL-2.1-or-later

++ uhttpmock-0.9.0.tar.bz2 -> uhttpmock-0.10.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uhttpmock-0.9.0/NEWS new/uhttpmock-0.10.0/NEWS
--- old/uhttpmock-0.9.0/NEWS2022-09-28 14:44:47.0 +0200
+++ new/uhttpmock-0.10.0/NEWS   2024-03-04 11:08:55.0 +0100
@@ -1,3 +1,11 @@
+Overview of changes from uhttpmock 0.9.0 to uhttpmock 0.10.0
+
+
+* Bugs fixed:
+  - !11 Add PATCH request method
+  - !12 Add CONNECT request method
+
+
 Overview of changes from uhttpmock 0.5.5 to uhttpmock 0.9.0
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uhttpmock-0.9.0/libuhttpmock/uhm-server.c 
new/uhttpmock-0.10.0/libuhttpmock/uhm-server.c
--- old/uhttpmock-0.9.0/libuhttpmock/uhm-server.c   2022-09-28 
14:44:47.0 +0200
+++ new/uhttpmock-0.10.0/libuhttpmock/uhm-server.c  2024-03-04 
11:08:55.0 +0100
@@ -844,6 +844,12 @@
} else if (strncmp (trace, "PUT", strlen ("PUT")) == 0) {
method = SOUP_METHOD_PUT;
trace += strlen ("PUT");
+   } else if (strncmp (trace, "PATCH", strlen ("PATCH")) == 0) {
+   method = "PATCH";
+   trace += strlen ("PATCH");
+   } else if (strncmp (trace, "CONNECT", strlen ("CONNECT")) == 0) {
+   method = "CONNECT";
+   trace += strlen ("CONNECT");
} else {
g_warning ("Unknown method ‘%s’.", trace);
goto error;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uhttpmock-0.9.0/meson.build 
new/uhttpmock-0.10.0/meson.build
--- old/uhttpmock-0.9.0/meson.build 2022-09-28 14:44:47.0 +0200
+++ new/uhttpmock-0.10.0/meson.build2024-03-04 11:08:55.0 +0100
@@ -1,5 +1,5 @@
 project('uhttpmock', 'c',
-  version: '0.9.0',
+  version: '0.10.0',
   default_options: [
 'warning_level=2',
 'c_std=gnu99',


commit libgedit-gtksourceview for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libgedit-gtksourceview for 
openSUSE:Factory checked in at 2024-03-20 21:12:39

Comparing /work/SRC/openSUSE:Factory/libgedit-gtksourceview (Old)
 and  /work/SRC/openSUSE:Factory/.libgedit-gtksourceview.new.1905 (New)


Package is "libgedit-gtksourceview"

Wed Mar 20 21:12:39 2024 rev:3 rq:1159541 version:299.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libgedit-gtksourceview/libgedit-gtksourceview.changes
2023-09-20 13:21:30.238124872 +0200
+++ 
/work/SRC/openSUSE:Factory/.libgedit-gtksourceview.new.1905/libgedit-gtksourceview.changes
  2024-03-20 21:13:35.744297042 +0100
@@ -1,0 +2,20 @@
+Fri Feb 16 07:36:08 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 299.1.0:
+  + Continue to rework GtkSourceStyle* classes.
+This includes a switch from the libxml2 to GMarkupParser.
+(the libxml2 is still used for *.lang files though).
+  + Style schemes XML file format:
+- Simplify it.
+- Better document it.
+- Extend it with the "kind" attribute, for light/dark schemes.
+- Remove the *.rng file.
+  + Unit tests:
+- Don't rely on environment variables to be set to run the
+  tests.
+- Have good code coverage for what has been modified or added.
+- Changes from version 299.0.5:
+  + Fix a bug: Alt+Down (moving line(s) down) or Alt+Up (moving
+line(s) up) wrt. the undo/redo history and cursor positioning.
+
+---

Old:

  libgedit-gtksourceview-299.0.4.tar.xz

New:

  _service
  libgedit-gtksourceview-299.1.0.obscpio
  libgedit-gtksourceview.obsinfo



Other differences:
--
++ libgedit-gtksourceview.spec ++
--- /var/tmp/diff_new_pack.TG5Hkg/_old  2024-03-20 21:13:37.928377300 +0100
+++ /var/tmp/diff_new_pack.TG5Hkg/_new  2024-03-20 21:13:37.944377888 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libgedit-gtksourceview
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,12 +17,12 @@
 
 
 Name:   libgedit-gtksourceview
-Version:299.0.4
+Version:299.1.0
 Release:0
 Summary:Source code editing widget
 License:LGPL-2.1-or-later
 URL:https://gedit-technology.net/
-Source: 
https://gedit-technology.net/tarballs/%{name}/%{name}-%{version}.tar.xz
+Source: %{name}-%{version}.tar.zst
 BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig

++ _service ++


  
git
https://github.com/gedit-technology/libgedit-gtksourceview.git
299.1.0
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ libgedit-gtksourceview.obsinfo ++
name: libgedit-gtksourceview
version: 299.1.0
mtime: 1708025664
commit: b271a625ca057cc3fa7d5ac83285c5d4e038202e


commit libmanette for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libmanette for openSUSE:Factory 
checked in at 2024-03-20 21:12:33

Comparing /work/SRC/openSUSE:Factory/libmanette (Old)
 and  /work/SRC/openSUSE:Factory/.libmanette.new.1905 (New)


Package is "libmanette"

Wed Mar 20 21:12:33 2024 rev:9 rq:1159536 version:0.2.7

Changes:

--- /work/SRC/openSUSE:Factory/libmanette/libmanette.changes2021-04-12 
12:39:03.553487474 +0200
+++ /work/SRC/openSUSE:Factory/.libmanette.new.1905/libmanette.changes  
2024-03-20 21:13:31.092126092 +0100
@@ -1,0 +2,13 @@
+Mon Feb 12 15:16:05 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 0.2.7:
+  + Allow building as a static library.
+  + ManetteMappingManager: Strip leading and trailing spaces from
+mappings.
+  + ManetteMonitor:
+- Always use file backend in Flatpak.
+- Skip non-evdev devices.
+- Fix object construction.
+  + Various cleanups.
+
+---

Old:

  libmanette-0.2.6.tar.xz

New:

  _service
  libmanette-0.2.7.obscpio
  libmanette.obsinfo



Other differences:
--
++ libmanette.spec ++
--- /var/tmp/diff_new_pack.2h1eE2/_old  2024-03-20 21:13:31.964158136 +0100
+++ /var/tmp/diff_new_pack.2h1eE2/_new  2024-03-20 21:13:31.964158136 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmanette
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,13 @@
 %define package_version 0_2-0
 
 Name:   libmanette
-Version:0.2.6
+Version:0.2.7
 Release:0
 Summary:A simple GObject game controller library
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 URL:https://gnome.pages.gitlab.gnome.org/libmanette/
-Source: 
https://download.gnome.org/sources/libmanette/0.2/%{name}-%{version}.tar.xz
+Source: %{name}-%{version}.tar.zst
 Source99:   baselibs.conf
 BuildRequires:  gcc
 BuildRequires:  gobject-introspection-devel >= 0.6.7

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/libmanette.git
0.2.7
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ libmanette.obsinfo ++
name: libmanette
version: 0.2.7
mtime: 1707482626
commit: 27554bd118c08141134d4147cc34794057eb36e2


commit libgtop for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libgtop for openSUSE:Factory checked 
in at 2024-03-20 21:12:42

Comparing /work/SRC/openSUSE:Factory/libgtop (Old)
 and  /work/SRC/openSUSE:Factory/.libgtop.new.1905 (New)


Package is "libgtop"

Wed Mar 20 21:12:42 2024 rev:64 rq:1159543 version:2.41.3

Changes:

--- /work/SRC/openSUSE:Factory/libgtop/libgtop.changes  2022-12-21 
16:06:18.118444920 +0100
+++ /work/SRC/openSUSE:Factory/.libgtop.new.1905/libgtop.changes
2024-03-20 21:13:41.448506651 +0100
@@ -1,0 +2,33 @@
+Mon Feb 19 17:35:45 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 2.41.3:
+  + Fixed daemon buffer overflow.
+  + Updated translations.
+
+---
+Tue Jan 16 12:40:28 UTC 2024 - Dominique Leuenberger 
+
+- Convert to source service for easier updating.
+- Add libtool, gtk-doc, makeinfo and util-linux-systemd
+  BuildRequires and call autogen.sh: git checked out sources are
+  not bootstrapped.
+
+---
+Sun Oct 15 15:14:59 UTC 2023 - Bjørn Lie 
+
+- Update to version 2.41.2:
+  + Change disk example read/write unit to bytes
+  + Fixed potential Buffer overflow when reading disk stats
+  + Changed disk read/write unit to bytes in example
+- Changes from version 2.41.1:
+  + Skip loop and rom devices
+  + Allow building with gettext >= 0.20
+  + Updated translations.
+- Replace glib2-devel with pkgconfig(glib-2.0) BuildRequires: Align
+  with what configure checks for.
+- Use autosetup and ldconfig_scriptlets macros.
+- Build the doc sub-package as noarch.
+- Add permissions PreReq and set_permissions and verify_permissions
+  macros in post and verifyscript sections.
+
+---

Old:

  libgtop-2.40.0.tar.xz

New:

  _service
  libgtop-2.41.3.obscpio
  libgtop.obsinfo



Other differences:
--
++ libgtop.spec ++
--- /var/tmp/diff_new_pack.T0Xnpm/_old  2024-03-20 21:13:41.936524584 +0100
+++ /var/tmp/diff_new_pack.T0Xnpm/_new  2024-03-20 21:13:41.940524732 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libgtop
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,18 +18,23 @@
 
 %define sover 11
 Name:   libgtop
-Version:2.40.0
+Version:2.41.3
 Release:0
 Summary:System status information library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:https://developer.gnome.org/libgtop/stable/
-Source: 
https://download.gnome.org/sources/libgtop/2.40/%{name}-%{version}.tar.xz
-BuildRequires:  glib2-devel
+Source: %{name}-%{version}.tar.zst
 BuildRequires:  gobject-introspection-devel
+BuildRequires:  gtk-doc
+BuildRequires:  libtool
+BuildRequires:  makeinfo
 BuildRequires:  pkgconfig
+BuildRequires:  util-linux-systemd
+BuildRequires:  pkgconfig(glib-2.0) >= 2.6.0
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.26.0
 BuildRequires:  pkgconfig(xau)
+PreReq: permissions
 
 %description
 A library that fetches information about the running system, such as
@@ -88,6 +93,7 @@
 Requires:   libgtop-2_0-%{sover} = %{version}
 # FIXME: use proper Requires(pre/post/preun/...)
 PreReq: /sbin/install-info
+BuildArch:  noarch
 
 %description doc
 A library that fetches information about the running system, such as
@@ -100,9 +106,10 @@
 %lang_package
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
+NOCONFIGURE=1 ./autogen.sh
 %configure\
--disable-static
 %make_build
@@ -112,8 +119,7 @@
 find %{buildroot} -type f -name "*.la" -delete -print
 %find_lang %{name} %{?no_lang_C}
 
-%post -n libgtop-2_0-%{sover} -p /sbin/ldconfig
-%postun -n libgtop-2_0-%{sover} -p /sbin/ldconfig
+%ldconfig_scriptlets -n libgtop-2_0-%{sover}
 
 %preun doc
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}2.info.gz
@@ -121,11 +127,17 @@
 %post doc
 %install_info --info-dir=%{_infodir} %{_infodir}/%{name}2.info.gz
 
+%post
+%set_permissions /usr/libexec/libgtop_server2
+
+%verifyscript
+%verify_permissions -e /usr/libexec/libgtop_server2
+
 %files lang -f %{name}.lang
 
 %files
-%{_bindir}/libgtop_daemon2
-%{_bindir}/libgtop_server2
+%{_libexecdir}/libgtop_server2
+%{_libexecdir}/libgtop_daemon2
 
 %files -n libgtop-2_0-%{sover}
 %license COPYING
@@ -140,7 +152,6 @@
 %{_libdir}/*.so
 %{_libdir}/pkgconfig/*.pc
 %{_datadir}/gir-1.0/GTop-2.0.gir
-%doc %{_datadir}/gtk-doc/html/libgtop/
 
 %files doc
 %{_infodir}/*.info*


commit webkit2gtk3 for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package webkit2gtk3 for openSUSE:Factory 
checked in at 2024-03-20 21:13:06

Comparing /work/SRC/openSUSE:Factory/webkit2gtk3 (Old)
 and  /work/SRC/openSUSE:Factory/.webkit2gtk3.new.1905 (New)


Package is "webkit2gtk3"

Wed Mar 20 21:13:06 2024 rev:190 rq:1159578 version:2.44.0

Changes:

--- /work/SRC/openSUSE:Factory/webkit2gtk3/webkit2gtk3.changes  2024-02-22 
20:59:40.517706567 +0100
+++ /work/SRC/openSUSE:Factory/.webkit2gtk3.new.1905/webkit2gtk3.changes
2024-03-20 21:14:02.373275561 +0100
@@ -1,0 +2,68 @@
+Mon Mar 18 12:15:24 UTC 2024 - Dominique Leuenberger 
+
+- Add webkit2gtk3-271108.patch: Fix build on 32bit archs
+  (https://bugs.webkit.org/show_bug.cgi?id=271108).
+
+---
+Sat Mar 16 09:36:58 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 2.44.0:
+  + Make the DOM accessibility tree reachable from UI process with
+GTK4.
+  + Removed the X11 and WPE renderers in favor of DMA-BUF.
+  + Improved vblank synchronization when rendering.
+  + Removed key event reinjection in GTK4 to make keyboard
+shortcuts work in web sites.
+  + Fix gamepads detection by correctly handling focused window in
+GTK4.
+- Rebase webkit2gtk3-disable-dmabuf-nvidia.patch.
+
+---
+Tue Mar  5 16:20:56 UTC 2024 - Dominique Leuenberger 
+
+- baselibs.conf: Do not build libjavascriptcoregtk-4_1-0-32bit and
+  libwebkit2gtk-4_1-0-32bit: they are not used, and in fact not
+  built in Factory (build excluded).
+
+---
+Thu Feb 29 13:15:27 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 2.43.4:
+  + Remove key event reinjection in GTK4 to make keyboard shortcuts
+work in web sites.
+  + Use the new GTK API to create a GdkTexture from a DMA-BUF
+buffer when available.
+  + Fix rendering when GTK is using the vulkan renderer.
+  + Fix gamepads detection by correctly handling focused window in
+GTK4.
+  + Fix rendering after history navigation.
+  + Write bwrapinfo.json to disk for xdg-desktop-portal.
+  + Fixed several memory leaks in media backend.
+  + Fix several crashes and rendering issues.
+- Changes from version 2.43.3:
+  + Show vblank monitor information in webkit://gpu.
+  + Fallback to timer based vblank monitor if drmWaitVBlank fails.
+  + Fix several memory leaks in media backend.
+  + Fix several crashes and rendering issues.
+- Changes from version 2.43.2?
+  + Remove the X11 and WPE renderers.
+  + Release unused buffers when the view is hidden.
+  + Fix flickering while playing videos with DMA-BUF sink.
+  + Do not special case the "sans" font family name.
+  + Fix webkit_web_context_allow_tls_certificate_for_host() for
+IPv6 URIs produced by SoupURI.
+  + Fix several crashes and rendering issues.
+- Changes from version WebKitGTK 2.43.1?
+  + Improve vblank synchronization when rendering.
+  + Improve DMA-BUF buffers handling for video frames.
+  + Use the buffer format preferred by the driver in DMA-BUF
+renderer.
+  + Do not block the compositing thread waiting for rendering
+threads.
+  + Improve performance when scaling images in a canvas.
+  + Fix several crashes and rendering issues.
+  + Updated translations.
+- Drop webkit2gtk3-create-destroy-egl-image.patch: fixed upstream.
+- Add libbacktrace-devel BuildRequires (for gtk4 flavor).
+
+---

Old:

  webkit2gtk3-create-destroy-egl-image.patch
  webkitgtk-2.42.5.tar.xz
  webkitgtk-2.42.5.tar.xz.asc

New:

  webkit2gtk3-271108.patch
  webkitgtk-2.44.0.tar.xz
  webkitgtk-2.44.0.tar.xz.asc

BETA DEBUG BEGIN:
  Old:  + Updated translations.
- Drop webkit2gtk3-create-destroy-egl-image.patch: fixed upstream.
- Add libbacktrace-devel BuildRequires (for gtk4 flavor).
BETA DEBUG END:

BETA DEBUG BEGIN:
  New:
- Add webkit2gtk3-271108.patch: Fix build on 32bit archs
  (https://bugs.webkit.org/show_bug.cgi?id=271108).
BETA DEBUG END:



Other differences:
--
++ webkit2gtk3.spec ++
--- /var/tmp/diff_new_pack.1Dnr5W/_old  2024-03-20 21:14:05.505390656 +0100
+++ /var/tmp/diff_new_pack.1Dnr5W/_new  2024-03-20 21:14:05.521391244 +0100
@@ -70,12 +70,13 @@
 %define _usesoup2 0
 %define _wk2sover6api -6_0-4
 %define _soverlj6api -6_0-1
+%define _with_backtrace 1
 %endif
 
 Name:   webkit2%{_gtknamesuffix}
 ### FIXME ### Drop the disabling of LTO on next release/versionbump
 %define _lto_cflags %{nil}
-Version:2.42.5
+Version:2.44.0
 Release:0
 Summary:Library for rendering web content,

commit gnome-shell-extensions for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-shell-extensions for 
openSUSE:Factory checked in at 2024-03-20 21:13:14

Comparing /work/SRC/openSUSE:Factory/gnome-shell-extensions (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.1905 (New)


Package is "gnome-shell-extensions"

Wed Mar 20 21:13:14 2024 rev:135 rq:1159760 version:46.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-shell-extensions/gnome-shell-extensions.changes
2023-12-06 23:49:09.169284924 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.1905/gnome-shell-extensions.changes
  2024-03-20 21:14:12.645653034 +0100
@@ -1,0 +2,44 @@
+Sun Mar 17 09:29:12 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + system-monitor: Fix net speed.
+  + Misc. bug fixes and cleanups.
+  + Updated translations.
+
+---
+Mon Mar  4 08:33:42 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Fix window previews in workspace indicator.
+  + Fix menu ornament in workspace indicator.
+  + Misc. bug fixes and cleanups.
+  + Updated translations.
+
+---
+Mon Feb 12 16:36:03 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + apps-menu: Rename Applications to Apps.
+  + Misc. bug fixes and cleanups.
+
+---
+Tue Jan 16 20:34:46 UTC 2024 - Muhammad Akbar Yanuar Mantari 
+
+- Enable system-monitor extension.
+
+---
+Tue Jan 16 13:16:40 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + workspace-indicator: Fix initial preview visibility.
+  + screenshot-window-sizer: Fix cycling between sizes backwards.
+  + Add back overview in Classic session.
+  + Allow running Classic session headless.
+  + window-list: Fix buttons not being clickable at the screen
+edge.
+  + Add system-monitor extension.
+  + Fixed crash.
+  + Misc. bug fixes and cleanups.
+- Convert to source service for easier updating.
+
+---

Old:

  gnome-shell-extensions-45.2.tar.xz

New:

  _service
  gnome-shell-extensions-46.0.obscpio
  gnome-shell-extensions.obsinfo



Other differences:
--
++ gnome-shell-extensions.spec ++
--- /var/tmp/diff_new_pack.MBqKx6/_old  2024-03-20 21:14:13.245675083 +0100
+++ /var/tmp/diff_new_pack.MBqKx6/_new  2024-03-20 21:14:13.245675083 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-shell-extensions
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 # Copyright (c) 2011 Dominique Leuenberger, Amsterdam, The Netherlands
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,13 +19,13 @@
 
 %global __requires_exclude typelib\\(Meta\\)
 Name:   gnome-shell-extensions
-Version:45.2
+Version:46.0
 Release:0
 Summary:A collection of extensions for GNOME Shell
 License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
 URL:https://wiki.gnome.org/Projects/GnomeShell/Extensions
-Source0:
https://download.gnome.org/sources/gnome-shell-extensions/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 Source1:README.SUSE
 
 # PATCH-FEATURE-OPENSUSE gnome-shell-add-app-to-desktop.patch bnc#870580 
dli...@suse.com --  allow adding app shortcut to desktop easily.
@@ -91,10 +91,19 @@
 This extension allows the user to switch to different themes. It's possible
 to pick system installed themes or even themes installed in the user's home.
 
+%package -n gnome-shell-extension-system-monitor
+Summary:System monitor for GNOME Shell
+Group:  System/GUI/GNOME
+BuildArch:  noarch
+Recommends: gnome-system-monitor
+
+%description -n gnome-shell-extension-system-monitor
+This GNOME Shell extension displays system usage information in the top bar.
+
 %lang_package -n %{name}-common
 
 %prep
-%setup -q
+%autosetup -N
 # Needs rebase
 #patch1 -p1
 
@@ -109,7 +118,7 @@
 %meson \
 -D classic_mode=true \
 -D extension_set=classic \
--D 
enable_extensions="apps-menu,places-menu,launch-new-instance,window-list,workspace-indicator,user-theme"
+-D 
enable_extensions="apps-menu,places-menu,launch-new-instance,window-list,workspace-indicator,user-theme,system-monitor"
 %meson_build
 
 %install
@@ -161,5 +170,10 @@
 
%{_datadir}/gnome-shell/extensions/user-th...@gnome-shell-extensions.gcampax.github.com/
 %{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.user-theme.gschema.xml
 

commit gcr for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gcr for openSUSE:Factory checked in 
at 2024-03-20 21:12:43

Comparing /work/SRC/openSUSE:Factory/gcr (Old)
 and  /work/SRC/openSUSE:Factory/.gcr.new.1905 (New)


Package is "gcr"

Wed Mar 20 21:12:43 2024 rev:48 rq:1159544 version:4.2.1

Changes:

--- /work/SRC/openSUSE:Factory/gcr/gcr.changes  2023-11-29 21:19:39.810809396 
+0100
+++ /work/SRC/openSUSE:Factory/.gcr.new.1905/gcr.changes2024-03-20 
21:13:42.720553395 +0100
@@ -1,0 +2,18 @@
+Mon Mar  4 07:42:58 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 4.2.1:
+  + gcr-ssh-agent: set `SSH_AUTH_SOCK`.
+  + gcr-ssh-agent: port avoid deadlock fix.
+  + Updated translations.
+
+---
+Mon Feb 12 16:54:35 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 4.2.0:
+  + gcr-ssh-agent: add command line options to gcr-ssh-agent.
+  + gcr-ssh-agent: Fix memory leak spotted by ASan.
+  + gcr-ssh-agent: Port memory safety fixes from gnome-keyring
+ssh-agent.
+  + Updated translations.
+
+---

Old:

  gcr-4.1.0.tar.xz

New:

  _service
  gcr-4.2.1.obscpio
  gcr.obsinfo



Other differences:
--
++ gcr.spec ++
--- /var/tmp/diff_new_pack.db5HTx/_old  2024-03-20 21:13:43.272573679 +0100
+++ /var/tmp/diff_new_pack.db5HTx/_new  2024-03-20 21:13:43.272573679 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gcr
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   gcr
-Version:4.1.0
+Version:4.2.1
 Release:0
 # FIXME: Verify if the requires in typelib-1_0-Gcr-4 is still correct and 
required (see bgo#725501).
 Summary:Library for Crypto UI related tasks
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:http://www.gnome.org
-Source0:
https://download.gnome.org/sources/gcr/4.1/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 Source1:baselibs.conf
 # PATCH-FIX-SLE gcr-bsc932232-use-libgcrypt-allocators.patch bsc#932232 
h...@suse.com -- use libgcrypt allocators for FIPS mode
 Patch1: gcr-bsc932232-use-libgcrypt-allocators.patch

++ _service ++


  
git
https://gitlab.gnome.org/GNOME/gcr.git
4.2.1
@PARENT_TAG@+@TAG_OFFSET@
v?(.*)\+0
\1

  
  
  
*.tar
zst
  
  



++ gcr.obsinfo ++
name: gcr
version: 4.2.1
mtime: 1709382912
commit: 7f9dfb291ac475beac911c3868bebd4561267a82


commit gnome-initial-setup for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-initial-setup for 
openSUSE:Factory checked in at 2024-03-20 21:13:16

Comparing /work/SRC/openSUSE:Factory/gnome-initial-setup (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-initial-setup.new.1905 (New)


Package is "gnome-initial-setup"

Wed Mar 20 21:13:16 2024 rev:29 rq:1159765 version:46.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-initial-setup/gnome-initial-setup.changes  
2023-11-07 21:25:27.925540450 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-initial-setup.new.1905/gnome-initial-setup.changes
2024-03-20 21:14:15.701765334 +0100
@@ -1,0 +2,44 @@
+Sun Mar 17 09:33:20 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.0:
+  + Updated translations.
+
+---
+Wed Mar  6 13:12:29 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.rc:
+  + Bugs fixed:
+- The text direction is now correctly updated when switching
+  between left-to-right and right-to-left locales.
+  + Updated translations.
+- Drop pkgconfig(gtk+-3.0) BuildRequires: no longer needed since
+  version 43.beta.
+- Add explciit pkgconfig(gtk4) BuildRequires: indirectly pulled in
+  via libnma-gtk4, but we want it explicit.
+
+---
+Mon Feb 12 17:09:08 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.beta:
+  + Avatars are now generated using HdyAvatar.
+  + The Welcome page image is now more appropriately sized and not
+cropped.
+  + The Welcome page now uses PRETTY_NAME from os-release rather
+than combining the NAME + VERSION_ID fields.
+  + The summary page no longer expresses our collective hope that
+users love GNOME, reducing the overall exuberance of the page.
+
+---
+Thu Jan 18 17:03:49 UTC 2024 - Dominique Leuenberger 
+
+- Update to version 46.alpha:
+  + GNOME Online Accounts integration has been removed.
+  + The WebKitGTK dependency is now optional.
+  + Bugs fixed:
+- The Initial Setup window can no longer be closed with Alt+F4,
+  leaving the user with no way to recover.
+- The avatar picker no longer logs a vast number of criticals,
+   which were triggered by a GLib change.
+  + Updated translations.
+
+---
@@ -166,0 +211 @@
+

Old:

  gnome-initial-setup-45.0.tar.xz

New:

  _service
  gnome-initial-setup-46.0.obscpio
  gnome-initial-setup.obsinfo



Other differences:
--
++ gnome-initial-setup.spec ++
--- /var/tmp/diff_new_pack.wMBage/_old  2024-03-20 21:14:16.201783709 +0100
+++ /var/tmp/diff_new_pack.wMBage/_new  2024-03-20 21:14:16.205783855 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-initial-setup
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-initial-setup
-Version:45.0
+Version:46.0
 Release:0
 Summary:GNOME Initial Setup Assistant
 License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
 URL:https://wiki.gnome.org/Design/OS/InitialSetup
-Source0:
https://download.gnome.org/sources/gnome-initial-setup/45/%{name}-%{version}.tar.xz
+Source0:%{name}-%{version}.tar.zst
 
 BuildRequires:  krb5-devel
 BuildRequires:  meson >= 0.53.0
@@ -34,7 +34,7 @@
 BuildRequires:  pkgconfig(accountsservice)
 BuildRequires:  pkgconfig(fontconfig)
 BuildRequires:  pkgconfig(gdm) >= 3.8.3
-BuildRequires:  pkgconfig(geocode-glib-2.0)
+BuildRequires:  pkgconfig(geocode-glib-2.0) >= 2.6.0
 BuildRequires:  pkgconfig(gio-unix-2.0) >= 2.53.0
 BuildRequires:  pkgconfig(gnome-desktop-4)
 BuildRequires:  pkgconfig(goa-1.0)
@@ -42,7 +42,7 @@
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 3.37.1
 BuildRequires:  pkgconfig(gstreamer-1.0)
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.11.3
+BuildRequires:  pkgconfig(gtk4) >= 4.10
 BuildRequires:  pkgconfig(gweather4)
 BuildRequires:  pkgconfig(ibus-1.0) >= 1.4.99
 BuildRequires:  pkgconfig(iso-codes)
@@ -107,7 +107,7 @@
 %{_datadir}/polkit-1/rules.d/20-gnome-initial-setup.rules
 %{_libexecdir}/gnome-initial-setup
 %{_libexecdir}/gnome-initial-setup-copy-worker
-%{_libexecdir}/gnome-initial-setup-goa-helper
+
 %dir %{_datadir}/dconf
 %dir %{_datadir}/dconf/profile
 %{_datadir}/dconf/profile/gnome-initial-setup

++ _service ++


  
git
https://gitlab.gn

commit libqt5-qtlocation for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtlocation for 
openSUSE:Factory checked in at 2024-03-20 21:13:23

Comparing /work/SRC/openSUSE:Factory/libqt5-qtlocation (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtlocation.new.1905 (New)


Package is "libqt5-qtlocation"

Wed Mar 20 21:13:23 2024 rev:59 rq:1159422 version:5.15.13+kde6

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtlocation/libqt5-qtlocation.changes  
2024-01-04 15:54:56.247126888 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtlocation.new.1905/libqt5-qtlocation.changes
2024-03-20 21:14:38.630607887 +0100
@@ -1,0 +2,7 @@
+Tue Mar 19 09:58:11 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde6, rebased upstream:
+  * QtPositioning: add GnssStatus support for android plugin
+  * Bump version to 5.15.13
+
+---

Old:

  qtlocation-everywhere-src-5.15.12+kde6.obscpio

New:

  qtlocation-everywhere-src-5.15.13+kde6.obscpio



Other differences:
--
++ libqt5-qtlocation.spec ++
--- /var/tmp/diff_new_pack.7FsJVq/_old  2024-03-20 21:14:41.534714603 +0100
+++ /var/tmp/diff_new_pack.7FsJVq/_new  2024-03-20 21:14:41.538714749 +0100
@@ -22,11 +22,11 @@
 %define qt5_snapshot 1
 %define libname libQt5Positioning5
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtlocation-everywhere-src-%{version}
 Name:   libqt5-qtlocation
-Version:5.15.12+kde6
+Version:5.15.13+kde6
 Release:0
 Summary:Qt 5 Location Library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.7FsJVq/_old  2024-03-20 21:14:41.582716366 +0100
+++ /var/tmp/diff_new_pack.7FsJVq/_new  2024-03-20 21:14:41.582716366 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtlocation.git
git
qtlocation-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.7FsJVq/_old  2024-03-20 21:14:41.606717249 +0100
+++ /var/tmp/diff_new_pack.7FsJVq/_new  2024-03-20 21:14:41.606717249 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtlocation.git
-  5b27b8921f1f2de93573df903c47aee634209f80
+  c576985da4e6a4a0b85d5229263777e7197494e0
 (No newline at EOF)
 

++ qtlocation-everywhere-src-5.15.12+kde6.obscpio -> 
qtlocation-everywhere-src-5.15.13+kde6.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtlocation/qtlocation-everywhere-src-5.15.12+kde6.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtlocation.new.1905/qtlocation-everywhere-src-5.15.13+kde6.obscpio
 differ: char 49, line 1

++ qtlocation-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.7FsJVq/_old  2024-03-20 21:14:41.654719012 +0100
+++ /var/tmp/diff_new_pack.7FsJVq/_new  2024-03-20 21:14:41.658719159 +0100
@@ -1,5 +1,5 @@
 name: qtlocation-everywhere-src
-version: 5.15.12+kde6
-mtime: 1703803143
-commit: 5b27b8921f1f2de93573df903c47aee634209f80
+version: 5.15.13+kde6
+mtime: 1710404490
+commit: c576985da4e6a4a0b85d5229263777e7197494e0
 


commit libqt5-qtcharts for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtcharts for openSUSE:Factory 
checked in at 2024-03-20 21:13:19

Comparing /work/SRC/openSUSE:Factory/libqt5-qtcharts (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtcharts.new.1905 (New)


Package is "libqt5-qtcharts"

Wed Mar 20 21:13:19 2024 rev:27 rq:1159412 version:5.15.13+kde0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtcharts/libqt5-qtcharts.changes  
2024-01-04 15:54:41.822599951 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtcharts.new.1905/libqt5-qtcharts.changes
2024-03-20 21:14:23.762061522 +0100
@@ -1,0 +2,8 @@
+Tue Mar 19 09:55:36 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde0, rebased upstream:
+  * Blacklist tst_QBarSeries::mousehovered for sles-15
+  * Bump version to 5.15.13
+  * Update legend marker after setting label text
+
+---

Old:

  qtcharts-everywhere-src-5.15.12+kde0.obscpio

New:

  qtcharts-everywhere-src-5.15.13+kde0.obscpio



Other differences:
--
++ libqt5-qtcharts.spec ++
--- /var/tmp/diff_new_pack.tmMPVU/_old  2024-03-20 21:14:25.082110028 +0100
+++ /var/tmp/diff_new_pack.tmMPVU/_new  2024-03-20 21:14:25.082110028 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5Charts5
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtcharts-everywhere-src-%{version}
 Name:   libqt5-qtcharts
-Version:5.15.12+kde0
+Version:5.15.13+kde0
 Release:0
 Summary:Qt 5 Charts Library
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.tmMPVU/_old  2024-03-20 21:14:25.110111058 +0100
+++ /var/tmp/diff_new_pack.tmMPVU/_new  2024-03-20 21:14:25.114111204 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtcharts.git
git
qtcharts-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.tmMPVU/_old  2024-03-20 21:14:25.130111792 +0100
+++ /var/tmp/diff_new_pack.tmMPVU/_new  2024-03-20 21:14:25.134111940 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtcharts.git
-  393a84ad5b16a9ec93d8a44bebf1ae86e881bc06
+  3f3f14d69a509c3e8027bfb5d7ffca9b4f3ef003
 (No newline at EOF)
 

++ qtcharts-everywhere-src-5.15.12+kde0.obscpio -> 
qtcharts-everywhere-src-5.15.13+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtcharts/qtcharts-everywhere-src-5.15.12+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtcharts.new.1905/qtcharts-everywhere-src-5.15.13+kde0.obscpio
 differ: char 49, line 1

++ qtcharts-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.tmMPVU/_old  2024-03-20 21:14:25.170113263 +0100
+++ /var/tmp/diff_new_pack.tmMPVU/_new  2024-03-20 21:14:25.170113263 +0100
@@ -1,5 +1,5 @@
 name: qtcharts-everywhere-src
-version: 5.15.12+kde0
-mtime: 1697029287
-commit: 393a84ad5b16a9ec93d8a44bebf1ae86e881bc06
+version: 5.15.13+kde0
+mtime: 1704396104
+commit: 3f3f14d69a509c3e8027bfb5d7ffca9b4f3ef003
 


commit libqt5-qtvirtualkeyboard for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtvirtualkeyboard for 
openSUSE:Factory checked in at 2024-03-20 21:13:31

Comparing /work/SRC/openSUSE:Factory/libqt5-qtvirtualkeyboard (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtvirtualkeyboard.new.1905 (New)


Package is "libqt5-qtvirtualkeyboard"

Wed Mar 20 21:13:31 2024 rev:30 rq:1159452 version:5.15.13+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtvirtualkeyboard/libqt5-qtvirtualkeyboard.changes
2024-01-04 15:55:43.968870194 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtvirtualkeyboard.new.1905/libqt5-qtvirtualkeyboard.changes
  2024-03-20 21:15:02.899510773 +0100
@@ -1,0 +2,7 @@
+Tue Mar 19 09:59:57 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde0, rebased upstream:
+  * Disable shadow input cursor blinking while invisible
+  * Bump version to 5.15.13
+
+---

Old:

  qtvirtualkeyboard-everywhere-src-5.15.12+kde0.obscpio

New:

  qtvirtualkeyboard-everywhere-src-5.15.13+kde0.obscpio



Other differences:
--
++ libqt5-qtvirtualkeyboard.spec ++
--- /var/tmp/diff_new_pack.EJGaHs/_old  2024-03-20 21:15:06.007627256 +0100
+++ /var/tmp/diff_new_pack.EJGaHs/_new  2024-03-20 21:15:06.007627256 +0100
@@ -19,15 +19,15 @@
 %define qt5_snapshot 1
 
 Name:   libqt5-qtvirtualkeyboard
-Version:5.15.12+kde0
+Version:5.15.13+kde0
 Release:0
 Summary:Qt 5 Virtual Keyboard
 License:GPL-3.0
 Group:  Development/Libraries/X11
 Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtvirtualkeyboard-everywhere-src-%{version}
 Source: %{tar_version}.tar.xz
 BuildRequires:  libQt5Gui-private-headers-devel >= %{real_version}

++ _service ++
--- /var/tmp/diff_new_pack.EJGaHs/_old  2024-03-20 21:15:06.055629055 +0100
+++ /var/tmp/diff_new_pack.EJGaHs/_new  2024-03-20 21:15:06.059629205 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtvirtualkeyboard.git
git
qtvirtualkeyboard-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.EJGaHs/_old  2024-03-20 21:15:06.091630404 +0100
+++ /var/tmp/diff_new_pack.EJGaHs/_new  2024-03-20 21:15:06.095630554 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtvirtualkeyboard.git
-  8b885af5ad3c2f2ff500c060a41e312ea7276e50
+  80565aa7fc37ecdb1c08e585d4ae3060618e3338
 (No newline at EOF)
 

++ qtvirtualkeyboard-everywhere-src-5.15.12+kde0.obscpio -> 
qtvirtualkeyboard-everywhere-src-5.15.13+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtvirtualkeyboard/qtvirtualkeyboard-everywhere-src-5.15.12+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtvirtualkeyboard.new.1905/qtvirtualkeyboard-everywhere-src-5.15.13+kde0.obscpio
 differ: char 49, line 1

++ qtvirtualkeyboard-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.EJGaHs/_old  2024-03-20 21:15:06.143632353 +0100
+++ /var/tmp/diff_new_pack.EJGaHs/_new  2024-03-20 21:15:06.143632353 +0100
@@ -1,5 +1,5 @@
 name: qtvirtualkeyboard-everywhere-src
-version: 5.15.12+kde0
-mtime: 1697029361
-commit: 8b885af5ad3c2f2ff500c060a41e312ea7276e50
+version: 5.15.13+kde0
+mtime: 1704396139
+commit: 80565aa7fc37ecdb1c08e585d4ae3060618e3338
 


commit libqt5-qtdeclarative for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtdeclarative for 
openSUSE:Factory checked in at 2024-03-20 21:13:20

Comparing /work/SRC/openSUSE:Factory/libqt5-qtdeclarative (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new.1905 (New)


Package is "libqt5-qtdeclarative"

Wed Mar 20 21:13:20 2024 rev:83 rq:1159416 version:5.15.13+kde30

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtdeclarative/libqt5-qtdeclarative.changes
2024-01-04 15:54:46.510771213 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new.1905/libqt5-qtdeclarative.changes
  2024-03-20 21:14:27.834211159 +0100
@@ -1,0 +2,19 @@
+Tue Mar 19 09:55:44 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde30, rebased upstream:
+  * masm: Don't crash on failed MADV_DONTNEED on Linux
+  * Revert "Fix "white line on top and left side of screen" issue"
+  * Doc: Mention QDS and UI files in Best Practices
+  * Revert "Add listing of the components and scripts that belongs to the qml 
module"
+  * Revert "Trim file names before adding them to qml components and scripts"
+  * Fix "white line on top and left side of screen" issue
+  * StateMachine: Don't crash if no signal is passed to SignalTransition
+  * QJSEngine: Fix potential JS stack overflow cauased by spread operator
+  * Test262Runner: fix -Wunused-but-set-variable
+  * Fix Shape stroke color when changing alpha from 0 to non-0
+  * QQmlPropertyCache: don't depend on locale for toupper
+  * Bump version to 5.15.13
+  * Fix missing glyphs when using NativeRendering
+  * Revert "Blacklist 1 tests in tst_qquickflickable on macos"
+
+---

Old:

  qtdeclarative-everywhere-src-5.15.12+kde31.obscpio

New:

  qtdeclarative-everywhere-src-5.15.13+kde30.obscpio



Other differences:
--
++ libqt5-qtdeclarative.spec ++
--- /var/tmp/diff_new_pack.44x64j/_old  2024-03-20 21:14:34.130442523 +0100
+++ /var/tmp/diff_new_pack.44x64j/_new  2024-03-20 21:14:34.130442523 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQtQuick5
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtdeclarative-everywhere-src-%{version}
 Name:   libqt5-qtdeclarative
-Version:5.15.12+kde31
+Version:5.15.13+kde30
 Release:0
 Summary:Qt 5 Declarative Library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.44x64j/_old  2024-03-20 21:14:34.190444727 +0100
+++ /var/tmp/diff_new_pack.44x64j/_new  2024-03-20 21:14:34.19874 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtdeclarative.git
git
qtdeclarative-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.44x64j/_old  2024-03-20 21:14:34.214445609 +0100
+++ /var/tmp/diff_new_pack.44x64j/_new  2024-03-20 21:14:34.218445756 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtdeclarative.git
-  792a55bb701d233116c3731c7a53ffdb8c67e407
+  b99568135aa60de96ca2e121dc2e8d83fb1ca886
 (No newline at EOF)
 

++ qtdeclarative-everywhere-src-5.15.12+kde31.obscpio -> 
qtdeclarative-everywhere-src-5.15.13+kde30.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtdeclarative/qtdeclarative-everywhere-src-5.15.12+kde31.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new.1905/qtdeclarative-everywhere-src-5.15.13+kde30.obscpio
 differ: char 49, line 1

++ qtdeclarative-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.44x64j/_old  2024-03-20 21:14:34.282448108 +0100
+++ /var/tmp/diff_new_pack.44x64j/_new  2024-03-20 21:14:34.286448255 +0100
@@ -1,5 +1,5 @@
 name: qtdeclarative-everywhere-src
-version: 5.15.12+kde31
-mtime: 1703803658
-commit: 792a55bb701d233116c3731c7a53ffdb8c67e407
+version: 5.15.13+kde30
+mtime: 1710405091
+commit: b99568135aa60de96ca2e121dc2e8d83fb1ca886
 


commit libqt5-qtgraphicaleffects for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtgraphicaleffects for 
openSUSE:Factory checked in at 2024-03-20 21:13:21

Comparing /work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new.1905 (New)


Package is "libqt5-qtgraphicaleffects"

Wed Mar 20 21:13:21 2024 rev:50 rq:1159419 version:5.15.13+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects/libqt5-qtgraphicaleffects.changes
  2024-01-04 15:54:51.378949051 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new.1905/libqt5-qtgraphicaleffects.changes
2024-03-20 21:14:34.654461778 +0100
@@ -1,0 +2,6 @@
+Tue Mar 19 09:58:03 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde0, rebased upstream:
+  * Bump version to 5.15.13
+
+---

Old:

  qtgraphicaleffects-everywhere-src-5.15.12+kde0.obscpio

New:

  qtgraphicaleffects-everywhere-src-5.15.13+kde0.obscpio



Other differences:
--
++ libqt5-qtgraphicaleffects.spec ++
--- /var/tmp/diff_new_pack.7EiMdD/_old  2024-03-20 21:14:36.522530422 +0100
+++ /var/tmp/diff_new_pack.7EiMdD/_new  2024-03-20 21:14:36.522530422 +0100
@@ -18,11 +18,11 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtgraphicaleffects-everywhere-src-%{version}
 Name:   libqt5-qtgraphicaleffects
-Version:5.15.12+kde0
+Version:5.15.13+kde0
 Release:0
 Summary:Qt 5 Graphical Effects
 # Legal: the 'tools' folder is not built.

++ _service ++
--- /var/tmp/diff_new_pack.7EiMdD/_old  2024-03-20 21:14:36.550531452 +0100
+++ /var/tmp/diff_new_pack.7EiMdD/_new  2024-03-20 21:14:36.550531452 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtgraphicaleffects.git
git
qtgraphicaleffects-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.7EiMdD/_old  2024-03-20 21:14:36.566532039 +0100
+++ /var/tmp/diff_new_pack.7EiMdD/_new  2024-03-20 21:14:36.570532187 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtgraphicaleffects.git
-  e33716bd6bb8926688fef20cb568e11618d08a35
+  895f9753940156dda05aa83d3c7655571514407e
 (No newline at EOF)
 

++ qtgraphicaleffects-everywhere-src-5.15.12+kde0.obscpio -> 
qtgraphicaleffects-everywhere-src-5.15.13+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects/qtgraphicaleffects-everywhere-src-5.15.12+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new.1905/qtgraphicaleffects-everywhere-src-5.15.13+kde0.obscpio
 differ: char 49, line 1

++ qtgraphicaleffects-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.7EiMdD/_old  2024-03-20 21:14:36.606533510 +0100
+++ /var/tmp/diff_new_pack.7EiMdD/_new  2024-03-20 21:14:36.606533510 +0100
@@ -1,5 +1,5 @@
 name: qtgraphicaleffects-everywhere-src
-version: 5.15.12+kde0
-mtime: 1697029293
-commit: e33716bd6bb8926688fef20cb568e11618d08a35
+version: 5.15.13+kde0
+mtime: 1704396111
+commit: 895f9753940156dda05aa83d3c7655571514407e
 


commit libqt5-qtwebsockets for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtwebsockets for 
openSUSE:Factory checked in at 2024-03-20 21:13:34

Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebsockets (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtwebsockets.new.1905 (New)


Package is "libqt5-qtwebsockets"

Wed Mar 20 21:13:34 2024 rev:47 rq:1159455 version:5.15.13+kde2

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebsockets/libqt5-qtwebsockets.changes  
2024-01-04 15:55:56.445325967 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebsockets.new.1905/libqt5-qtwebsockets.changes
2024-03-20 21:15:10.471794560 +0100
@@ -1,0 +2,6 @@
+Tue Mar 19 10:00:05 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde2, rebased upstream:
+  * Bump version to 5.15.13
+
+---

Old:

  qtwebsockets-everywhere-src-5.15.12+kde2.obscpio

New:

  qtwebsockets-everywhere-src-5.15.13+kde2.obscpio



Other differences:
--
++ libqt5-qtwebsockets.spec ++
--- /var/tmp/diff_new_pack.xSlqdN/_old  2024-03-20 21:15:11.675839684 +0100
+++ /var/tmp/diff_new_pack.xSlqdN/_new  2024-03-20 21:15:11.679839834 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5WebSockets5
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtwebsockets-everywhere-src-%{version}
 Name:   libqt5-qtwebsockets
-Version:5.15.12+kde2
+Version:5.15.13+kde2
 Release:0
 Summary:Qt 5 WebSockets Library
 License:LGPL-3.0-only OR  (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.xSlqdN/_old  2024-03-20 21:15:11.723841483 +0100
+++ /var/tmp/diff_new_pack.xSlqdN/_new  2024-03-20 21:15:11.727841633 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtwebsockets.git
git
qtwebsockets-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.xSlqdN/_old  2024-03-20 21:15:11.751842532 +0100
+++ /var/tmp/diff_new_pack.xSlqdN/_new  2024-03-20 21:15:11.751842532 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtwebsockets.git
-  9a7b9972a54137d5f2e0d49559fe58d07c90662e
+  2c2b7691ae231f43129d7f2b43984c30883ca4b1
 (No newline at EOF)
 

++ qtwebsockets-everywhere-src-5.15.12+kde2.obscpio -> 
qtwebsockets-everywhere-src-5.15.13+kde2.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtwebsockets-everywhere-src-5.15.12+kde2/.qmake.conf 
new/qtwebsockets-everywhere-src-5.15.13+kde2/.qmake.conf
--- old/qtwebsockets-everywhere-src-5.15.12+kde2/.qmake.conf2023-12-28 
23:39:25.0 +0100
+++ new/qtwebsockets-everywhere-src-5.15.13+kde2/.qmake.conf2024-03-14 
09:21:55.0 +0100
@@ -3,4 +3,4 @@
 CONFIG += warning_clean
 DEFINES += QT_NO_FOREACH
 
-MODULE_VERSION = 5.15.12
+MODULE_VERSION = 5.15.13

++ qtwebsockets-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.xSlqdN/_old  2024-03-20 21:15:12.015852426 +0100
+++ /var/tmp/diff_new_pack.xSlqdN/_new  2024-03-20 21:15:12.019852577 +0100
@@ -1,5 +1,5 @@
 name: qtwebsockets-everywhere-src
-version: 5.15.12+kde2
-mtime: 1703803165
-commit: 9a7b9972a54137d5f2e0d49559fe58d07c90662e
+version: 5.15.13+kde2
+mtime: 1710404515
+commit: 2c2b7691ae231f43129d7f2b43984c30883ca4b1
 


commit libqt5-qtquickcontrols for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtquickcontrols for 
openSUSE:Factory checked in at 2024-03-20 21:13:25

Comparing /work/SRC/openSUSE:Factory/libqt5-qtquickcontrols (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new.1905 (New)


Package is "libqt5-qtquickcontrols"

Wed Mar 20 21:13:25 2024 rev:53 rq:1159431 version:5.15.13+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols/libqt5-qtquickcontrols.changes
2024-01-04 15:55:07.111523771 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new.1905/libqt5-qtquickcontrols.changes
  2024-03-20 21:14:44.578826463 +0100
@@ -1,0 +2,7 @@
+Tue Mar 19 09:58:44 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde0, rebased upstream:
+  * QQuickAbstractDialog: treat closing as rejection
+  * Bump version to 5.15.13
+
+---

Old:

  qtquickcontrols-everywhere-src-5.15.12+kde0.obscpio

New:

  qtquickcontrols-everywhere-src-5.15.13+kde0.obscpio



Other differences:
--
++ libqt5-qtquickcontrols.spec ++
--- /var/tmp/diff_new_pack.t0neRq/_old  2024-03-20 21:14:47.162921419 +0100
+++ /var/tmp/diff_new_pack.t0neRq/_new  2024-03-20 21:14:47.166921565 +0100
@@ -21,11 +21,11 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtquickcontrols-everywhere-src-%{version}
 Name:   libqt5-qtquickcontrols
-Version:5.15.12+kde0
+Version:5.15.13+kde0
 Release:0
 Summary:Qt 5 Quick Controls Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.t0neRq/_old  2024-03-20 21:14:47.198922741 +0100
+++ /var/tmp/diff_new_pack.t0neRq/_new  2024-03-20 21:14:47.202922889 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtquickcontrols.git
git
qtquickcontrols-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.t0neRq/_old  2024-03-20 21:14:47.222923624 +0100
+++ /var/tmp/diff_new_pack.t0neRq/_new  2024-03-20 21:14:47.226923771 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtquickcontrols.git
-  1ca962198a703f591efc7c8f7540fc4120746a00
+  77fbfa8d313bbdb8fb762f15dd6173a067be55e3
 (No newline at EOF)
 

++ qtquickcontrols-everywhere-src-5.15.12+kde0.obscpio -> 
qtquickcontrols-everywhere-src-5.15.13+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols/qtquickcontrols-everywhere-src-5.15.12+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new.1905/qtquickcontrols-everywhere-src-5.15.13+kde0.obscpio
 differ: char 49, line 1

++ qtquickcontrols-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.t0neRq/_old  2024-03-20 21:14:47.266925241 +0100
+++ /var/tmp/diff_new_pack.t0neRq/_new  2024-03-20 21:14:47.270925388 +0100
@@ -1,5 +1,5 @@
 name: qtquickcontrols-everywhere-src
-version: 5.15.12+kde0
-mtime: 1697029302
-commit: 1ca962198a703f591efc7c8f7540fc4120746a00
+version: 5.15.13+kde0
+mtime: 1704396124
+commit: 77fbfa8d313bbdb8fb762f15dd6173a067be55e3
 


commit libqt5-qtquickcontrols2 for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtquickcontrols2 for 
openSUSE:Factory checked in at 2024-03-20 21:13:26

Comparing /work/SRC/openSUSE:Factory/libqt5-qtquickcontrols2 (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols2.new.1905 (New)


Package is "libqt5-qtquickcontrols2"

Wed Mar 20 21:13:26 2024 rev:36 rq:1159433 version:5.15.13+kde5

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols2/libqt5-qtquickcontrols2.changes
  2024-01-04 15:55:10.703654994 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols2.new.1905/libqt5-qtquickcontrols2.changes
2024-03-20 21:14:47.830946048 +0100
@@ -1,0 +2,6 @@
+Tue Mar 19 09:58:47 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde5, rebased upstream:
+  * Bump version to 5.15.13
+
+---

Old:

  qtquickcontrols2-everywhere-src-5.15.12+kde5.obscpio

New:

  qtquickcontrols2-everywhere-src-5.15.13+kde5.obscpio



Other differences:
--
++ libqt5-qtquickcontrols2.spec ++
--- /var/tmp/diff_new_pack.K8IDqN/_old  2024-03-20 21:14:51.791094463 +0100
+++ /var/tmp/diff_new_pack.K8IDqN/_new  2024-03-20 21:14:51.795094613 +0100
@@ -21,11 +21,11 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtquickcontrols2-everywhere-src-%{version}
 Name:   libqt5-qtquickcontrols2
-Version:5.15.12+kde5
+Version:5.15.13+kde5
 Release:0
 Summary:Qt 5 Quick Controls Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.K8IDqN/_old  2024-03-20 21:14:51.823095662 +0100
+++ /var/tmp/diff_new_pack.K8IDqN/_new  2024-03-20 21:14:51.831095962 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtquickcontrols2.git
git
qtquickcontrols2-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.K8IDqN/_old  2024-03-20 21:14:51.847096562 +0100
+++ /var/tmp/diff_new_pack.K8IDqN/_new  2024-03-20 21:14:51.851096711 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtquickcontrols2.git
-  134ca5dbef9d137a9c46faa79b0225bc650d9283
+  1fc98160580fc7b791e20d34ba986c9992cae9c5
 (No newline at EOF)
 

++ qtquickcontrols2-everywhere-src-5.15.12+kde5.obscpio -> 
qtquickcontrols2-everywhere-src-5.15.13+kde5.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols2/qtquickcontrols2-everywhere-src-5.15.12+kde5.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols2.new.1905/qtquickcontrols2-everywhere-src-5.15.13+kde5.obscpio
 differ: char 49, line 1

++ qtquickcontrols2-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.K8IDqN/_old  2024-03-20 21:14:51.887098061 +0100
+++ /var/tmp/diff_new_pack.K8IDqN/_new  2024-03-20 21:14:51.891098210 +0100
@@ -1,5 +1,5 @@
 name: qtquickcontrols2-everywhere-src
-version: 5.15.12+kde5
-mtime: 1703803150
-commit: 134ca5dbef9d137a9c46faa79b0225bc650d9283
+version: 5.15.13+kde5
+mtime: 1710404498
+commit: 1fc98160580fc7b791e20d34ba986c9992cae9c5
 


commit libqt5-qtspeech for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtspeech for openSUSE:Factory 
checked in at 2024-03-20 21:13:28

Comparing /work/SRC/openSUSE:Factory/libqt5-qtspeech (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtspeech.new.1905 (New)


Package is "libqt5-qtspeech"

Wed Mar 20 21:13:28 2024 rev:29 rq:1159447 version:5.15.13+kde1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtspeech/libqt5-qtspeech.changes  
2024-01-04 15:55:29.268333174 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtspeech.new.1905/libqt5-qtspeech.changes
2024-03-20 21:14:54.891210646 +0100
@@ -1,0 +2,6 @@
+Tue Mar 19 09:59:44 UTC 2024 - Fabian Vogt 
+
+- Update to version 5.15.13+kde1, rebased upstream:
+  * Bump version to 5.15.13
+
+---

Old:

  qtspeech-everywhere-src-5.15.12+kde1.obscpio

New:

  qtspeech-everywhere-src-5.15.13+kde1.obscpio



Other differences:
--
++ libqt5-qtspeech.spec ++
--- /var/tmp/diff_new_pack.VEZgDl/_old  2024-03-20 21:14:55.863247075 +0100
+++ /var/tmp/diff_new_pack.VEZgDl/_new  2024-03-20 21:14:55.895248274 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5TextToSpeech5
 %define base_name libqt5
-%define real_version 5.15.12
-%define so_version 5.15.12
+%define real_version 5.15.13
+%define so_version 5.15.13
 %define tar_version qtspeech-everywhere-src-%{version}
 Name:   libqt5-qtspeech
-Version:5.15.12+kde1
+Version:5.15.13+kde1
 Release:0
 Summary:Qt 5 Speech Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.VEZgDl/_old  2024-03-20 21:14:56.211260117 +0100
+++ /var/tmp/diff_new_pack.VEZgDl/_new  2024-03-20 21:14:56.215260268 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.12+kde@TAG_OFFSET@
+   5.15.13+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtspeech.git
git
qtspeech-everywhere-src
kde/5.15
-   v5.15.12-lts-lgpl
+   v5.15.13-lts-lgpl
enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.VEZgDl/_old  2024-03-20 21:14:56.231260867 +0100
+++ /var/tmp/diff_new_pack.VEZgDl/_new  2024-03-20 21:14:56.235261017 +0100
@@ -1,6 +1,6 @@
 
 
 https://invent.kde.org/qt/qt/qtspeech.git
-  c41437acf07c2c4703351b07925fce3ce0e6b75d
+  9b3738febbc751820ede496e8d619c5be56548dc
 (No newline at EOF)
 

++ qtspeech-everywhere-src-5.15.12+kde1.obscpio -> 
qtspeech-everywhere-src-5.15.13+kde1.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtspeech-everywhere-src-5.15.12+kde1/.qmake.conf 
new/qtspeech-everywhere-src-5.15.13+kde1/.qmake.conf
--- old/qtspeech-everywhere-src-5.15.12+kde1/.qmake.conf2023-12-28 
23:39:17.0 +0100
+++ new/qtspeech-everywhere-src-5.15.13+kde1/.qmake.conf2024-03-14 
09:21:45.0 +0100
@@ -5,4 +5,4 @@
 DEFINES += QT_NO_FOREACH
 DEFINES += QT_NO_JAVA_STYLE_ITERATORS
 
-MODULE_VERSION = 5.15.12
+MODULE_VERSION = 5.15.13

++ qtspeech-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.VEZgDl/_old  2024-03-20 21:14:56.363265814 +0100
+++ /var/tmp/diff_new_pack.VEZgDl/_new  2024-03-20 21:14:56.367265964 +0100
@@ -1,5 +1,5 @@
 name: qtspeech-everywhere-src
-version: 5.15.12+kde1
-mtime: 1703803157
-commit: c41437acf07c2c4703351b07925fce3ce0e6b75d
+version: 5.15.13+kde1
+mtime: 1710404505
+commit: 9b3738febbc751820ede496e8d619c5be56548dc
 


commit ShellCheck for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ShellCheck for openSUSE:Factory 
checked in at 2024-03-20 21:13:49

Comparing /work/SRC/openSUSE:Factory/ShellCheck (Old)
 and  /work/SRC/openSUSE:Factory/.ShellCheck.new.1905 (New)


Package is "ShellCheck"

Wed Mar 20 21:13:49 2024 rev:29 rq:1157227 version:0.10.0

Changes:

--- /work/SRC/openSUSE:Factory/ShellCheck/ShellCheck.changes2023-12-14 
22:03:47.453474731 +0100
+++ /work/SRC/openSUSE:Factory/.ShellCheck.new.1905/ShellCheck.changes  
2024-03-20 21:15:37.336801380 +0100
@@ -1,0 +2,25 @@
+Fri Mar  8 02:49:11 UTC 2024 - Peter Simons 
+
+- Update ShellCheck to version 0.10.0.
+  ## v0.10.0 - 2024-03-07
+  ### Added
+  - Precompiled binaries for macOS ARM64 (darwin.aarch64)
+  - Added support for busybox sh
+  - Added flag --rcfile to specify an rc file by name.
+  - Added `extended-analysis=true` directive to enable/disable dataflow 
analysis
+(with a corresponding --extended-analysis flag).
+  - SC2324: Warn when x+=1 appends instead of increments
+  - SC2325: Warn about multiple `!`s in dash/sh.
+  - SC2326: Warn about `foo | ! bar` in bash/dash/sh.
+  - SC3012: Warn about lexicographic-compare bashism in test like in [ ]
+  - SC3013: Warn bashism `test _ -op/-nt/-ef _` like in [ ]
+  - SC3014: Warn bashism `test _ == _` like in [ ]
+  - SC3015: Warn bashism `test _ =~ _` like in [ ]
+  - SC3016: Warn bashism `test -v _` like in [ ]
+  - SC3017: Warn bashism `test -a _` like in [ ]
+
+  ### Fixed
+  - source statements with here docs now work correctly
+  - "(Array.!): undefined array element" error should no longer occur
+
+---

Old:

  ShellCheck-0.9.0.tar.gz
  ShellCheck.cabal

New:

  ShellCheck-0.10.0.tar.gz



Other differences:
--
++ ShellCheck.spec ++
--- /var/tmp/diff_new_pack.qyxAxd/_old  2024-03-20 21:15:37.924823418 +0100
+++ /var/tmp/diff_new_pack.qyxAxd/_new  2024-03-20 21:15:37.928823567 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ShellCheck
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,12 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   %{pkg_name}
-Version:0.9.0
+Version:0.10.0
 Release:0
 Summary:Shell script analysis tool
 License:GPL-3.0-or-later
 URL:https://hackage.haskell.org/package/%{name}
 Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{name}-%{version}/revision/2.cabal#/%{name}.cabal
 BuildRequires:  chrpath
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-Diff-devel
@@ -111,7 +110,6 @@
 
 %prep
 %autosetup
-cp -p %{SOURCE1} %{name}.cabal
 
 %build
 %ghc_lib_build

++ ShellCheck-0.9.0.tar.gz -> ShellCheck-0.10.0.tar.gz ++
 2600 lines of diff (skipped)


commit ghc-cassava-megaparsec for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-cassava-megaparsec for 
openSUSE:Factory checked in at 2024-03-20 21:13:57

Comparing /work/SRC/openSUSE:Factory/ghc-cassava-megaparsec (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-cassava-megaparsec.new.1905 (New)


Package is "ghc-cassava-megaparsec"

Wed Mar 20 21:13:57 2024 rev:9 rq:1157237 version:2.0.4

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-cassava-megaparsec/ghc-cassava-megaparsec.changes
2023-04-04 21:19:07.340693840 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-cassava-megaparsec.new.1905/ghc-cassava-megaparsec.changes
  2024-03-20 21:15:50.573297445 +0100
@@ -1,0 +2,5 @@
+Tue Mar 12 15:06:36 UTC 2024 - Peter Simons 
+
+- Jailbreak build for ghc-9.8.x.
+
+---



Other differences:
--
++ ghc-cassava-megaparsec.spec ++
--- /var/tmp/diff_new_pack.ap4Nrq/_old  2024-03-20 21:15:51.445330126 +0100
+++ /var/tmp/diff_new_pack.ap4Nrq/_new  2024-03-20 21:15:51.445330126 +0100
@@ -82,6 +82,7 @@
 %prep
 %autosetup -n %{pkg_name}-%{version}
 cp -p %{SOURCE1} %{pkg_name}.cabal
+cabal-tweak-dep-ver bytestring "< 0.12" "< 1"
 
 %build
 %ghc_lib_build


commit ghc-commonmark for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-commonmark for openSUSE:Factory 
checked in at 2024-03-20 21:13:57

Comparing /work/SRC/openSUSE:Factory/ghc-commonmark (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-commonmark.new.1905 (New)


Package is "ghc-commonmark"

Wed Mar 20 21:13:57 2024 rev:17 rq:1157238 version:0.2.6

Changes:

--- /work/SRC/openSUSE:Factory/ghc-commonmark/ghc-commonmark.changes
2024-02-06 16:35:14.628557821 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-commonmark.new.1905/ghc-commonmark.changes  
2024-03-20 21:15:51.681338971 +0100
@@ -1,0 +2,26 @@
+Mon Mar 11 18:04:00 UTC 2024 - Peter Simons 
+
+- Update commonmark to version 0.2.6.
+  ## 0.2.6
+
+* Make list tightness match the reference implementation closer (#150,
+  Michael Howell). This solves the problem where blank lines in the middle
+  of a list are attributed to the list itself instead of the item, making 
its
+  parent list become spuriously loose.
+
+* Fix bug with entities inside link destinations (#149).
+  The bug affects cases like this: `[link](\!)`; the backslash
+  escape was being ignored here.
+
+* Commonmark.Entity: export `pEntity` [API change].
+
+---
+Thu Feb 15 04:42:01 UTC 2024 - Peter Simons 
+
+- Update commonmark to version 0.2.5.1.
+  ## 0.2.5.1
+
+* Replace `source` with `search` in list of block tags.
+  This is a spec 0.31 change that was forgotten in the last release.
+
+---

Old:

  commonmark-0.2.5.tar.gz

New:

  commonmark-0.2.6.tar.gz



Other differences:
--
++ ghc-commonmark.spec ++
--- /var/tmp/diff_new_pack.YREi6C/_old  2024-03-20 21:15:52.63407 +0100
+++ /var/tmp/diff_new_pack.YREi6C/_new  2024-03-20 21:15:52.63407 +0100
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.2.5
+Version:0.2.6
 Release:0
 Summary:Pure Haskell commonmark parser
 License:BSD-3-Clause

++ commonmark-0.2.5.tar.gz -> commonmark-0.2.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/commonmark-0.2.5/changelog.md 
new/commonmark-0.2.6/changelog.md
--- old/commonmark-0.2.5/changelog.md   2001-09-09 03:46:40.0 +0200
+++ new/commonmark-0.2.6/changelog.md   2001-09-09 03:46:40.0 +0200
@@ -1,5 +1,23 @@
 # Changelog for commonmark
 
+## 0.2.6
+
+  * Make list tightness match the reference implementation closer (#150,
+Michael Howell). This solves the problem where blank lines in the middle
+of a list are attributed to the list itself instead of the item, making its
+parent list become spuriously loose.
+
+  * Fix bug with entities inside link destinations (#149).
+The bug affects cases like this: `[link](\!)`; the backslash
+escape was being ignored here.
+
+  * Commonmark.Entity: export `pEntity` [API change].
+
+## 0.2.5.1
+
+  * Replace `source` with `search` in list of block tags.
+This is a spec 0.31 change that was forgotten in the last release.
+
 ## 0.2.5
 
   * Fix HTML comment parser to conform to 0.31.2 spec.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/commonmark-0.2.5/commonmark.cabal 
new/commonmark-0.2.6/commonmark.cabal
--- old/commonmark-0.2.5/commonmark.cabal   2001-09-09 03:46:40.0 
+0200
+++ new/commonmark-0.2.6/commonmark.cabal   2001-09-09 03:46:40.0 
+0200
@@ -1,6 +1,6 @@
 cabal-version:  2.2
 name:   commonmark
-version:0.2.5
+version:0.2.6
 synopsis:   Pure Haskell commonmark parser.
 description:
This library provides the core data types and functions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/commonmark-0.2.5/src/Commonmark/Blocks.hs 
new/commonmark-0.2.6/src/Commonmark/Blocks.hs
--- old/commonmark-0.2.5/src/Commonmark/Blocks.hs   2001-09-09 
03:46:40.0 +0200
+++ new/commonmark-0.2.6/src/Commonmark/Blocks.hs   2001-09-09 
03:46:40.0 +0200
@@ -856,10 +856,10 @@
  let lidata = fromDyn (blockData ndata)
  (ListItemData (BulletList '*') 0 False False)
  -- a marker followed by two blanks is just an empty item:
- guard $ null (blockBlanks ndata) ||
- not (null children)
  pos <- getPosition
- gobbleSpaces (listItemIndent lidata) <|> 0 <$ lookAhead blankLine
+ case blockBlanks ndata of
+  _:_ | null 

commit ghc-constraints for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-constraints for openSUSE:Factory 
checked in at 2024-03-20 21:14:00

Comparing /work/SRC/openSUSE:Factory/ghc-constraints (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-constraints.new.1905 (New)


Package is "ghc-constraints"

Wed Mar 20 21:14:00 2024 rev:18 rq:1157241 version:0.14

Changes:

--- /work/SRC/openSUSE:Factory/ghc-constraints/ghc-constraints.changes  
2023-08-18 19:28:12.691300017 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-constraints.new.1905/ghc-constraints.changes
2024-03-20 21:15:54.861458154 +0100
@@ -1,0 +2,21 @@
+Wed Oct 11 10:55:39 UTC 2023 - Peter Simons 
+
+- Update constraints to version 0.14.
+  0.14 [2023.10.11]
+  -
+  * Drop support for GHCs older than 8.6.
+  * The `forall` function in `Data.Constraint.Forall` has been renamed to
+`forall_`, since a future version of GHC will make the use of `forall` as
+an identifier an error.
+  * Implement `Data.Constraint.Forall` using `QuantifiedConstraints`.
+  * Remove `Lifting` instances for `ErrorT` and `ListT`, which were removed
+in `transformers-0.6.*`.
+  * Add a `c => Boring (Dict c)` instance.
+  * Add the `Data.Constraint.Char` module, which contains utilities for working
+with `KnownChar` constraints. This module is only available on GHC 9.2 or
+later.
+  * Add `unsafeAxiom` to `Data.Constraint.Unsafe`.
+  * Add `unsafeSChar`, `unsafeSNat`, and `unsafeSSymbol` to
+`Data.Constraint.Unsafe` when building with `base-4.18` (GHC 9.6) or later.
+
+---

Old:

  constraints-0.13.4.tar.gz
  constraints.cabal

New:

  constraints-0.14.tar.gz



Other differences:
--
++ ghc-constraints.spec ++
--- /var/tmp/diff_new_pack.qq9mzg/_old  2024-03-20 21:15:56.073503577 +0100
+++ /var/tmp/diff_new_pack.qq9mzg/_new  2024-03-20 21:15:56.073503577 +0100
@@ -20,18 +20,19 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.13.4
+Version:0.14
 Release:0
 Summary:Constraint manipulation
 License:BSD-2-Clause
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-devel
 BuildRequires:  ghc-base-prof
 BuildRequires:  ghc-binary-devel
 BuildRequires:  ghc-binary-prof
+BuildRequires:  ghc-boring-devel
+BuildRequires:  ghc-boring-prof
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-deepseq-prof
 BuildRequires:  ghc-hashable-devel
@@ -39,8 +40,6 @@
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-mtl-prof
 BuildRequires:  ghc-rpm-macros
-BuildRequires:  ghc-transformers-compat-devel
-BuildRequires:  ghc-transformers-compat-prof
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-transformers-prof
 BuildRequires:  ghc-type-equality-devel
@@ -85,7 +84,6 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ constraints-0.13.4.tar.gz -> constraints-0.14.tar.gz ++
 1887 lines of diff (skipped)


commit systemd for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package systemd for openSUSE:Factory checked 
in at 2024-03-20 21:13:40

Comparing /work/SRC/openSUSE:Factory/systemd (Old)
 and  /work/SRC/openSUSE:Factory/.systemd.new.1905 (New)


Package is "systemd"

Wed Mar 20 21:13:40 2024 rev:418 rq:1159582 version:255.4

Changes:

--- /work/SRC/openSUSE:Factory/systemd/systemd.changes  2024-03-14 
17:42:59.564830729 +0100
+++ /work/SRC/openSUSE:Factory/.systemd.new.1905/systemd.changes
2024-03-20 21:15:23.408279381 +0100
@@ -1,0 +2,33 @@
+Mon Mar 18 20:14:57 UTC 2024 - Franck Bui 
+
+- Import commit be772961ada05afab21a72e225d28c26ef9fb1ea (merge of v255.4)
+
+  For a complete list of changes, visit:
+  
https://github.com/openSUSE/systemd/compare/3986ed5117e1563adfce3f5a8e088a77016c0aee...be772961ada05afab21a72e225d28c26ef9fb1ea
+
+---
+Mon Mar 18 19:18:33 UTC 2024 - Franck Bui 
+
+- Import commit 3986ed5117e1563adfce3f5a8e088a77016c0aee
+
+  3986ed5117 test: drop route from test-functions
+
+---
+Mon Mar 18 15:30:26 UTC 2024 - Daan De Meyer 
+
+- Account for upstream changes to the quotaon and quotacheck services
+
+---
+Mon Mar 18 11:32:09 UTC 2024 - Michal Vyskocil 
+
+- Create /etc/sysusers.d as expected by sysusers.d(5)
+
+---
+Fri Mar  1 18:13:35 UTC 2024 - Jan Engelhardt 
+
+- Move C API manual pages to systemd-doc, this saves buildroots
+  770+ files and time (mandb is run in %posttrans).
+- Delete supplements on base-documentation from that.
+- Courtesy of spec formatters, remove redundant %defattr.
+
+---

Old:

  systemd-v255.3+suse.15.g96edf7ad18.tar.xz

New:

  files.devel-doc
  systemd-v255.4+suse.17.gbe772961ad.tar.xz



Other differences:
--
++ systemd.spec ++
--- /var/tmp/diff_new_pack.oGF17u/_old  2024-03-20 21:15:25.444355687 +0100
+++ /var/tmp/diff_new_pack.oGF17u/_new  2024-03-20 21:15:25.444355687 +0100
@@ -26,10 +26,9 @@
 %define systemd_release%{?release_override}%{!?release_override:0}
 %define archive_version%{nil}
 %else
-# Fallback required for OBS source validator
-%define systemd_version255.3
+%define systemd_version255.4
 %define systemd_release0
-%define archive_version+suse.15.g96edf7ad18
+%define archive_version+suse.17.gbe772961ad
 %endif
 
 %define systemd_major  %{sub %systemd_version 1 3}
@@ -215,6 +214,7 @@
 Source210:  files.lang
 Source211:  files.journal-remote
 Source212:  files.portable
+Source213:  files.devel-doc
 
 #
 # All changes backported from upstream are tracked by the git repository, which
@@ -638,6 +638,7 @@
 Requires:   cryptsetup
 Requires:   dhcp-client
 Requires:   dosfstools
+Requires:   iproute2
 Requires:   jq
 Requires:   libcap-progs
 Requires:   libfido2
@@ -647,7 +648,6 @@
 Requires:   lz4
 Requires:   make
 Requires:   mtools
-Requires:   net-tools-deprecated
 Requires:   netcat
 Requires:   python3-pexpect
 Requires:   qemu
@@ -734,12 +734,12 @@
 %lang_package
 
 %package doc
-Summary:HTML documentation for systemd
+Summary:Additional documentation or doc formats for systemd
 License:LGPL-2.1-or-later
-Supplements:(systemd and patterns-base-documentation)
 
 %description doc
-The HTML documentation for systemd.
+A HTML version of the systemd documentation, plus the manual pages
+for the C APIs.
 %endif
 
 %prep
@@ -998,6 +998,8 @@
 mkdir -p %{buildroot}%{_sysconfdir}/systemd/network
 mkdir -p %{buildroot}%{_sysconfdir}/systemd/nspawn
 
+mkdir -p %{buildroot}%{_sysconfdir}/sysusers.d/
+
 # This dir must be owned (and thus created) by systemd otherwise the build
 # system will complain. This is odd since we simply own a ghost file in it...
 mkdir -p %{buildroot}%{_sysconfdir}/X11/xorg.conf.d
@@ -1411,55 +1413,45 @@
 %endif
 
 %files
-%defattr(-,root,root)
 %include %{SOURCE200}
 
 %files -n udev%{?mini}
-%defattr(-,root,root)
 %include %{SOURCE201}
 
 %if %{with sd_boot}
 %files boot
-%defattr(-,root,root)
 %include %{SOURCE206}
 %endif
 
 %files container
-%defattr(-,root,root)
 %include %{SOURCE202}
 
 %if %{with networkd} || %{with resolved}
 %files network
-%defattr(-,root,root)
 %include %{SOURCE203}
 %endif
 
 %files devel
-%defattr(-,root,root,-)
 %license LICENSE.LGPL2.1
 %include %{SOURCE204}
 
 %if %{with sysvcompat}
 %files sysvcompat
-%defattr(-,root,root,-)
 %include %{SOURCE205}
 %endif
 

commit ghc-commonmark-extensions for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-commonmark-extensions for 
openSUSE:Factory checked in at 2024-03-20 21:13:58

Comparing /work/SRC/openSUSE:Factory/ghc-commonmark-extensions (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-commonmark-extensions.new.1905 (New)


Package is "ghc-commonmark-extensions"

Wed Mar 20 21:13:58 2024 rev:15 rq:1157239 version:0.2.5.4

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-commonmark-extensions/ghc-commonmark-extensions.changes
  2023-12-21 23:38:24.202078068 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-commonmark-extensions.new.1905/ghc-commonmark-extensions.changes
2024-03-20 21:15:52.513370154 +0100
@@ -1,0 +2,37 @@
+Mon Mar 11 18:04:35 UTC 2024 - Peter Simons 
+
+- Update commonmark-extensions to version 0.2.5.4.
+  ## 0.2.5.4
+
+* Fix autolink parsing regression (#151). This affects autolinks with
+  doubled internal line-ending punctuation characters.
+
+---
+Wed Feb 28 05:53:52 UTC 2024 - Peter Simons 
+
+- Update commonmark-extensions to version 0.2.5.3.
+  ## 0.2.5.3
+
+* Fix rebase_relative_paths extension so it works with URLs with
+  non-ASCII characters (#148). Previously these would not be properly
+  detected as absolute URIs.
+
+---
+Thu Feb 15 04:42:30 UTC 2024 - Peter Simons 
+
+- Update commonmark-extensions to version 0.2.5.2.
+  ## 0.2.5.2
+
+* Improve autolinks extension (#147).
+  The autolinks extension was interacting badly with explicit links,
+  To fix this we had to make autolink parsing a bit stricter than
+  the GFM spec does.  They allow unbalanced `)` except at the end
+  of a URL (which is defined as: followed by optional final punctuation
+  then whitespace or eof).  With this change, we don't allow unbalanced
+  `)` at all in raw URLs. This should not be a big problem in practice.
+
+* Protect against quadratic generated table size explosion (Michael 
Howell).
+  This commit adds a limit to the number of auto-completed cells
+  around 200,000. The result is, in these original samples:
+
+---

Old:

  commonmark-extensions-0.2.5.1.tar.gz

New:

  commonmark-extensions-0.2.5.4.tar.gz



Other differences:
--
++ ghc-commonmark-extensions.spec ++
--- /var/tmp/diff_new_pack.39ng7K/_old  2024-03-20 21:15:53.117392790 +0100
+++ /var/tmp/diff_new_pack.39ng7K/_new  2024-03-20 21:15:53.117392790 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-commonmark-extensions
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.2.5.1
+Version:0.2.5.4
 Release:0
 Summary:Pure Haskell commonmark parser
 License:BSD-3-Clause

++ commonmark-extensions-0.2.5.1.tar.gz -> 
commonmark-extensions-0.2.5.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/commonmark-extensions-0.2.5.1/changelog.md 
new/commonmark-extensions-0.2.5.4/changelog.md
--- old/commonmark-extensions-0.2.5.1/changelog.md  2001-09-09 
03:46:40.0 +0200
+++ new/commonmark-extensions-0.2.5.4/changelog.md  2001-09-09 
03:46:40.0 +0200
@@ -1,5 +1,30 @@
 # Changelog for commonmark-extensions
 
+## 0.2.5.4
+
+  * Fix autolink parsing regression (#151). This affects autolinks with
+doubled internal line-ending punctuation characters.
+
+## 0.2.5.3
+
+  * Fix rebase_relative_paths extension so it works with URLs with
+non-ASCII characters (#148). Previously these would not be properly
+detected as absolute URIs.
+
+## 0.2.5.2
+
+  * Improve autolinks extension (#147).
+The autolinks extension was interacting badly with explicit links,
+To fix this we had to make autolink parsing a bit stricter than
+the GFM spec does.  They allow unbalanced `)` except at the end
+of a URL (which is defined as: followed by optional final punctuation
+then whitespace or eof).  With this change, we don't allow unbalanced
+`)` at all in raw URLs. This should not be a big problem in practice.
+
+  * Protect against quadratic generated table size explosion (Michael Howell).
+This commit adds a limit to the number of auto-completed cells
+around 200,000. The result is, in these original samples:
+
 ## 0.2.5.

commit ghc-email-validate for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-email-validate for 
openSUSE:Factory checked in at 2024-03-20 21:14:02

Comparing /work/SRC/openSUSE:Factory/ghc-email-validate (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-email-validate.new.1905 (New)


Package is "ghc-email-validate"

Wed Mar 20 21:14:02 2024 rev:13 rq:1157243 version:2.3.2.20

Changes:

--- /work/SRC/openSUSE:Factory/ghc-email-validate/ghc-email-validate.changes
2023-08-04 15:03:19.800245622 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-email-validate.new.1905/ghc-email-validate.changes
  2024-03-20 21:15:57.849570139 +0100
@@ -1,0 +2,6 @@
+Thu Feb 22 19:48:27 UTC 2024 - Peter Simons 
+
+- Update email-validate to version 2.3.2.20.
+  Upstream does not provide a change log file.
+
+---

Old:

  email-validate-2.3.2.19.tar.gz

New:

  email-validate-2.3.2.20.tar.gz



Other differences:
--
++ ghc-email-validate.spec ++
--- /var/tmp/diff_new_pack.6cbw0s/_old  2024-03-20 21:15:58.881608817 +0100
+++ /var/tmp/diff_new_pack.6cbw0s/_new  2024-03-20 21:15:58.881608817 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-email-validate
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:2.3.2.19
+Version:2.3.2.20
 Release:0
 Summary:Email address validation
 License:BSD-3-Clause

++ email-validate-2.3.2.19.tar.gz -> email-validate-2.3.2.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/email-validate-2.3.2.19/email-validate.cabal 
new/email-validate-2.3.2.20/email-validate.cabal
--- old/email-validate-2.3.2.19/email-validate.cabal2023-07-26 
23:11:47.0 +0200
+++ new/email-validate-2.3.2.20/email-validate.cabal2024-02-22 
20:45:51.0 +0100
@@ -1,5 +1,5 @@
 name:   email-validate
-version:2.3.2.19
+version:2.3.2.20
 license:BSD3
 license-file:   LICENSE
 author: George Pollard 
@@ -19,14 +19,14 @@
 source-repository this
 type: git
 location: git://github.com/Porges/email-validate-hs.git
-tag: v2.3.2.19
+tag: v2.3.2.20
 
 library
 build-depends:
 base >= 4.4 && < 5,
 attoparsec >= 0.10.0 && < 0.15,
 bytestring >= 0.9 && < 0.13,
-template-haskell >= 2.10.0.0 && < 2.21
+template-haskell >= 2.10.0.0 && < 2.22
 default-language: Haskell2010
 hs-source-dirs: src
 ghc-options: -Wall


commit cabal-plan for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cabal-plan for openSUSE:Factory 
checked in at 2024-03-20 21:13:52

Comparing /work/SRC/openSUSE:Factory/cabal-plan (Old)
 and  /work/SRC/openSUSE:Factory/.cabal-plan.new.1905 (New)


Package is "cabal-plan"

Wed Mar 20 21:13:52 2024 rev:13 rq:1157230 version:0.7.3.0

Changes:

--- /work/SRC/openSUSE:Factory/cabal-plan/cabal-plan.changes2023-07-18 
21:54:25.906396118 +0200
+++ /work/SRC/openSUSE:Factory/.cabal-plan.new.1905/cabal-plan.changes  
2024-03-20 21:15:41.244947846 +0100
@@ -1,0 +2,5 @@
+Tue Mar 12 15:06:06 UTC 2024 - Peter Simons 
+
+- Jailbreak build for ghc-9.8.x.
+
+---



Other differences:
--
++ cabal-plan.spec ++
--- /var/tmp/diff_new_pack.c2z3BR/_old  2024-03-20 21:15:41.732966135 +0100
+++ /var/tmp/diff_new_pack.c2z3BR/_new  2024-03-20 21:15:41.736966285 +0100
@@ -141,6 +141,9 @@
 %prep
 %autosetup
 cp -p %{SOURCE1} %{name}.cabal
+cabal-tweak-dep-ver base "^>=4.18.0.0" "< 5"
+cabal-tweak-dep-ver bytestring "^>=0.11.1.0" "< 1"
+cabal-tweak-dep-ver text "^>=2.0.1" "< 3"
 
 %build
 %define cabal_configure_options -fexe


commit ghc-http-conduit for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-http-conduit for 
openSUSE:Factory checked in at 2024-03-20 21:14:10

Comparing /work/SRC/openSUSE:Factory/ghc-http-conduit (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-http-conduit.new.1905 (New)


Package is "ghc-http-conduit"

Wed Mar 20 21:14:10 2024 rev:32 rq:1157251 version:2.3.8.3

Changes:

--- /work/SRC/openSUSE:Factory/ghc-http-conduit/ghc-http-conduit.changes
2023-11-23 21:42:16.719094644 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-http-conduit.new.1905/ghc-http-conduit.changes  
2024-03-20 21:16:09.606010735 +0100
@@ -1,0 +2,5 @@
+Tue Mar 12 15:08:10 UTC 2024 - Peter Simons 
+
+- Drop obsolete 'drop-dependency-on-empty-attoparsec-aeson-library.patch'.
+
+---

Old:

  drop-dependency-on-empty-attoparsec-aeson-library.patch

BETA DEBUG BEGIN:
  Old:
- Drop obsolete 'drop-dependency-on-empty-attoparsec-aeson-library.patch'.
BETA DEBUG END:



Other differences:
--
++ ghc-http-conduit.spec ++
--- /var/tmp/diff_new_pack.2oa7bb/_old  2024-03-20 21:16:10.166031723 +0100
+++ /var/tmp/diff_new_pack.2oa7bb/_new  2024-03-20 21:16:10.166031723 +0100
@@ -26,10 +26,11 @@
 License:BSD-2-Clause
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Patch1: drop-dependency-on-empty-attoparsec-aeson-library.patch
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
 BuildRequires:  ghc-aeson-prof
+BuildRequires:  ghc-attoparsec-aeson-devel
+BuildRequires:  ghc-attoparsec-aeson-prof
 BuildRequires:  ghc-attoparsec-devel
 BuildRequires:  ghc-attoparsec-prof
 BuildRequires:  ghc-base-devel


commit ghc-some for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-some for openSUSE:Factory 
checked in at 2024-03-20 21:14:24

Comparing /work/SRC/openSUSE:Factory/ghc-some (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-some.new.1905 (New)


Package is "ghc-some"

Wed Mar 20 21:14:24 2024 rev:9 rq:1157265 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/ghc-some/ghc-some.changes2023-11-23 
21:42:05.882695515 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-some.new.1905/ghc-some.changes  
2024-03-20 21:16:27.110666758 +0100
@@ -1,0 +2,5 @@
+Tue Mar 12 15:09:16 UTC 2024 - Peter Simons 
+
+- Drop unnecessary dependencies.
+
+---



Other differences:
--
++ ghc-some.spec ++
--- /var/tmp/diff_new_pack.hQN7Hu/_old  2024-03-20 21:16:27.566683848 +0100
+++ /var/tmp/diff_new_pack.hQN7Hu/_new  2024-03-20 21:16:27.566683848 +0100
@@ -28,8 +28,6 @@
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-devel
-BuildRequires:  ghc-base-orphans-devel
-BuildRequires:  ghc-base-orphans-prof
 BuildRequires:  ghc-base-prof
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-deepseq-prof


commit ghc-filepath-bytestring for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-filepath-bytestring for 
openSUSE:Factory checked in at 2024-03-20 21:14:04

Comparing /work/SRC/openSUSE:Factory/ghc-filepath-bytestring (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-filepath-bytestring.new.1905 (New)


Package is "ghc-filepath-bytestring"

Wed Mar 20 21:14:04 2024 rev:9 rq:1157245 version:1.4.2.1.13

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-filepath-bytestring/ghc-filepath-bytestring.changes
  2023-06-22 23:25:48.473764102 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-filepath-bytestring.new.1905/ghc-filepath-bytestring.changes
2024-03-20 21:16:00.557671631 +0100
@@ -1,0 +2,5 @@
+Tue Mar 12 15:06:52 UTC 2024 - Peter Simons 
+
+- Jailbreak build for ghc-9.8.x.
+
+---



Other differences:
--
++ ghc-filepath-bytestring.spec ++
--- /var/tmp/diff_new_pack.DSxFTQ/_old  2024-03-20 21:16:01.977724850 +0100
+++ /var/tmp/diff_new_pack.DSxFTQ/_new  2024-03-20 21:16:01.981724999 +0100
@@ -92,6 +92,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cabal-tweak-dep-ver base "< 4.19" "< 5"
 
 %build
 %ghc_lib_build


commit ghc-foldl for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-foldl for openSUSE:Factory 
checked in at 2024-03-20 21:14:05

Comparing /work/SRC/openSUSE:Factory/ghc-foldl (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-foldl.new.1905 (New)


Package is "ghc-foldl"

Wed Mar 20 21:14:05 2024 rev:28 rq:1157246 version:1.4.16

Changes:

--- /work/SRC/openSUSE:Factory/ghc-foldl/ghc-foldl.changes  2023-11-09 
21:35:01.560062123 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-foldl.new.1905/ghc-foldl.changes
2024-03-20 21:16:02.517745088 +0100
@@ -1,0 +2,12 @@
+Sat Mar  2 06:37:40 UTC 2024 - Peter Simons 
+
+- Update foldl to version 1.4.16.
+  1.4.16
+
+  - Add [`Control.Foldl.postmapM`]
+
+  1.4.15
+
+  - Add `Cosieve` and `Costrong` instances
+
+---

Old:

  foldl-1.4.15.tar.gz
  foldl.cabal

New:

  foldl-1.4.16.tar.gz



Other differences:
--
++ ghc-foldl.spec ++
--- /var/tmp/diff_new_pack.pU9rb2/_old  2024-03-20 21:16:04.273810900 +0100
+++ /var/tmp/diff_new_pack.pU9rb2/_new  2024-03-20 21:16:04.273810900 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-foldl
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,12 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:1.4.15
+Version:1.4.16
 Release:0
 Summary:Composable, streaming, and efficient left folds
 License:BSD-3-Clause
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-devel
 BuildRequires:  ghc-base-prof
@@ -97,7 +96,6 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ foldl-1.4.15.tar.gz -> foldl-1.4.16.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/foldl-1.4.15/CHANGELOG.md 
new/foldl-1.4.16/CHANGELOG.md
--- old/foldl-1.4.15/CHANGELOG.md   2001-09-09 03:46:40.0 +0200
+++ new/foldl-1.4.16/CHANGELOG.md   2001-09-09 03:46:40.0 +0200
@@ -1,3 +1,11 @@
+1.4.16
+
+- Add [`Control.Foldl.postmapM`]
+
+1.4.15
+
+- Add `Cosieve` and `Costrong` instances
+
 1.4.14
 
 - Add 
[`Control.Foldl.NonEmpty.nonEmpty`](https://github.com/Gabriella439/foldl/pull/186)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/foldl-1.4.15/README.md new/foldl-1.4.16/README.md
--- old/foldl-1.4.15/README.md  2001-09-09 03:46:40.0 +0200
+++ new/foldl-1.4.16/README.md  2001-09-09 03:46:40.0 +0200
@@ -136,7 +136,7 @@
 
 ## Development Status
 
-[![Build 
Status](https://travis-ci.org/Gabriella439/Haskell-Foldl-Library.png)](https://travis-ci.org/Gabriella439/Haskell-Foldl-Library)
+[![Build 
Status](https://github.com/Gabriella439/foldl/actions/workflows/haskell.yml/badge.svg)](https://github.com/Gabriella439/foldl/actions/workflows/haskell.yml)
 
 The `foldl` library is pretty stable at this point.  I don't expect there to be
 breaking changes to the API from this point forward unless people discover new
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/foldl-1.4.15/foldl.cabal new/foldl-1.4.16/foldl.cabal
--- old/foldl-1.4.15/foldl.cabal2001-09-09 03:46:40.0 +0200
+++ new/foldl-1.4.16/foldl.cabal2001-09-09 03:46:40.0 +0200
@@ -1,5 +1,5 @@
 Name: foldl
-Version: 1.4.15
+Version: 1.4.16
 Cabal-Version: >=1.10
 Build-Type: Simple
 License: BSD3
@@ -25,13 +25,13 @@
 HS-Source-Dirs: src
 Build-Depends:
 base >= 4.11.0.0 && < 5   ,
-bytestring   >= 0.9.2.1  && < 0.12,
+bytestring   >= 0.9.2.1  && < 0.13,
 random   >= 1.2  && < 1.3 ,
-primitive   < 0.9 ,
-text >= 0.11.2.0 && < 2.1 ,
+primitive   < 0.10,
+text >= 0.11.2.0 && < 2.2 ,
 transformers >= 0.2.0.0  && < 0.7 ,
 vector   >= 0.7  && < 0.14,
-containers   >= 0.5.0.0  && < 0.7 ,
+containers   >= 0.5.0.0  && < 0.8 ,
 unordered-containers< 0.3 ,
 hashable< 1.5 ,
 contravariant   < 1.6 ,
diff -urN '--excl

commit ghc-wai-app-static for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-wai-app-static for 
openSUSE:Factory checked in at 2024-03-20 21:14:30

Comparing /work/SRC/openSUSE:Factory/ghc-wai-app-static (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-wai-app-static.new.1905 (New)


Package is "ghc-wai-app-static"

Wed Mar 20 21:14:30 2024 rev:9 rq:1157272 version:3.1.9

Changes:

--- /work/SRC/openSUSE:Factory/ghc-wai-app-static/ghc-wai-app-static.changes
2023-11-23 21:43:08.436999531 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-wai-app-static.new.1905/ghc-wai-app-static.changes
  2024-03-20 21:16:35.942997767 +0100
@@ -1,0 +2,8 @@
+Mon Mar  4 08:50:57 UTC 2024 - Peter Simons 
+
+- Update wai-app-static to version 3.1.9.
+  ## 3.1.9
+
+  * Added `NoCache` constructor to `MaxAge` 
[#977](https://github.com/yesodweb/wai/pull/977)
+
+---

Old:

  wai-app-static-3.1.8.tar.gz

New:

  wai-app-static-3.1.9.tar.gz



Other differences:
--
++ ghc-wai-app-static.spec ++
--- /var/tmp/diff_new_pack.TU2agv/_old  2024-03-20 21:16:37.267047389 +0100
+++ /var/tmp/diff_new_pack.TU2agv/_new  2024-03-20 21:16:37.271047539 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-wai-app-static
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:3.1.8
+Version:3.1.9
 Release:0
 Summary:WAI application for static serving
 License:MIT

++ wai-app-static-3.1.8.tar.gz -> wai-app-static-3.1.9.tar.gz ++
 2440 lines of diff (skipped)


commit ghc-ghc-lib-parser-ex for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-ghc-lib-parser-ex for 
openSUSE:Factory checked in at 2024-03-20 21:14:07

Comparing /work/SRC/openSUSE:Factory/ghc-ghc-lib-parser-ex (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-ghc-lib-parser-ex.new.1905 (New)


Package is "ghc-ghc-lib-parser-ex"

Wed Mar 20 21:14:07 2024 rev:9 rq:1157248 version:9.8.0.2

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-ghc-lib-parser-ex/ghc-ghc-lib-parser-ex.changes  
2023-11-23 21:43:08.204990986 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-ghc-lib-parser-ex.new.1905/ghc-ghc-lib-parser-ex.changes
2024-03-20 21:16:06.629899200 +0100
@@ -1,0 +2,16 @@
+Wed Feb 28 03:10:22 UTC 2024 - Peter Simons 
+
+- Update ghc-lib-parser-ex to version 9.8.0.2.
+  ## 9.8.0.2 released
+  - Fix broken cpp in `isStrictMatch`
+
+---
+Mon Feb 26 02:34:56 UTC 2024 - Peter Simons 
+
+- Update ghc-lib-parser-ex to version 9.8.0.1.
+  Upstream has edited the change log file since the last release in
+  a non-trivial way, i.e. they did more than just add a new entry
+  at the top. You can review the file at:
+  http://hackage.haskell.org/package/ghc-lib-parser-ex-9.8.0.1/src/ChangeLog.md
+
+---

Old:

  ghc-lib-parser-ex-9.6.0.2.tar.gz

New:

  ghc-lib-parser-ex-9.8.0.2.tar.gz



Other differences:
--
++ ghc-ghc-lib-parser-ex.spec ++
--- /var/tmp/diff_new_pack.J7Ufnz/_old  2024-03-20 21:16:07.489931431 +0100
+++ /var/tmp/diff_new_pack.J7Ufnz/_new  2024-03-20 21:16:07.489931431 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-ghc-lib-parser-ex
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:9.6.0.2
+Version:9.8.0.2
 Release:0
 Summary:Algorithms on GHC parse trees
 License:BSD-3-Clause

++ ghc-lib-parser-ex-9.6.0.2.tar.gz -> ghc-lib-parser-ex-9.8.0.2.tar.gz 
++
 1896 lines of diff (skipped)


commit ghc-typst for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-typst for openSUSE:Factory 
checked in at 2024-03-20 21:14:28

Comparing /work/SRC/openSUSE:Factory/ghc-typst (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-typst.new.1905 (New)


Package is "ghc-typst"

Wed Mar 20 21:14:28 2024 rev:4 rq:1157270 version:0.5.0.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-typst/ghc-typst.changes  2023-12-28 
23:05:05.546400402 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-typst.new.1905/ghc-typst.changes
2024-03-20 21:16:33.090890878 +0100
@@ -1,0 +2,24 @@
+Wed Feb 14 20:16:16 UTC 2024 - Peter Simons 
+
+- Update typst to version 0.5.0.1.
+  ## 0.5.0.1
+
+* Set `evalPackageRoot` to working dir to start, even if the file to be
+  converted is somewhere else. This seems to be what the test suite 
expects.
+
+* Make file loading relative to package root if present (#39).
+
+* Parser: remove `pBindExpr` from `pBaseExpr`. It does not seem
+  to be necessary, and it causes problems with things like `$#x = $y$` 
(#34).
+
+* Fix assignment of module name in package imports (#30).
+
+* Don't allow `container.at` to insert new values (#26).
+
+* Handle `dict.at(variable) = expression` (#25).
+
+* Remove dependency on the unmaintained digits library (#24).
+  We just copy the code for the function we need (with
+  attribution): it is BSD3-licensed.
+
+---

Old:

  typst-0.5.tar.gz

New:

  typst-0.5.0.1.tar.gz



Other differences:
--
++ ghc-typst.spec ++
--- /var/tmp/diff_new_pack.G9R3BB/_old  2024-03-20 21:16:34.310936603 +0100
+++ /var/tmp/diff_new_pack.G9R3BB/_new  2024-03-20 21:16:34.314936752 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-typst
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.5
+Version:0.5.0.1
 Release:0
 Summary:Parsing and evaluating typst syntax
 License:BSD-3-Clause
@@ -39,8 +39,6 @@
 BuildRequires:  ghc-cassava-prof
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-containers-prof
-BuildRequires:  ghc-digits-devel
-BuildRequires:  ghc-digits-prof
 BuildRequires:  ghc-directory-devel
 BuildRequires:  ghc-directory-prof
 BuildRequires:  ghc-filepath-devel

++ typst-0.5.tar.gz -> typst-0.5.0.1.tar.gz ++
/work/SRC/openSUSE:Factory/ghc-typst/typst-0.5.tar.gz 
/work/SRC/openSUSE:Factory/.ghc-typst.new.1905/typst-0.5.0.1.tar.gz differ: 
char 13, line 1


commit ghc-git-lfs for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-git-lfs for openSUSE:Factory 
checked in at 2024-03-20 21:14:08

Comparing /work/SRC/openSUSE:Factory/ghc-git-lfs (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-git-lfs.new.1905 (New)


Package is "ghc-git-lfs"

Wed Mar 20 21:14:08 2024 rev:2 rq:1157249 version:1.2.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-git-lfs/ghc-git-lfs.changes  2023-09-28 
00:33:26.369877758 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-git-lfs.new.1905/ghc-git-lfs.changes
2024-03-20 21:16:07.701939377 +0100
@@ -1,0 +2,12 @@
+Thu Feb  1 16:26:43 UTC 2024 - Peter Simons 
+
+- Update git-lfs to version 1.2.2.
+  haskell-git-lfs (1.2.2) unstable; urgency=medium
+
+* Expand aeson bounds to allow 2.2.x
+* Expand text bounds to allow 2.1.x
+* Expand bytestring boulds to allow 0.12
+
+   -- Joey Hess   Thu, 01 Feb 2024 12:25:41 -0400
+
+---

Old:

  git-lfs-1.2.1.tar.gz

New:

  git-lfs-1.2.2.tar.gz



Other differences:
--
++ ghc-git-lfs.spec ++
--- /var/tmp/diff_new_pack.AI7bDR/_old  2024-03-20 21:16:08.653975056 +0100
+++ /var/tmp/diff_new_pack.AI7bDR/_new  2024-03-20 21:16:08.657975205 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-git-lfs
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %global pkg_name git-lfs
 %global pkgver %{pkg_name}-%{version}
 Name:   ghc-%{pkg_name}
-Version:1.2.1
+Version:1.2.2
 Release:0
 Summary:Git-lfs protocol
 License:AGPL-3.0-or-later

++ git-lfs-1.2.1.tar.gz -> git-lfs-1.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-lfs-1.2.1/CHANGELOG new/git-lfs-1.2.2/CHANGELOG
--- old/git-lfs-1.2.1/CHANGELOG 2001-09-09 03:46:40.0 +0200
+++ new/git-lfs-1.2.2/CHANGELOG 2001-09-09 03:46:40.0 +0200
@@ -1,3 +1,11 @@
+haskell-git-lfs (1.2.2) unstable; urgency=medium
+
+  * Expand aeson bounds to allow 2.2.x
+  * Expand text bounds to allow 2.1.x
+  * Expand bytestring boulds to allow 0.12
+
+ -- Joey Hess   Thu, 01 Feb 2024 12:25:41 -0400
+
 haskell-git-lfs (1.2.1) unstable; urgency=medium
 
   * Expand aeson bounds to allow 2.1.x
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-lfs-1.2.1/git-lfs.cabal 
new/git-lfs-1.2.2/git-lfs.cabal
--- old/git-lfs-1.2.1/git-lfs.cabal 2001-09-09 03:46:40.0 +0200
+++ new/git-lfs-1.2.2/git-lfs.cabal 2001-09-09 03:46:40.0 +0200
@@ -1,5 +1,5 @@
 Name: git-lfs
-Version: 1.2.1
+Version: 1.2.2
 Cabal-Version: >= 1.10
 License: AGPL-3
 Maintainer: Joey Hess 
@@ -23,12 +23,12 @@
 base >= 4.5 && < 5,
 http-client >= 0.5 && < 0.8,
 http-types >= 0.7 && < 0.13,
-aeson >= 1.3 && < 2.2,
+aeson >= 1.3 && < 2.3,
 network-uri >= 2.6 && < 2.8,
 case-insensitive >= 1.2 && < 1.3,
 containers >= 0.5 && < 0.7,
-text >= 1.2 && < 2.1,
-bytestring >= 0.10 && < 0.12
+text >= 1.2 && < 2.2,
+bytestring >= 0.10 && < 0.13
 
 source-repository head
   type: git


commit ghc-tls-session-manager for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-tls-session-manager for 
openSUSE:Factory checked in at 2024-03-20 21:14:28

Comparing /work/SRC/openSUSE:Factory/ghc-tls-session-manager (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-tls-session-manager.new.1905 (New)


Package is "ghc-tls-session-manager"

Wed Mar 20 21:14:28 2024 rev:5 rq:1157269 version:0.0.5

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-tls-session-manager/ghc-tls-session-manager.changes
  2023-04-04 21:24:24.682552980 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-tls-session-manager.new.1905/ghc-tls-session-manager.changes
2024-03-20 21:16:31.970848903 +0100
@@ -1,0 +2,13 @@
+Fri Mar  1 03:32:12 UTC 2024 - Peter Simons 
+
+- Update tls-session-manager to version 0.0.5 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+---
+Tue Feb 13 01:44:33 UTC 2024 - Peter Simons 
+
+- Update tls-session-manager to version 0.0.5.
+  Upstream has not updated the file "ChangeLog.md" since the last
+  release.
+
+---

Old:

  tls-session-manager-0.0.4.tar.gz

New:

  tls-session-manager-0.0.5.tar.gz
  tls-session-manager.cabal



Other differences:
--
++ ghc-tls-session-manager.spec ++
--- /var/tmp/diff_new_pack.lWTH2f/_old  2024-03-20 21:16:32.822880834 +0100
+++ /var/tmp/diff_new_pack.lWTH2f/_new  2024-03-20 21:16:32.826880985 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-tls-session-manager
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,12 +19,13 @@
 %global pkg_name tls-session-manager
 %global pkgver %{pkg_name}-%{version}
 Name:   ghc-%{pkg_name}
-Version:0.0.4
+Version:0.0.5
 Release:0
-Summary:In-memory TLS session manager
+Summary:In-memory TLS session DB and session ticket
 License:BSD-3-Clause
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-auto-update-devel
 BuildRequires:  ghc-auto-update-prof
@@ -36,18 +37,22 @@
 BuildRequires:  ghc-bytestring-prof
 BuildRequires:  ghc-clock-devel
 BuildRequires:  ghc-clock-prof
+BuildRequires:  ghc-crypto-token-devel
+BuildRequires:  ghc-crypto-token-prof
 BuildRequires:  ghc-memory-devel
 BuildRequires:  ghc-memory-prof
 BuildRequires:  ghc-psqueues-devel
 BuildRequires:  ghc-psqueues-prof
 BuildRequires:  ghc-rpm-macros
+BuildRequires:  ghc-serialise-devel
+BuildRequires:  ghc-serialise-prof
 BuildRequires:  ghc-tls-devel
 BuildRequires:  ghc-tls-prof
 ExcludeArch:%{ix86}
 
 %description
 TLS session manager with limitation, automatic pruning, energy saving and
-replay resistance.
+replay resistance and session ticket manager.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
@@ -78,6 +83,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ tls-session-manager-0.0.4.tar.gz -> tls-session-manager-0.0.5.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tls-session-manager-0.0.4/Network/TLS/Imports.hs 
new/tls-session-manager-0.0.5/Network/TLS/Imports.hs
--- old/tls-session-manager-0.0.4/Network/TLS/Imports.hs2020-01-07 
11:32:05.0 +0100
+++ new/tls-session-manager-0.0.5/Network/TLS/Imports.hs2001-09-09 
03:46:40.0 +0200
@@ -1,12 +1,12 @@
 module Network.TLS.Imports (
-module Control.Applicative
-  , module Control.Monad
-  , module Data.Int
-  , module Data.List
-  , module Data.Maybe
-  , module Data.Monoid
-  , module Data.Word
-  ) where
+module Control.Applicative,
+module Control.Monad,
+module Data.Int,
+module Data.List,
+module Data.Maybe,
+module Data.Monoid,
+module Data.Word,
+) where
 
 import Control.Applicative
 import Control.Monad
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/tls-session-manager-0.0.4/Network/TLS/SessionManager.hs 
new/tls-session-manager-0.0.5/Network/TLS/SessionManager.hs
--- old/tls-session-manager-0.0.4/Network/TLS/SessionManager.hs 2020-01-07 
11:32:05.0 +0100
+++ new/tls-session-manager-0.0.5/Networ

commit ghc-ghc-lib-parser for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-ghc-lib-parser for 
openSUSE:Factory checked in at 2024-03-20 21:14:06

Comparing /work/SRC/openSUSE:Factory/ghc-ghc-lib-parser (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-ghc-lib-parser.new.1905 (New)


Package is "ghc-ghc-lib-parser"

Wed Mar 20 21:14:06 2024 rev:8 rq:1157247 version:9.8.2.20240223

Changes:

--- /work/SRC/openSUSE:Factory/ghc-ghc-lib-parser/ghc-ghc-lib-parser.changes
2024-01-17 22:16:07.708822576 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-ghc-lib-parser.new.1905/ghc-ghc-lib-parser.changes
  2024-03-20 21:16:04.669825742 +0100
@@ -1,0 +2,6 @@
+Fri Feb 23 13:48:37 UTC 2024 - Peter Simons 
+
+- Update ghc-lib-parser to version 9.8.2.20240223.
+  Upstream does not provide a change log file.
+
+---

Old:

  ghc-lib-parser-9.6.4.20240109.tar.gz

New:

  ghc-lib-parser-9.8.2.20240223.tar.gz



Other differences:
--
++ ghc-ghc-lib-parser.spec ++
--- /var/tmp/diff_new_pack.mKBaN9/_old  2024-03-20 21:16:06.065878061 +0100
+++ /var/tmp/diff_new_pack.mKBaN9/_new  2024-03-20 21:16:06.065878061 +0100
@@ -19,7 +19,7 @@
 %global pkg_name ghc-lib-parser
 %global pkgver %{pkg_name}-%{version}
 Name:   ghc-%{pkg_name}
-Version:9.6.4.20240109
+Version:9.8.2.20240223
 Release:0
 Summary:The GHC API, decoupled from GHC versions
 License:BSD-3-Clause

++ ghc-lib-parser-9.6.4.20240109.tar.gz -> 
ghc-lib-parser-9.8.2.20240223.tar.gz ++
 55933 lines of diff (skipped)


commit ghc-hledger-lib for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-hledger-lib for openSUSE:Factory 
checked in at 2024-03-20 21:14:09

Comparing /work/SRC/openSUSE:Factory/ghc-hledger-lib (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-hledger-lib.new.1905 (New)


Package is "ghc-hledger-lib"

Wed Mar 20 21:14:09 2024 rev:27 rq:1157250 version:1.32.3

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hledger-lib/ghc-hledger-lib.changes  
2024-02-06 16:35:15.964606047 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-hledger-lib.new.1905/ghc-hledger-lib.changes
2024-03-20 21:16:08.833981802 +0100
@@ -1,0 +2,5 @@
+Tue Mar 12 15:07:08 UTC 2024 - Peter Simons 
+
+- Jailbreak build for ghc-9.8.x.
+
+---



Other differences:
--
++ ghc-hledger-lib.spec ++
--- /var/tmp/diff_new_pack.X1yEo2/_old  2024-03-20 21:16:09.474005788 +0100
+++ /var/tmp/diff_new_pack.X1yEo2/_new  2024-03-20 21:16:09.474005788 +0100
@@ -173,6 +173,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cabal-tweak-dep-ver base "<4.19" "< 5"
 
 %build
 %ghc_lib_build


commit git-annex for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package git-annex for openSUSE:Factory 
checked in at 2024-03-20 21:14:33

Comparing /work/SRC/openSUSE:Factory/git-annex (Old)
 and  /work/SRC/openSUSE:Factory/.git-annex.new.1905 (New)


Package is "git-annex"

Wed Mar 20 21:14:33 2024 rev:37 rq:1157276 version:10.20240227

Changes:

--- /work/SRC/openSUSE:Factory/git-annex/git-annex.changes  2023-11-23 
21:43:08.444999826 +0100
+++ /work/SRC/openSUSE:Factory/.git-annex.new.1905/git-annex.changes
2024-03-20 21:16:43.831293397 +0100
@@ -1,0 +2,114 @@
+Tue Feb 27 17:02:42 UTC 2024 - Peter Simons 
+
+- Update git-annex to version 10.20240227.
+  git-annex (10.20240227) upstream; urgency=medium
+
+* importfeed: Added --scrape option, which uses yt-dlp to screen scrape
+  the equivilant of an RSS feed.
+* importfeed --force: Don't treat it as a failure when an already
+  downloaded file exists. (Fixes a behavior change introduced in
+  10.20230626.)
+* importfeed --force: Avoid creating duplicates of existing
+  already downloaded files when yt-dlp or a special remote was used.
+* addurl, importfeed: Added --raw-except option.
+* stack.yaml: Update to lts-22.9 and use crypton.
+* assistant, undo: When committing, let the usual git commit
+  hooks run.
+* Added annex.commitmessage-command config.
+* pre-commit: Avoid committing the git-annex branch
+  (except when a commit is made in a view, which changes metadata).
+* Pass --no-warnings to yt-dlp.
+
+   -- Joey Hess   Tue, 27 Feb 2024 12:58:30 -0400
+
+---
+Mon Jan 29 18:12:40 UTC 2024 - Peter Simons 
+
+- Update git-annex to version 10.20240129.
+  git-annex (10.20240129) upstream; urgency=medium
+
+* info: Added "annex sizes of repositories" table to the overall display.
+* import: Sped up import from special remotes.
+* import: Added --message/-m option.
+* Support using commands that implement the Stateless OpenPGP command line
+  interface, as an alternative to gpg.
+  Currently only supported for encryption=shared special remotes,
+  when annex.shared-sop-command is configured.
+* test: Test a specified Stateless OpenPGP command when
+  run with eg --test-git-config annex.shared-sop-command=sqop
+* Improve disk free space checking when transferring unsized keys to
+  local git remotes.
+* Added configs annex.stalldetection-download, annex.stalldetection-upload,
+  annex.bwlimit-download, annex.bwlimit-upload,
+  and similar per-remote configs.
+* Improve annex.stalldetection to handle remotes that update progress
+  less frequently than the configured time period.
+* external: Monitor file size when getting content from external
+  special remotes and use that to update the progress meter,
+  in case the external special remote program does not report progress.
+* Added --expected-present file matching option.
+* webapp: Added --port option, and annex.port config.
+* assistant: When generating a gpg secret key, avoid hardcoding the
+  key algorithm and size.
+
+   -- Joey Hess   Mon, 29 Jan 2024 13:12:00 -0400
+
+  git-annex (10.20231227) upstream; urgency=medium
+
+* migrate: Support distributed migrations by recording each migration,
+  and adding a --update option that updates the local repository
+  incrementally, hard linking annex objects to their new keys.
+* pull, sync: When operating on content, automatically handle
+  distributed migrations.
+* Added annex.syncmigrations config that can be set to false to prevent
+  pull and sync from migrating object content.
+* migrate: Added --apply option that (re)applies all recorded
+  distributed migrations to the objects in repository.
+* migrate: Support adding size to URL keys that were added with
+  --relaxed, by running eg: git-annex migrate --backend=URL foo
+* When importing from a special remote, support preferred content
+  expressions that use terms that match on keys (eg "present", "copies=1").
+  Such terms are ignored when importing, since the key is not known yet.
+  Before, such expressions caused the import to fail.
+* Support git-annex copy/move --from-anywhere --to remote.
+* Make git-annex get/copy/move --from foo override configuration of
+  remote.foo.annex-ignore, as documented.
+* Lower precision of timestamps in git-annex branch, which can reduce the
+  size of the branch by up to 8%.
+* sync: Fix locking problems during merge when annex.pidlock is set.
+* Avoid a problem with temp file names ending in "." on certian
+  filesystems that have problems with such filenames.
+*

commit ghc-mono-traversable for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-mono-traversable for 
openSUSE:Factory checked in at 2024-03-20 21:14:15

Comparing /work/SRC/openSUSE:Factory/ghc-mono-traversable (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-mono-traversable.new.1905 (New)


Package is "ghc-mono-traversable"

Wed Mar 20 21:14:15 2024 rev:28 rq:1157256 version:1.0.17.0

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-mono-traversable/ghc-mono-traversable.changes
2023-04-04 21:21:40.533623456 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-mono-traversable.new.1905/ghc-mono-traversable.changes
  2024-03-20 21:16:16.378264540 +0100
@@ -1,0 +2,9 @@
+Wed Feb 28 10:35:25 UTC 2024 - Peter Simons 
+
+- Update mono-traversable to version 1.0.17.0.
+  Upstream has edited the change log file since the last release in
+  a non-trivial way, i.e. they did more than just add a new entry
+  at the top. You can review the file at:
+  http://hackage.haskell.org/package/mono-traversable-1.0.17.0/src/ChangeLog.md
+
+---

Old:

  mono-traversable-1.0.15.3.tar.gz

New:

  mono-traversable-1.0.17.0.tar.gz



Other differences:
--
++ ghc-mono-traversable.spec ++
--- /var/tmp/diff_new_pack.LYYWMc/_old  2024-03-20 21:16:17.602310413 +0100
+++ /var/tmp/diff_new_pack.LYYWMc/_new  2024-03-20 21:16:17.614310863 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-mono-traversable
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:1.0.15.3
+Version:1.0.17.0
 Release:0
 Summary:Type classes for mapping, folding, and traversing monomorphic 
containers
 License:MIT

++ mono-traversable-1.0.15.3.tar.gz -> mono-traversable-1.0.17.0.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-1.0.15.3/ChangeLog.md 
new/mono-traversable-1.0.17.0/ChangeLog.md
--- old/mono-traversable-1.0.15.3/ChangeLog.md  2021-09-24 16:01:44.0 
+0200
+++ new/mono-traversable-1.0.17.0/ChangeLog.md  2024-02-28 11:35:03.0 
+0100
@@ -1,5 +1,16 @@
 # ChangeLog for mono-traversable
 
+## 1.0.17.0
+
+* Added `inits`, `tails`, `initTails` to class `IsSequence` with tests and 
benchmarks for `initTails`.
+* Improved ghc benchmark flags.
+* Removed extraneous constraint `IsSequence` from `initMay`.
+
+## 1.0.16.0
+
+* Added MonoPointed instance for bytestring Builder
+  
[#219](https://github.com/snoyberg/mono-traversable/pull/219#pullrequestreview-1879553961)
+
 ## 1.0.15.3
 
 * Compile with GHC 9.2 (`Option` removed from `base-4.16`)
@@ -173,7 +184,7 @@
 `EqSequence` now inherits from `MonoFoldableEq`.
 
 For most users that do not define instances this should not be a breaking 
change.
-However, any instance of `EqSequence` now needs to definie `MonoFoldableEq`.
+However, any instance of `EqSequence` now needs to define `MonoFoldableEq`.
 
 
 ## 0.7.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-1.0.15.3/bench/InitTails.hs 
new/mono-traversable-1.0.17.0/bench/InitTails.hs
--- old/mono-traversable-1.0.15.3/bench/InitTails.hs1970-01-01 
01:00:00.0 +0100
+++ new/mono-traversable-1.0.17.0/bench/InitTails.hs2024-02-28 
11:35:03.0 +0100
@@ -0,0 +1,89 @@
+{-# LANGUAGE CPP #-}
+{-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE TypeApplications #-}
+{-# LANGUAGE ScopedTypeVariables #-}
+{-# LANGUAGE FlexibleInstances #-}
+{-# LANGUAGE FlexibleContexts #-}
+{-# LANGUAGE AllowAmbiguousTypes #-}
+{-# LANGUAGE TypeFamilies #-}
+module InitTails (initTailsBenchmarks) where
+
+#if MIN_VERSION_gauge(0,2,0)
+import Gauge
+#else
+import Gauge.Main
+#endif
+
+import Data.Sequences as Ss
+import Data.MonoTraversable
+import Type.Reflection (Typeable, typeRep)
+import Control.DeepSeq
+import Data.Foldable (foldl')
+import Data.Functor ((<&>))
+
+import Data.ByteString (StrictByteString)
+import Data.ByteString.Lazy (LazyByteString)
+import qualified Data.Text as TS
+import qualified Data.Text.Lazy as TL
+import Data.Sequence (Seq)
+import qualified Data.Vector as V
+import qualified Data.Vector.Unboxed as VU
+import qualified Data.Vector.Storable as VS
+
+initTailsBenchmarks :: Benchmark
+initTailsBenchmarks = bgroup "InitTails"
+  [ bmg @[Char]
+  , bmg @StrictByteString
+  , bmg @LazyByteString
+  , bmg @TS.Text
+  , bmg @TL.Text
+  , bmg @(Se

commit hlint for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package hlint for openSUSE:Factory checked 
in at 2024-03-20 21:14:36

Comparing /work/SRC/openSUSE:Factory/hlint (Old)
 and  /work/SRC/openSUSE:Factory/.hlint.new.1905 (New)


Package is "hlint"

Wed Mar 20 21:14:36 2024 rev:14 rq:1157280 version:3.8

Changes:

--- /work/SRC/openSUSE:Factory/hlint/hlint.changes  2023-11-23 
21:43:08.457000268 +0100
+++ /work/SRC/openSUSE:Factory/.hlint.new.1905/hlint.changes2024-03-20 
21:16:48.307461151 +0100
@@ -1,0 +2,12 @@
+Sat Jan 20 13:28:58 UTC 2024 - Peter Simons 
+
+- Update hlint to version 3.8.
+  3.8, released 2024-01-15
+  #1552, make --git and --ignore-glob work nicely together
+  #1502, fix incorrect free variable calculation in some cases
+  #1555, slightly more efficient concatMap usages (e.g. pull filter out)
+  #1500, suggest avoiding NonEmpty.unzip (use Functor.unzip)
+  *   #1544, upgrade to GHC 9.8
+  #1540, correct Functor law hint, was missing brackets
+
+---

Old:

  hlint-3.6.1.tar.gz

New:

  hlint-3.8.tar.gz



Other differences:
--
++ hlint.spec ++
--- /var/tmp/diff_new_pack.IXYqOw/_old  2024-03-20 21:16:49.699513320 +0100
+++ /var/tmp/diff_new_pack.IXYqOw/_new  2024-03-20 21:16:49.703513471 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package hlint
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %global pkg_name hlint
 %global pkgver %{pkg_name}-%{version}
 Name:   %{pkg_name}
-Version:3.6.1
+Version:3.8
 Release:0
 Summary:Source code suggestions
 License:BSD-3-Clause

++ hlint-3.6.1.tar.gz -> hlint-3.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hlint-3.6.1/CHANGES.txt new/hlint-3.8/CHANGES.txt
--- old/hlint-3.6.1/CHANGES.txt 2001-09-09 03:46:40.0 +0200
+++ new/hlint-3.8/CHANGES.txt   2001-09-09 03:46:40.0 +0200
@@ -1,5 +1,12 @@
 Changelog for HLint (* = breaking change)
 
+3.8, released 2024-01-15
+#1552, make --git and --ignore-glob work nicely together
+#1502, fix incorrect free variable calculation in some cases
+#1555, slightly more efficient concatMap usages (e.g. pull filter out)
+#1500, suggest avoiding NonEmpty.unzip (use Functor.unzip)
+*   #1544, upgrade to GHC 9.8
+#1540, correct Functor law hint, was missing brackets
 3.6.1, released 2023-07-03
 Attempt to make a binary release
 3.6, released 2023-06-26
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hlint-3.6.1/LICENSE new/hlint-3.8/LICENSE
--- old/hlint-3.6.1/LICENSE 2001-09-09 03:46:40.0 +0200
+++ new/hlint-3.8/LICENSE   2001-09-09 03:46:40.0 +0200
@@ -1,4 +1,4 @@
-Copyright Neil Mitchell 2006-2023.
+Copyright Neil Mitchell 2006-2024.
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hlint-3.6.1/README.md new/hlint-3.8/README.md
--- old/hlint-3.6.1/README.md   2001-09-09 03:46:40.0 +0200
+++ new/hlint-3.8/README.md 2001-09-09 03:46:40.0 +0200
@@ -1,4 +1,4 @@
-# HLint [![Hackage 
version](https://img.shields.io/hackage/v/hlint.svg?label=Hackage)](https://hackage.haskell.org/package/hlint)
 [![Stackage 
version](https://www.stackage.org/package/hlint/badge/nightly?label=Stackage)](https://www.stackage.org/package/hlint)
 [![Build 
status](https://img.shields.io/github/workflow/status/ndmitchell/hlint/ci/master.svg)](https://github.com/ndmitchell/hlint/actions)
+# HLint [![Hackage 
version](https://img.shields.io/hackage/v/hlint.svg?label=Hackage)](https://hackage.haskell.org/package/hlint)
 [![Stackage 
version](https://www.stackage.org/package/hlint/badge/nightly?label=Stackage)](https://www.stackage.org/package/hlint)
 [![Build 
status](https://img.shields.io/github/actions/workflow/status/ndmitchell/hlint/ci.yml?branch=master)](https://github.com/ndmitchell/hlint/actions)
 
 HLint is a tool for suggesting possible improvements to Haskell code. These 
suggestions include ideas such as using alternative functions, simplifying code 
and spotting redundancies. This document is structured as follows:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hlint-3.6.1/data/hlint.yaml 
new/hlint-3.8/data/hlint.yaml
--- old/hlint-3.6.1/data/hlint.yaml

commit pandoc-cli for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package pandoc-cli for openSUSE:Factory 
checked in at 2024-03-20 21:14:37

Comparing /work/SRC/openSUSE:Factory/pandoc-cli (Old)
 and  /work/SRC/openSUSE:Factory/.pandoc-cli.new.1905 (New)


Package is "pandoc-cli"

Wed Mar 20 21:14:37 2024 rev:5 rq:1157281 version:3.1.12.2

Changes:

--- /work/SRC/openSUSE:Factory/pandoc-cli/pandoc-cli.changes2024-01-10 
21:51:48.743129468 +0100
+++ /work/SRC/openSUSE:Factory/.pandoc-cli.new.1905/pandoc-cli.changes  
2024-03-20 21:16:49.947522616 +0100
@@ -1,0 +2,12 @@
+Fri Mar  1 05:49:44 UTC 2024 - Peter Simons 
+
+- Update pandoc-cli to version 3.1.12.2.
+  Upstream does not provide a change log file.
+
+---
+Sun Feb 18 01:35:33 UTC 2024 - Peter Simons 
+
+- Update pandoc-cli to version 3.1.12.1.
+  Upstream does not provide a change log file.
+
+---

Old:

  pandoc-cli-3.1.11.1.tar.gz

New:

  pandoc-cli-3.1.12.2.tar.gz



Other differences:
--
++ pandoc-cli.spec ++
--- /var/tmp/diff_new_pack.WsS2lo/_old  2024-03-20 21:16:50.547545102 +0100
+++ /var/tmp/diff_new_pack.WsS2lo/_new  2024-03-20 21:16:50.551545252 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   pandoc-cli
-Version:3.1.11.1
+Version:3.1.12.2
 Release:0
 Summary:Conversion between documentation formats
 License:GPL-2.0-or-later

++ pandoc-cli-3.1.11.1.tar.gz -> pandoc-cli-3.1.12.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pandoc-cli-3.1.11.1/man/pandoc-lua.1 
new/pandoc-cli-3.1.12.2/man/pandoc-lua.1
--- old/pandoc-cli-3.1.11.1/man/pandoc-lua.12001-09-09 03:46:40.0 
+0200
+++ new/pandoc-cli-3.1.12.2/man/pandoc-lua.12001-09-09 03:46:40.0 
+0200
@@ -1,6 +1,6 @@
-.\" Automatically generated by Pandoc 3.1.11.1
+.\" Automatically generated by Pandoc 3.1.12.2
 .\"
-.TH "pandoc-lua" "1" "September 22, 2022" "pandoc 3.1.11.1" "Pandoc User\[cq]s 
Guide"
+.TH "pandoc-lua" "1" "September 22, 2022" "pandoc 3.1.12.2" "Pandoc User\[cq]s 
Guide"
 .SH SYNOPSIS
 \f[CR]pandoc\-lua\f[R] [\f[I]options\f[R]] [\f[I]script\f[R]
 [\f[I]args\f[R]]]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pandoc-cli-3.1.11.1/man/pandoc-server.1 
new/pandoc-cli-3.1.12.2/man/pandoc-server.1
--- old/pandoc-cli-3.1.11.1/man/pandoc-server.1 2001-09-09 03:46:40.0 
+0200
+++ new/pandoc-cli-3.1.12.2/man/pandoc-server.1 2001-09-09 03:46:40.0 
+0200
@@ -1,6 +1,6 @@
-.\" Automatically generated by Pandoc 3.1.11.1
+.\" Automatically generated by Pandoc 3.1.12.2
 .\"
-.TH "pandoc-server" "1" "August 15, 2022" "pandoc 3.1.11.1" "Pandoc User\[cq]s 
Guide"
+.TH "pandoc-server" "1" "August 15, 2022" "pandoc 3.1.12.2" "Pandoc User\[cq]s 
Guide"
 .SH SYNOPSIS
 \f[CR]pandoc\-server\f[R] [\f[I]options\f[R]]
 .SH DESCRIPTION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pandoc-cli-3.1.11.1/man/pandoc.1 
new/pandoc-cli-3.1.12.2/man/pandoc.1
--- old/pandoc-cli-3.1.11.1/man/pandoc.12001-09-09 03:46:40.0 
+0200
+++ new/pandoc-cli-3.1.12.2/man/pandoc.12001-09-09 03:46:40.0 
+0200
@@ -1,6 +1,6 @@
-.\" Automatically generated by Pandoc 3.1.11.1
+.\" Automatically generated by Pandoc 3.1.12.2
 .\"
-.TH "pandoc" "1" "January 5, 2024" "pandoc 3.1.11.1" "Pandoc User\[cq]s Guide"
+.TH "pandoc" "1" "February 29, 2024" "pandoc 3.1.12.2" "Pandoc User\[cq]s 
Guide"
 .SH NAME
 pandoc - general markup converter
 .SH SYNOPSIS
@@ -217,6 +217,8 @@
 .IP \[bu] 2
 \f[CR]tsv\f[R] (TSV table)
 .IP \[bu] 2
+\f[CR]djot\f[R] (Djot markup)
+.IP \[bu] 2
 \f[CR]docbook\f[R] (DocBook)
 .IP \[bu] 2
 \f[CR]docx\f[R] (Word docx)
@@ -324,6 +326,8 @@
 .IP \[bu] 2
 \f[CR]csljson\f[R] (CSL JSON bibliography)
 .IP \[bu] 2
+\f[CR]djot\f[R] (Djot markup)
+.IP \[bu] 2
 \f[CR]docbook\f[R] or \f[CR]docbook4\f[R] (DocBook 4)
 .IP \[bu] 2
 \f[CR]docbook5\f[R] (DocBook 5)
@@ -852,7 +856,7 @@
 in the source, there will be nonsemantic newlines in the output as
 well).
 In \f[CR]ipynb\f[R] output, this option affects wrapping of the contents
-of markdown cells.
+of Markdown cells.
 .TP
 \f[CR]\-\-columns=\f[R]\f[I]NUMBER\f[R]
 Specify length of lines in characters.
@@ -969,6 +973,11 @@
 searched before those that come earlier, so
 \f[CR]\-\-resource\-path foo:bar \-\-resource\-path baz:bim\f[R] is
 equivalent to \f[CR]\-\-resource\-path baz:bim:foo:bar\f[R].
+Note that this option only has an effect when pandoc itself needs to
+find an image (e.g., in producing a PDF or doc

commit xmobar for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package xmobar for openSUSE:Factory checked 
in at 2024-03-20 21:14:38

Comparing /work/SRC/openSUSE:Factory/xmobar (Old)
 and  /work/SRC/openSUSE:Factory/.xmobar.new.1905 (New)


Package is "xmobar"

Wed Mar 20 21:14:38 2024 rev:29 rq:1157282 version:0.47.4

Changes:

--- /work/SRC/openSUSE:Factory/xmobar/xmobar.changes2024-02-16 
21:42:00.896962698 +0100
+++ /work/SRC/openSUSE:Factory/.xmobar.new.1905/xmobar.changes  2024-03-20 
21:16:50.723551699 +0100
@@ -1,0 +2,7 @@
+Sun Mar  3 18:32:59 UTC 2024 - Peter Simons 
+
+- Update xmobar to version 0.47.4.
+  Upstream has not updated the file "changelog.md" since the last
+  release.
+
+---

Old:

  xmobar-0.47.3.tar.gz

New:

  xmobar-0.47.4.tar.gz



Other differences:
--
++ xmobar.spec ++
--- /var/tmp/diff_new_pack.WitrV2/_old  2024-03-20 21:16:51.327574336 +0100
+++ /var/tmp/diff_new_pack.WitrV2/_new  2024-03-20 21:16:51.331574485 +0100
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   %{pkg_name}
-Version:0.47.3
+Version:0.47.4
 Release:0
 Summary:A Minimalistic Text Based Status Bar
 License:BSD-3-Clause

++ xmobar-0.47.3.tar.gz -> xmobar-0.47.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xmobar-0.47.3/etc/xmobar.el 
new/xmobar-0.47.4/etc/xmobar.el
--- old/xmobar-0.47.3/etc/xmobar.el 2001-09-09 03:46:40.0 +0200
+++ new/xmobar-0.47.4/etc/xmobar.el 2001-09-09 03:46:40.0 +0200
@@ -1,6 +1,6 @@
 ;; xmobar.el --- Display xmobar text output -*- lexical-binding: t -*-
 
-;; Copyright 2022 jao 
+;; Copyright 2022, 2024 jao 
 ;; Version: 0.0.1
 ;; Package-Requires: ((emacs "28.1"))
 ;; Keywords: unix
@@ -98,28 +98,33 @@
 
 (defun xmobar--update (update)
   "Apply an UPDATE to the xmobar bar."
-  (when xmobar-mode
-(let* ((str (funcall xmobar--colorize-fn update))
+  (when (and xmobar-mode update)
+(let* ((str (or (funcall xmobar--colorize-fn update) ""))
(strs (and xmobar-tab-split (split-string str xmobar-tab-split
   (setq xmobar-string (if strs (cadr strs) str)
 xmobar--left-string (or (car strs) "")
-xmobar--len (+ (string-width xmobar--left-string)
-   (string-width xmobar-string
+xmobar--len (+ (string-width (or xmobar--left-string ""))
+   (string-width (or xmobar-string "")
 (force-mode-line-update t)))
 
 (defun xmobar--process-filter (proc string)
   "Process output from the xmobar process."
-  (let ((buf (process-buffer proc)))
-(when (buffer-live-p buf)
-  (with-current-buffer buf
-;; Write the input to the buffer (might be partial).
-(save-excursion
-  (goto-char (process-mark proc))
-  (insert string)
-  (set-marker (process-mark proc) (point)))
-(when (string-match-p "\n$" string)
-  (xmobar--update (buffer-substring (point-min) (- (point-max) 1)))
-  (delete-region (point-min) (point-max)))
+  (when string
+(let ((buf (process-buffer proc)))
+  (condition-case err
+  (when (buffer-live-p buf)
+(with-current-buffer buf
+  ;; Write the input to the buffer (might be partial).
+  (save-excursion
+(goto-char (process-mark proc))
+(insert string)
+(set-marker (process-mark proc) (point)))
+  (when (string-match-p "\n$" string)
+(xmobar--update (buffer-substring (point-min) (- (point-max) 
1)))
+(delete-region (point-min) (point-max)
+(error (message "Error running xmobar filter: %s"
+(error-message-string err))
+   (xmobar--stop))
 
 (defun xmobar--process-sentinel (proc status)
   "Handle events from the xmobar process (PROC).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xmobar-0.47.3/src/Xmobar/Plugins/Monitors/Batt/Common.hs 
new/xmobar-0.47.4/src/Xmobar/Plugins/Monitors/Batt/Common.hs
--- old/xmobar-0.47.3/src/Xmobar/Plugins/Monitors/Batt/Common.hs
2001-09-09 03:46:40.0 +0200
+++ new/xmobar-0.47.4/src/Xmobar/Plugins/Monitors/Batt/Common.hs
2001-09-09 03:46:40.0 +0200
@@ -1,7 +1,7 @@
 -
 -- |
 -- Module  :  Plugins.Monitors.Batt.Common
--- Copyright   :  (c) 2010, 2011, 2012, 2013, 2015, 2016, 2018, 2019 Jose A 
Ortega
+

commit ghc-yesod-core for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-yesod-core for openSUSE:Factory 
checked in at 2024-03-20 21:14:39

Comparing /work/SRC/openSUSE:Factory/ghc-yesod-core (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-yesod-core.new.1905 (New)


Package is "ghc-yesod-core"

Wed Mar 20 21:14:39 2024 rev:20 rq:1157290 version:1.6.25.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-yesod-core/ghc-yesod-core.changes
2023-12-05 17:04:19.739608642 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-yesod-core.new.1905/ghc-yesod-core.changes  
2024-03-20 21:16:51.531581981 +0100
@@ -1,0 +2,8 @@
+Tue Mar  5 09:25:22 UTC 2024 - Peter Simons 
+
+- Update yesod-core to version 1.6.25.1 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+- Drop obsolete "drop-dependency-on-empty-attoparsec-aeson-library.patch".
+
+---

Old:

  drop-dependency-on-empty-attoparsec-aeson-library.patch

New:

  yesod-core.cabal

BETA DEBUG BEGIN:
  Old:
- Drop obsolete "drop-dependency-on-empty-attoparsec-aeson-library.patch".
BETA DEBUG END:



Other differences:
--
++ ghc-yesod-core.spec ++
--- /var/tmp/diff_new_pack.wtEoYb/_old  2024-03-20 21:16:52.375613613 +0100
+++ /var/tmp/diff_new_pack.wtEoYb/_new  2024-03-20 21:16:52.379613763 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-yesod-core
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,10 +26,12 @@
 License:MIT
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Patch1: drop-dependency-on-empty-attoparsec-aeson-library.patch
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
 BuildRequires:  ghc-aeson-prof
+BuildRequires:  ghc-attoparsec-aeson-devel
+BuildRequires:  ghc-attoparsec-aeson-prof
 BuildRequires:  ghc-auto-update-devel
 BuildRequires:  ghc-auto-update-prof
 BuildRequires:  ghc-base-devel
@@ -154,7 +156,8 @@
 This package provides the Haskell %{pkg_name} profiling library.
 
 %prep
-%autosetup -n %{pkg_name}-%{version} -p1
+%autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ yesod-core.cabal ++
name:yesod-core
version: 1.6.25.1
x-revision: 1
license: MIT
license-file:LICENSE
author:  Michael Snoyman 
maintainer:  Michael Snoyman 
synopsis:Creation of type-safe, RESTful web applications.
description: API docs and the README are available at 

category:Web, Yesod
stability:   Stable
cabal-version:   >= 1.10
build-type:  Simple
homepage:http://www.yesodweb.com/
extra-source-files:
  test/YesodCoreTest.hs
  test/YesodCoreTest/*.hs
  test/YesodCoreTest/JsLoaderSites/Bottom.hs
  test/en.msg
  test/test.hs
  test/fixtures/routes_with_line_continuations.yesodroutes
  ChangeLog.md
  README.md

library
default-language: Haskell2010
hs-source-dirs: src

build-depends:   base  >= 4.10 && < 5
   , aeson >= 1.0
   , attoparsec-aeson  >= 2.1
   , auto-update
   , blaze-html>= 0.5
   , blaze-markup  >= 0.7.1
   , bytestring>= 0.10.2
   , case-insensitive  >= 0.2
   , cereal>= 0.3
   , clientsession >= 0.9.1&& < 0.10
   , conduit   >= 1.3
   , conduit-extra
   , containers>= 0.2
   , cookie>= 0.4.3&& < 0.6
   , deepseq   >= 1.3
   , entropy
   , fast-logger   >= 2.2
   , http-types>= 0.7
   , memory
   , monad-logger  >= 0.3.10   && < 0.4
   , mtl
   , parsec>= 2&& < 3.2
   , path-pieces   >= 0.1.2&& < 0.3
   , primitive >= 0.6
   , random>= 1.0.0.2  && < 1.3
   , resourcet >= 1.2
   , shakespeare  

commit ghc-tls for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-tls for openSUSE:Factory checked 
in at 2024-03-20 21:14:27

Comparing /work/SRC/openSUSE:Factory/ghc-tls (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-tls.new.1905 (New)


Package is "ghc-tls"

Wed Mar 20 21:14:27 2024 rev:31 rq:1157268 version:2.0.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-tls/ghc-tls.changes  2023-11-23 
21:43:08.404998353 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-tls.new.1905/ghc-tls.changes
2024-03-20 21:16:30.590797183 +0100
@@ -1,0 +2,51 @@
+Fri Mar  1 03:31:34 UTC 2024 - Peter Simons 
+
+- Update tls to version 2.0.1 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+---
+Sun Feb 18 22:15:12 UTC 2024 - Peter Simons 
+
+- Update tls to version 2.0.1.
+  ## Version 2.0.1
+
+  * Fix a leak of pending data to be sent.
+
+  ## Version 2.0.0
+
+  * `tls` now only supports TLS 1.2 and TLS 1.3 with safe cipher suites.
+  * Security: BREAKING CHANGE: TLS 1.0 and TLS 1.1 are removed.
+  * Security: BREAKING CHANGE: all CBC cipher suite are removed.
+  * Security: BREAKING CHANGE: RC4 and 3DES are removed.
+  * Security: BREAKING CHANGE: DSS(digital signature standard) is removed.
+  * Security: BREAKING CHANGE: TLS 1.2 servers require
+EMS(extended main secret) by default.
+`supportedExtendedMasterSec` is renamed to
+`supportedExtendedMainSecret`.
+  * BREAKING CHANGE: the package is now complied with `Strict` and 
`StrictData`.
+  * BREAKING CHANGE: Many data structures are re-defined with
+   `PatternSynonyms` for extensibility.
+  * BREAKING CHANGE: the structure of `SessionManager` is changed
+to support session tickets.
+  * API: BREAKING CHANGE: `sendData` can send early data (0-RTT).
+`clientEarlyData` is removed.
+To send early data via `sendData`, set `clientUseEarlyData` to `True`.
+[#466](https://github.com/haskell-tls/hs-tls/issues/466)
+  * API: `handshake` can receive an alert of client authentication failure
+for TLS 1.3.
+[#463](https://github.com/haskell-tls/hs-tls/pull/463)
+  * API: `bye` can receive NewSessionTicket for TLS 1.3.
+  * Channel binding: `getFinished` and `getPeerFinished` are deprecated.
+Use `getTLSUnique` instead.
+[#462](https://github.com/haskell-tls/hs-tls/pull/462)
+  * Channel binding: `getTLSExporter` and `getTLSServerEndPoint` are provided.
+[#462](https://github.com/haskell-tls/hs-tls/pull/462)
+  * Refactoring: the monolithic `handshake` is divided to follow
+the diagram of TLS 1.2 and 1.3 for readability.
+  * Refactoring: test cases are refactored for maintenability
+and readablity. `hspec` is used instead of `tasty`.
+  * Code format: `fourmolu` is used as an official formatter.
+  * Catching up RFC8446bis-09.
+[#467](https://github.com/haskell-tls/hs-tls/issues/467)
+
+---

Old:

  tls-1.9.0.tar.gz

New:

  tls-2.0.1.tar.gz
  tls.cabal



Other differences:
--
++ ghc-tls.spec ++
--- /var/tmp/diff_new_pack.xWwdg4/_old  2024-03-20 21:16:31.658837209 +0100
+++ /var/tmp/diff_new_pack.xWwdg4/_new  2024-03-20 21:16:31.662837360 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-tls
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,12 +20,13 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:1.9.0
+Version:2.0.1
 Release:0
-Summary:TLS/SSL protocol native implementation (Server and Client)
+Summary:TLS protocol native implementation
 License:BSD-3-Clause
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-asn1-encoding-devel
 BuildRequires:  ghc-asn1-encoding-prof
@@ -35,6 +36,8 @@
 BuildRequires:  ghc-async-prof
 BuildRequires:  ghc-base-devel
 BuildRequires:  ghc-base-prof
+BuildRequires:  ghc-base16-bytestring-devel
+BuildRequires:  ghc-base16-bytestring-prof
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-bytestring-prof
 BuildRequires:  ghc-cereal-devel
@@ -56,6 +59,8 @@
 BuildRequires:  ghc-network-devel
 BuildRequires:  ghc-network-prof
 BuildRequires:  ghc-rpm-macros
+BuildRequires:  ghc-serialise-

commit python-altair for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-altair for openSUSE:Factory 
checked in at 2024-03-20 21:14:49

Comparing /work/SRC/openSUSE:Factory/python-altair (Old)
 and  /work/SRC/openSUSE:Factory/.python-altair.new.1905 (New)


Package is "python-altair"

Wed Mar 20 21:14:49 2024 rev:16 rq:1159814 version:5.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-altair/python-altair.changes  
2024-03-01 23:36:28.947361915 +0100
+++ /work/SRC/openSUSE:Factory/.python-altair.new.1905/python-altair.changes
2024-03-20 21:17:01.399949734 +0100
@@ -1,0 +2,7 @@
+Fri Mar 15 19:47:34 UTC 2024 - Ben Greiner 
+
+- Disable jupyter testing for python39: dropped support in
+  ipython 8.19
+- Update requirements
+
+---



Other differences:
--
++ python-altair.spec ++
--- /var/tmp/diff_new_pack.KDeTlu/_old  2024-03-20 21:17:02.243980739 +0100
+++ /var/tmp/diff_new_pack.KDeTlu/_new  2024-03-20 21:17:02.243980739 +0100
@@ -24,29 +24,30 @@
 URL:https://github.com/altair-viz/altair
 Source: 
https://github.com/altair-viz/altair/archive/refs/tags/v%{version}.tar.gz#/altair-%{version}.tar.gz
 BuildRequires:  %{python_module Jinja2}
-BuildRequires:  %{python_module anywidget}
+BuildRequires:  %{python_module anywidget if %python-base >= 3.10}
 BuildRequires:  %{python_module base >= 3.8}
-BuildRequires:  %{python_module black}
 BuildRequires:  %{python_module hatchling}
-BuildRequires:  %{python_module jsonschema}
-BuildRequires:  %{python_module jupyter_ipython}
+BuildRequires:  %{python_module jsonschema >= 3}
+BuildRequires:  %{python_module jupyter_ipython if %python-base >= 3.10}
 BuildRequires:  %{python_module numpy}
 BuildRequires:  %{python_module pandas}
 BuildRequires:  %{python_module pip}
 ##BuildRequires:  %%{python_module vl-convert-python}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module toolz}
-BuildRequires:  %{python_module typing-extensions}
+BuildRequires:  %{python_module typing-extensions if %python-base < 3.11}
 BuildRequires:  %{python_module vega_datasets}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-Jinja2
-Requires:   python-jsonschema
+Requires:   python-jsonschema >= 3
 Requires:   python-numpy
 Requires:   python-packaging
-Requires:   python-pandas
+Requires:   python-pandas >= 0.25
 Requires:   python-toolz
+%if 0%{?python_version_nodots} < 311
 Requires:   python-typing-extensions
+%endif
 Recommends: python-jupyter_ipython
 Recommends: python-pyarrow
 Recommends: python-vega_datasets
@@ -73,8 +74,13 @@
 
 %check
 # disable tests that require network
+donttest="test_examples or test_to_url"
 # vega requires vl-convert-python, not packaged
-%pytest -k 'not (test_examples or test_vegalite_compiler or with_format_vega 
or test_to_url)'
+donttest="$donttest or test_vegalite_compiler or with_format_vega"
+# anywidget and jupyter_ipython not available anymore in python39
+python39_ignore="--ignore tests/test_jupyter_chart.py"
+python39_donttest=" or test_check_renderer_options or test_display_options"
+%pytest -k "not ($donttest ${$python_donttest})" ${$python_ignore}
 
 %files %{python_files}
 %doc README.md


commit ghc-vty for openSUSE:Factory

2024-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-vty for openSUSE:Factory checked 
in at 2024-03-20 21:14:30

Comparing /work/SRC/openSUSE:Factory/ghc-vty (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-vty.new.1905 (New)


Package is "ghc-vty"

Wed Mar 20 21:14:30 2024 rev:15 rq:1157271 version:6.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-vty/ghc-vty.changes  2024-01-10 
21:51:42.938918692 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-vty.new.1905/ghc-vty.changes
2024-03-20 21:16:34.514944248 +0100
@@ -1,0 +2,9 @@
+Sun Jan 21 16:45:59 UTC 2024 - Peter Simons 
+
+- Update vty to version 6.2.
+  Upstream has edited the change log file since the last release in
+  a non-trivial way, i.e. they did more than just add a new entry
+  at the top. You can review the file at:
+  http://hackage.haskell.org/package/vty-6.2/src/CHANGELOG.md
+
+---

Old:

  vty-6.1.tar.gz
  vty.cabal

New:

  vty-6.2.tar.gz



Other differences:
--
++ ghc-vty.spec ++
--- /var/tmp/diff_new_pack.LI1nwB/_old  2024-03-20 21:16:35.750990571 +0100
+++ /var/tmp/diff_new_pack.LI1nwB/_new  2024-03-20 21:16:35.754990721 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-vty
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,12 @@
 %global pkg_name vty
 %global pkgver %{pkg_name}-%{version}
 Name:   ghc-%{pkg_name}
-Version:6.1
+Version:6.2
 Release:0
 Summary:A simple terminal UI library
 License:BSD-3-Clause
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-devel
 BuildRequires:  ghc-base-prof
@@ -45,8 +44,6 @@
 BuildRequires:  ghc-microlens-mtl-devel
 BuildRequires:  ghc-microlens-mtl-prof
 BuildRequires:  ghc-microlens-prof
-BuildRequires:  ghc-microlens-th-devel
-BuildRequires:  ghc-microlens-th-prof
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-mtl-prof
 BuildRequires:  ghc-parsec-devel
@@ -107,7 +104,6 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ vty-6.1.tar.gz -> vty-6.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vty-6.1/CHANGELOG.md new/vty-6.2/CHANGELOG.md
--- old/vty-6.1/CHANGELOG.md2001-09-09 03:46:40.0 +0200
+++ new/vty-6.2/CHANGELOG.md2001-09-09 03:46:40.0 +0200
@@ -1,4 +1,14 @@
 
+6.2
+---
+
+Package changes:
+* Update version bounds to support building with GHC 9.8
+
+Bug fixes:
+* Updated `PictureToSpans` module to implement its lenses manually to
+  avoid template haskell which has trouble on Windows and GHC 9.2 (#271)
+
 6.1
 ---
 
@@ -45,6 +55,9 @@
modules.
 4. If desired, call `Graphics.Vty.Config.userConfig` to load the Vty
user configuration since this step is no longer automatic.
+5. Some configurations have been moved to `Graphics.Vty.Output`. For 
+   example, `mouseMode` is no longer a field in `VtyUserConfig`. 
+   Instead, use `setMode` to enable it.
 
 For applications using more of Vty's API than just the basic
 initialization and rendering API, the full change list is provided
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vty-6.1/src/Graphics/Vty/PictureToSpans.hs 
new/vty-6.2/src/Graphics/Vty/PictureToSpans.hs
--- old/vty-6.1/src/Graphics/Vty/PictureToSpans.hs  2001-09-09 
03:46:40.0 +0200
+++ new/vty-6.2/src/Graphics/Vty/PictureToSpans.hs  2001-09-09 
03:46:40.0 +0200
@@ -3,7 +3,6 @@
 {-# LANGUAGE ExistentialQuantification #-}
 {-# LANGUAGE NamedFieldPuns #-}
 {-# LANGUAGE RankNTypes #-}
-{-# LANGUAGE TemplateHaskell #-}
 
 -- | Transforms an image into rows of operations.
 module Graphics.Vty.PictureToSpans
@@ -19,7 +18,6 @@
 
 import Lens.Micro
 import Lens.Micro.Mtl
-import Lens.Micro.TH
 import Control.Monad
 import Control.Monad.Reader
 import Control.Monad.State.Strict hiding ( state )
@@ -55,14 +53,34 @@
 , _remainingRows :: Int
 }
 
-makeLenses ''BlitState
+columnOffset :: Lens' BlitState Int
+columnOffset = lens _columnOffset (\e v -> e { _columnOffset = v })
+
+rowOffset :: Lens' BlitState Int
+rowOffset = lens _rowOffset (\e v -> e { _rowOffset = v })
+
+ski

  1   2   >