Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package perl-Acme-Damn for openSUSE:Factory 
checked in at 2026-03-11 20:52:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Acme-Damn (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Acme-Damn.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Acme-Damn"

Wed Mar 11 20:52:25 2026 rev:3 rq:1338065 version:0.90.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Acme-Damn/perl-Acme-Damn.changes    
2025-02-11 21:26:41.319367107 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Acme-Damn.new.8177/perl-Acme-Damn.changes  
2026-03-11 20:52:58.404143005 +0100
@@ -1,0 +2,9 @@
+Wed Feb 11 06:18:09 UTC 2026 - Tina Müller <[email protected]>
+
+- updated to 0.90.0 (0.09)
+   see /usr/share/doc/packages/perl-Acme-Damn/Changes
+
+  0.09  Tue Feb 10 21:37:20 2026
+    - fix bad DynaLoader import, which caused errors
+
+-------------------------------------------------------------------

Old:
----
  Acme-Damn-0.08.tar.gz

New:
----
  Acme-Damn-0.09.tar.gz
  README.md
  _scmsync.obsinfo
  build.specials.obscpio

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

Other differences:
------------------
++++++ perl-Acme-Damn.spec ++++++
--- /var/tmp/diff_new_pack.PeuDnH/_old  2026-03-11 20:52:58.928164624 +0100
+++ /var/tmp/diff_new_pack.PeuDnH/_new  2026-03-11 20:52:58.932164789 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Acme-Damn
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,15 +18,16 @@
 
 %define cpan_name Acme-Damn
 Name:           perl-Acme-Damn
-Version:        0.80.0
+Version:        0.90.0
 Release:        0
-# 0.08 -> normalize -> 0.80.0
-%define cpan_version 0.08
+# 0.09 -> normalize -> 0.90.0
+%define cpan_version 0.09
 License:        Artistic-1.0 OR GPL-1.0-or-later
 Summary:        'Unbless' Perl objects
 URL:            https://metacpan.org/release/%{cpan_name}
-Source0:        
https://cpan.metacpan.org/authors/id/I/IB/IBB/%{cpan_name}-%{cpan_version}.tar.gz
+Source0:        
https://cpan.metacpan.org/authors/id/B/BR/BRTASTIC/%{cpan_name}-%{cpan_version}.tar.gz
 Source1:        cpanspec.yml
+Source100:      README.md
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Test::Exception)

++++++ Acme-Damn-0.08.tar.gz -> Acme-Damn-0.09.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Acme-Damn-0.08/Changes new/Acme-Damn-0.09/Changes
--- old/Acme-Damn-0.08/Changes  2015-08-04 11:43:46.000000000 +0200
+++ new/Acme-Damn-0.09/Changes  2026-02-10 21:37:01.000000000 +0100
@@ -1,5 +1,7 @@
 Revision history for Perl extension Acme::Damn.
 
+0.09  Tue Feb 10 21:37:20 2026
+  - fix bad DynaLoader import, which caused errors
 
 0.06  Sun Oct 26 20:50:12 2014
   - support for Perl >= v5.18
@@ -22,3 +24,4 @@
 
 0.01   Sun Jun  8 13:40:03 2003
   - initial Acme::Damn release
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Acme-Damn-0.08/Damn.pm new/Acme-Damn-0.09/Damn.pm
--- old/Acme-Damn-0.08/Damn.pm  2016-12-02 21:43:40.000000000 +0100
+++ new/Acme-Damn-0.09/Damn.pm  2026-02-10 21:33:14.000000000 +0100
@@ -5,11 +5,11 @@
 use warnings;
 
 use Exporter;
-use DynaLoader  qw( AUTOLOAD );
+use DynaLoader;
 
 use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK );
 
-  $VERSION    = '0.08';
+  $VERSION    = '0.09';
   @ISA        = qw( Exporter DynaLoader );
   @EXPORT     = qw( damn                );
   @EXPORT_OK  = qw( bless               );
@@ -100,7 +100,7 @@
 
   my $ref = ... some reference ...
   my $obj = bless $ref , 'Some::Class';
-  
+
   ... do something with your object ...
 
      $ref = damn $obj;   # recover the original reference (unblessed)
@@ -201,6 +201,7 @@
 Copyright 2003-2016 Ian Brayshaw
 
 This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself. 
+it under the same terms as Perl itself.
 
 =cut
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Acme-Damn-0.08/META.json new/Acme-Damn-0.09/META.json
--- old/Acme-Damn-0.08/META.json        2016-12-02 21:46:17.000000000 +0100
+++ new/Acme-Damn-0.09/META.json        2026-02-10 21:39:08.000000000 +0100
@@ -4,13 +4,13 @@
       "Ian Brayshaw <[email protected]>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.142690",
+   "generated_by" : "ExtUtils::MakeMaker version 7.76, CPAN::Meta::Converter 
version 2.150010",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-      "version" : "2"
+      "version" : 2
    },
    "name" : "Acme-Damn",
    "no_index" : {
@@ -50,5 +50,6 @@
          "web" : "https://github.com/denormal/perl-Acme-Damn";
       }
    },
-   "version" : "0.08"
+   "version" : "0.09",
+   "x_serialization_backend" : "JSON::PP version 4.16"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Acme-Damn-0.08/META.yml new/Acme-Damn-0.09/META.yml
--- old/Acme-Damn-0.08/META.yml 2016-12-02 21:46:17.000000000 +0100
+++ new/Acme-Damn-0.09/META.yml 2026-02-10 21:39:08.000000000 +0100
@@ -9,7 +9,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 
2.142690'
+generated_by: 'ExtUtils::MakeMaker version 7.76, CPAN::Meta::Converter version 
2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -23,4 +23,5 @@
   perl: '5.006'
 resources:
   repository: git://github.com/denormal/perl-Acme-Damn.git
-version: '0.08'
+version: '0.09'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.020'

++++++ README.md ++++++

## Build Results

Current state of perl in openSUSE:Factory is

![Factory build 
results](https://br.opensuse.org/status/openSUSE:Factory/perl-Acme-Damn/standard)

The current state of perl in the devel project build (devel:languages:perl)

![Devel project build 
results](https://br.opensuse.org/status/devel:languages:perl/perl-Acme-Damn)



++++++ _scmsync.obsinfo ++++++
mtime: 1770790690
commit: ab68a5cb72ccd353285f18cb4940da5fd2158bacacaa9066dac066a2aeba747c
url: https://src.opensuse.org/perl/perl-Acme-Damn.git
revision: ab68a5cb72ccd353285f18cb4940da5fd2158bacacaa9066dac066a2aeba747c
projectscmsync: https://src.opensuse.org/perl/_ObsPrj

++++++ 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-03-09 19:32:14.000000000 +0100
@@ -0,0 +1 @@
+.osc

Reply via email to