Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl-Minion for openSUSE:Factory checked in at 2026-05-23 23:25:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Minion (Old) and /work/SRC/openSUSE:Factory/.perl-Minion.new.2084 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Minion" Sat May 23 23:25:17 2026 rev:81 rq:1354723 version:12.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Minion/perl-Minion.changes 2026-05-21 18:33:31.549821856 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Minion.new.2084/perl-Minion.changes 2026-05-23 23:27:21.032646432 +0200 @@ -1,0 +2,5 @@ +Fri May 22 11:19:30 UTC 2026 - Tina Müller <[email protected]> + +- Add mojo-pg-dependency-workaround.patch + +------------------------------------------------------------------- New: ---- mojo-pg-dependency-workaround.patch ----------(New B)---------- New: - Add mojo-pg-dependency-workaround.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Minion.spec ++++++ --- /var/tmp/diff_new_pack.gjHCB6/_old 2026-05-23 23:27:21.636671090 +0200 +++ /var/tmp/diff_new_pack.gjHCB6/_new 2026-05-23 23:27:21.640671253 +0200 @@ -28,6 +28,8 @@ Source0: https://cpan.metacpan.org/authors/id/S/SR/SRI/%{cpan_name}-%{cpan_version}.tar.gz Source1: cpanspec.yml Source100: README.md +# PATCH-FIX-OPENSUSE +Patch0: mojo-pg-dependency-workaround.patch BuildArch: noarch BuildRequires: perl BuildRequires: perl-macros ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.gjHCB6/_old 2026-05-23 23:27:21.696673539 +0200 +++ /var/tmp/diff_new_pack.gjHCB6/_new 2026-05-23 23:27:21.704673866 +0200 @@ -1,6 +1,6 @@ -mtime: 1779180027 -commit: ffe39e233228fd2e12acb41ab7b04e89c6d78eb1c3cc31e322143751c217b9d3 +mtime: 1779448987 +commit: 20ebf54bc7c1769759c1f0b16360a43e78e9be16d15bfdbdbcbe64ae33e31d78 url: https://src.opensuse.org/perl/perl-Minion -revision: ffe39e233228fd2e12acb41ab7b04e89c6d78eb1c3cc31e322143751c217b9d3 +revision: 20ebf54bc7c1769759c1f0b16360a43e78e9be16d15bfdbdbcbe64ae33e31d78 projectscmsync: https://src.opensuse.org/perl/_ObsPrj ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-05-22 13:23:07.000000000 +0200 @@ -0,0 +1 @@ +.osc ++++++ cpanspec.yml ++++++ --- /var/tmp/diff_new_pack.gjHCB6/_old 2026-05-23 23:27:21.908682194 +0200 +++ /var/tmp/diff_new_pack.gjHCB6/_new 2026-05-23 23:27:21.916682521 +0200 @@ -4,8 +4,8 @@ #sources: # - source1 # - source2 -#patches: -# foo.patch: -p1 +patches: + mojo-pg-dependency-workaround.patch: -p1 PATCH-FIX-OPENSUSE # bar.patch: #preamble: |- # BuildRequires: gcc-c++ ++++++ mojo-pg-dependency-workaround.patch ++++++ commit 6944869463a4708de09ac15ade6e3d26600ca806 Author: Tina Müller <[email protected]> Date: Fri May 22 13:16:02 2026 +0200 Decrease dependency for Mojo::Pg Workaround because this dependency was not declared in the package. It doesn't actually require 5.0 yet, and Mojo::Pg 5.0 requires Mojo::SQL which is a new module not yet in openSUSE. diff --git a/lib/Minion/Backend/Pg.pm b/lib/Minion/Backend/Pg.pm index 06e7006..3817548 100644 --- a/lib/Minion/Backend/Pg.pm +++ b/lib/Minion/Backend/Pg.pm @@ -5,7 +5,9 @@ use Carp qw(croak); use Minion::Util qw(next_cron_time); use Mojo::File qw(path); use Mojo::IOLoop; -use Mojo::Pg 5.0; +# Temporary workaround because this dependency was not declared in the package +# plus Mojo::Pg has a new dependency Mojo::SQL which is a new module +use Mojo::Pg 4.29; use Sys::Hostname qw(hostname); has 'pg';
