Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package zathura-plugin-ps for 
openSUSE:Factory checked in at 2026-07-26 11:29:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/zathura-plugin-ps (Old)
 and      /work/SRC/openSUSE:Factory/.zathura-plugin-ps.new.2004 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "zathura-plugin-ps"

Sun Jul 26 11:29:53 2026 rev:11 rq:1367759 version:2026.07.18

Changes:
--------
--- /work/SRC/openSUSE:Factory/zathura-plugin-ps/zathura-plugin-ps.changes      
2026-07-07 21:08:00.240259125 +0200
+++ 
/work/SRC/openSUSE:Factory/.zathura-plugin-ps.new.2004/zathura-plugin-ps.changes
    2026-07-26 11:32:31.787096053 +0200
@@ -1,0 +2,6 @@
+Sat Jul 25 11:50:05 UTC 2026 - Jakob Lorenz <[email protected]>
+
+- Update to version 2026.07.18:
+  * Update for new version handling 
+
+-------------------------------------------------------------------

Old:
----
  zathura-ps-2026.02.03.tar.xz
  zathura-ps-2026.02.03.tar.xz.asc

New:
----
  zathura-ps-2026.07.18.tar.xz
  zathura-ps-2026.07.18.tar.xz.asc

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

Other differences:
------------------
++++++ zathura-plugin-ps.spec ++++++
--- /var/tmp/diff_new_pack.R1134A/_old  2026-07-26 11:32:32.311114103 +0200
+++ /var/tmp/diff_new_pack.R1134A/_new  2026-07-26 11:32:32.315114241 +0200
@@ -21,7 +21,7 @@
 %bcond_without gcc15
 %endif
 Name:           zathura-plugin-ps
-Version:        2026.02.03
+Version:        2026.07.18
 Release:        0
 Summary:        PS support for zathura via libspectre
 License:        Zlib
@@ -38,8 +38,8 @@
 BuildRequires:  pkgconfig(girara)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(libspectre)
-BuildRequires:  pkgconfig(zathura) >= 2026.01.30
-Requires:       zathura >= 2026.01.30
+BuildRequires:  pkgconfig(zathura) >= 2026.07.18
+Requires:       zathura >= 2026.07.18
 Provides:       %{realname}-plugin
 %if %{with gcc15}
 BuildRequires:  gcc15

