Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-epub-thumbnailer for 
openSUSE:Factory checked in at 2024-09-10 21:13:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-epub-thumbnailer (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-epub-thumbnailer.new.17570 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-epub-thumbnailer"

Tue Sep 10 21:13:24 2024 rev:9 rq:1199738 version:1.8

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/gnome-epub-thumbnailer/gnome-epub-thumbnailer.changes
    2022-09-30 17:59:03.273410233 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-epub-thumbnailer.new.17570/gnome-epub-thumbnailer.changes
 2024-09-10 21:14:47.517933877 +0200
@@ -1,0 +2,6 @@
+Mon Sep  9 12:43:27 UTC 2024 - Dominique Leuenberger <dims...@opensuse.org>
+
+- Update to version 1.8:
+  + Work-around a French ePub not getting a cover.
+
+-------------------------------------------------------------------

Old:
----
  gnome-epub-thumbnailer-1.7.tar.xz

New:
----
  gnome-epub-thumbnailer-1.8.tar.xz

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

Other differences:
------------------
++++++ gnome-epub-thumbnailer.spec ++++++
--- /var/tmp/diff_new_pack.g8TPaU/_old  2024-09-10 21:14:48.005954211 +0200
+++ /var/tmp/diff_new_pack.g8TPaU/_new  2024-09-10 21:14:48.005954211 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-epub-thumbnailer
 #
-# 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:           gnome-epub-thumbnailer
-Version:        1.7
+Version:        1.8
 Release:        0
 Summary:        Thumbnailer for EPub books
 License:        GPL-2.0-or-later

++++++ gnome-epub-thumbnailer-1.7.tar.xz -> gnome-epub-thumbnailer-1.8.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-epub-thumbnailer-1.7/.gitlab-ci.yml 
new/gnome-epub-thumbnailer-1.8/.gitlab-ci.yml
--- old/gnome-epub-thumbnailer-1.7/.gitlab-ci.yml       2022-09-29 
13:22:04.000000000 +0200
+++ new/gnome-epub-thumbnailer-1.8/.gitlab-ci.yml       2024-08-03 
11:16:49.000000000 +0200
@@ -1,26 +1,30 @@
-image: fedora:latest
+image: fedora:rawhide
 
-build-fedora:
-  variables:
-    DEPENDENCIES: gcc
-                  meson
-                  libarchive-devel
-                  libxml2-devel
-                  gdk-pixbuf2-devel
-                  glib2-devel
-                  git-core
+variables:
+  DEPENDENCIES:
+    libxml2-devel
+    gdk-pixbuf2-devel
+    libarchive-devel
+    meson
+    redhat-rpm-config
+    gcc
+    glibc-devel
+    git
 
+build_stable:
+  tags:
+    - crun
   before_script:
-    - dnf update -y && dnf install -y $DEPENDENCIES
+    - dnf update -y --nogpgcheck
+    - dnf install -y --nogpgcheck $DEPENDENCIES
   script:
-    - meson _build
-    - ninja -v -C _build
-    - ninja -v -C _build install
-    - ninja -v -C _build uninstall
-    - ninja -v -C _build dist
+    - meson . _build --prefix=/usr
+    - ninja -C _build
+    - ninja -C _build install
+    - ninja -C _build dist
   artifacts:
-      when: always
-      name: "gnome-epub-thumbnailer-${CI_COMMIT_REF_NAME}"
-      paths:
-        - "${CI_PROJECT_DIR}/_build/meson-logs"
-        - "${CI_PROJECT_DIR}/_build/meson-dist"
\ No newline at end of file
+    when: always
+    paths:
+      - "${CI_PROJECT_DIR}/_build/meson-logs/"
+      - "${CI_PROJECT_DIR}/_build/meson-dist"
+      - "${CI_PROJECT_DIR}/_build/meson-private/dist-build/meson-logs/"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-epub-thumbnailer-1.7/NEWS 
new/gnome-epub-thumbnailer-1.8/NEWS
--- old/gnome-epub-thumbnailer-1.7/NEWS 2022-09-29 13:22:04.000000000 +0200
+++ new/gnome-epub-thumbnailer-1.8/NEWS 2024-08-03 11:16:49.000000000 +0200
@@ -1,3 +1,7 @@
+1.8
+---
+- Work-around a French ePub not getting a cover
+
 1.7
 ---
 - Fix thumbnailing of books with ePub 3.2 "cover-image"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-epub-thumbnailer-1.7/meson.build 
new/gnome-epub-thumbnailer-1.8/meson.build
--- old/gnome-epub-thumbnailer-1.7/meson.build  2022-09-29 13:22:04.000000000 
+0200
+++ new/gnome-epub-thumbnailer-1.8/meson.build  2024-08-03 11:16:49.000000000 
+0200
@@ -1,4 +1,4 @@
-project('gnome-epub-thumbnailer', 'c', version : '1.7')
+project('gnome-epub-thumbnailer', 'c', version : '1.8')
 
 deps = [dependency('gdk-pixbuf-2.0'),
         dependency('gio-2.0'),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gnome-epub-thumbnailer-1.7/src/gnome-epub-thumbnailer.c 
new/gnome-epub-thumbnailer-1.8/src/gnome-epub-thumbnailer.c
--- old/gnome-epub-thumbnailer-1.7/src/gnome-epub-thumbnailer.c 2022-09-29 
13:22:04.000000000 +0200
+++ new/gnome-epub-thumbnailer-1.8/src/gnome-epub-thumbnailer.c 2024-08-03 
11:16:49.000000000 +0200
@@ -301,7 +301,7 @@
        if (cover_data == NULL) {
                GRegex *regex;
 
-               regex = g_regex_new (".*cover.*\\.(jpg|jpeg|png|svg)",
+               regex = g_regex_new (".*(cover|couv).*\\.(jpg|jpeg|png|svg)",
                                     G_REGEX_CASELESS, 0, NULL);
                cover_data = file_get_zipped_contents (path, regex_matches, 
regex, &length);
        }

Reply via email to