++++++ zathura-ps-2026.02.03.tar.xz -> zathura-ps-2026.07.18.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zathura-ps-2026.02.03/.github/dependabot.yml 
new/zathura-ps-2026.07.18/.github/dependabot.yml
--- old/zathura-ps-2026.02.03/.github/dependabot.yml    1970-01-01 
01:00:00.000000000 +0100
+++ new/zathura-ps-2026.07.18/.github/dependabot.yml    2026-07-18 
14:29:54.000000000 +0200
@@ -0,0 +1,6 @@
+version: 2
+updates:
+- package-ecosystem: "github-actions"
+  directory: "/"
+  schedule:
+    interval: "daily"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zathura-ps-2026.02.03/.github/workflows/build.yaml 
new/zathura-ps-2026.07.18/.github/workflows/build.yaml
--- old/zathura-ps-2026.02.03/.github/workflows/build.yaml      1970-01-01 
01:00:00.000000000 +0100
+++ new/zathura-ps-2026.07.18/.github/workflows/build.yaml      2026-07-18 
14:29:54.000000000 +0200
@@ -0,0 +1,193 @@
+name: CI
+
+on:
+  push:
+  pull_request:
+
+env:
+  VERBOSE: 1
+
+jobs:
+  clang-format:
+    name: Check clang-format output
+    runs-on: ubuntu-latest
+    container:
+      image: ghcr.io/pwmt/github-actions-debian:forky
+      credentials:
+        username: ${{ github.actor }}
+        password: ${{ secrets.GITHUB_TOKEN }}
+    steps:
+      - uses: actions/checkout@v7
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/girara
+          path: girara
+      - name: Install girara
+        run: |
+          mkdir girara/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu girara/build 
girara
+          ninja --verbose -C girara/build install
+          rm -rf girara
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/zathura
+          path: zathura
+      - name: Install zathura
+        run: |
+          mkdir zathura/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu 
zathura/build zathura
+          ninja --verbose -C zathura/build install
+          rm -rf zathura
+      - name: Build and test
+        run: |
+          mkdir build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu build .
+          ninja -C build clang-format-check
+
+  build-test-debian-trixie:
+    name: Test on Debian trixie
+    runs-on: ubuntu-latest
+    container:
+      image: ghcr.io/pwmt/github-actions-debian:trixie
+      credentials:
+        username: ${{ github.actor }}
+        password: ${{ secrets.GITHUB_TOKEN }}
+    steps:
+      - uses: actions/checkout@v7
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/girara
+          path: girara
+      - name: Install girara
+        run: |
+          mkdir girara/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu girara/build 
girara
+          ninja --verbose -C girara/build install
+          rm -rf girara
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/zathura
+          path: zathura
+      - name: Install zathura
+        run: |
+          mkdir zathura/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu 
zathura/build zathura
+          ninja --verbose -C zathura/build install
+          rm -rf zathura
+      - name: Build and test
+        run: |
+          mkdir build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu build .
+          ninja -C build --verbose
+          ninja -C build test --verbose
+
+  build-test-debian-forky:
+    name: Test on Debian forky
+    runs-on: ubuntu-latest
+    container:
+      image: ghcr.io/pwmt/github-actions-debian:forky
+      credentials:
+        username: ${{ github.actor }}
+        password: ${{ secrets.GITHUB_TOKEN }}
+    steps:
+      - uses: actions/checkout@v7
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/girara
+          path: girara
+      - name: Install girara
+        run: |
+          mkdir girara/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu girara/build 
girara
+          ninja --verbose -C girara/build install
+          rm -rf girara
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/zathura
+          path: zathura
+      - name: Install zathura
+        run: |
+          mkdir zathura/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu 
zathura/build zathura
+          ninja --verbose -C zathura/build install
+          rm -rf zathura
+      - name: Build and test
+        run: |
+          mkdir build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu build .
+          ninja -C build --verbose
+          ninja -C build test --verbose
+
+  build-test-ubuntu-resolute:
+    name: Test on Ubuntu resolute
+    runs-on: ubuntu-latest
+    container:
+      image: ghcr.io/pwmt/github-actions-ubuntu:resolute
+      credentials:
+        username: ${{ github.actor }}
+        password: ${{ secrets.GITHUB_TOKEN }}
+    steps:
+      - uses: actions/checkout@v7
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/girara
+          path: girara
+      - name: Install girara
+        run: |
+          mkdir girara/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu girara/build 
girara
+          ninja --verbose -C girara/build install
+          rm -rf girara
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/zathura
+          path: zathura
+      - name: Install zathura
+        run: |
+          mkdir zathura/build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu 
zathura/build zathura
+          ninja --verbose -C zathura/build install
+          rm -rf zathura
+      - name: Build and test
+        run: |
+          mkdir build
+          meson setup --prefix /usr --libdir=lib/x86_64-linux-gnu build .
+          ninja -C build --verbose
+          ninja -C build test --verbose
+
+  build-test-archlinux:
+    name: Test on Archlinux
+    runs-on: ubuntu-latest
+    container:
+      image: ghcr.io/pwmt/github-actions-archlinux:latest
+      credentials:
+        username: ${{ github.actor }}
+        password: ${{ secrets.GITHUB_TOKEN }}
+    steps:
+      - uses: actions/checkout@v7
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/girara
+          path: girara
+      - name: Install girara
+        run: |
+          mkdir girara/build
+          meson setup --prefix /usr girara/build girara
+          ninja --verbose -C girara/build install
+          rm -rf girara
+      - uses: actions/checkout@v7
+        with:
+          repository: pwmt/zathura
+          path: zathura
+      - name: Install zathura
+        run: |
+          mkdir zathura/build
+          meson setup --prefix /usr zathura/build zathura
+          ninja --verbose -C zathura/build install
+          rm -rf zathura
+      - name: Build and test
+        run: |
+          mkdir build
+          meson setup --prefix /usr build .
+          ninja -C build --verbose
+          ninja -C build test --verbose
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zathura-ps-2026.02.03/data/meson.build 
new/zathura-ps-2026.07.18/data/meson.build
--- old/zathura-ps-2026.02.03/data/meson.build  2026-02-03 21:46:58.000000000 
+0100
+++ new/zathura-ps-2026.07.18/data/meson.build  2026-07-18 14:29:54.000000000 
+0200
@@ -1,7 +1,7 @@
 install_data('org.pwmt.zathura-ps.metainfo.xml', install_dir: metainfodir)
 install_data('org.pwmt.zathura-ps.desktop', install_dir: desktopdir)
 
-desktop_file_validate = find_program('desktop-file-validate', required: 
get_option('tests'), native: true)
+desktop_file_validate = find_program('desktop-file-validate', required: false, 
native: true)
 if desktop_file_validate.found()
   test('validate-desktop',
     desktop_file_validate,
@@ -9,7 +9,7 @@
   )
 endif
 
-appstream_util = find_program('appstreamcli', required: get_option('tests'), 
native: true)
+appstream_util = find_program('appstreamcli', required: false, native: true)
 if appstream_util.found()
   test('validate-appdata',
     appstream_util,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zathura-ps-2026.02.03/data/org.pwmt.zathura-ps.metainfo.xml 
new/zathura-ps-2026.07.18/data/org.pwmt.zathura-ps.metainfo.xml
--- old/zathura-ps-2026.02.03/data/org.pwmt.zathura-ps.metainfo.xml     
2026-02-03 21:46:58.000000000 +0100
+++ new/zathura-ps-2026.07.18/data/org.pwmt.zathura-ps.metainfo.xml     
2026-07-18 14:29:54.000000000 +0200
@@ -16,6 +16,7 @@
   <url type="contact">https://pwmt.org/contact</url>
   <url type="vcs-browser">https://github.com/pwmt/zathura-ps</url>
   <releases>
+    <release version="2026.07.18" date="2026-07-18" />
     <release version="2026.02.03" date="2026-02-03" />
     <release version="2026.01.30" date="2026-01-30" />
     <release version="0.2.9" date="2025-10-28" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zathura-ps-2026.02.03/meson.build 
new/zathura-ps-2026.07.18/meson.build
--- old/zathura-ps-2026.02.03/meson.build       2026-02-03 21:46:58.000000000 
+0100
+++ new/zathura-ps-2026.07.18/meson.build       2026-07-18 14:29:54.000000000 
+0200
@@ -1,11 +1,10 @@
 project('zathura-ps', 'c',
-  version: '2026.02.03',
+  version: '2026.07.18',
   meson_version: '>=0.61',
-  default_options: ['c_std=c17', 'warning_level=3']
+  default_options: ['c_std=c23', 'warning_level=3']
 )
 
 version = meson.project_version()
-version_array = version.split('.')
 
 cc = meson.get_compiler('c')
 
@@ -14,7 +13,7 @@
 metainfodir = join_paths(datadir, 'metainfo')
 
 # required dependencies
-zathura = dependency('zathura', version: '>=2026.01.30')
+zathura = dependency('zathura', version: '>=2026.07.18')
 girara = dependency('girara')
 glib = dependency('glib-2.0')
 cairo = dependency('cairo')
@@ -30,9 +29,7 @@
 
 # defines
 defines = [
-  '-DVERSION_MAJOR=@0@'.format(version_array[0]),
-  '-DVERSION_MINOR=@0@'.format(version_array[1]),
-  '-DVERSION_REV=@0@'.format(version_array[2]),
+  '-DVERSION="@0@"'.format(version),
   '-D_DEFAULT_SOURCE',
 ]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zathura-ps-2026.02.03/meson_options.txt 
new/zathura-ps-2026.07.18/meson_options.txt
--- old/zathura-ps-2026.02.03/meson_options.txt 2026-02-03 21:46:58.000000000 
+0100
+++ new/zathura-ps-2026.07.18/meson_options.txt 2026-07-18 14:29:54.000000000 
+0200
@@ -3,8 +3,3 @@
   value: '',
   description: 'Install to a different location than Zathura\'s plugin 
directory'
 )
-option('tests',
-  type: 'feature',
-  value: 'auto',
-  description: 'run tests'
-)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zathura-ps-2026.02.03/zathura-ps/plugin.c 
new/zathura-ps-2026.07.18/zathura-ps/plugin.c
--- old/zathura-ps-2026.02.03/zathura-ps/plugin.c       2026-02-03 
21:46:58.000000000 +0100
+++ new/zathura-ps-2026.07.18/zathura-ps/plugin.c       2026-07-18 
14:29:54.000000000 +0200
@@ -2,7 +2,7 @@
 
 #include "plugin.h"
 
-ZATHURA_PLUGIN_REGISTER_WITH_FUNCTIONS("ps", VERSION_MAJOR, VERSION_MINOR, 
VERSION_REV,
+ZATHURA_PLUGIN_REGISTER_WITH_FUNCTIONS("ps", VERSION,
                                        ZATHURA_PLUGIN_FUNCTIONS({
                                            .document_open            = 
ps_document_open,
                                            .document_free            = 
ps_document_free,

Reply via email to