Script 'mail_helper' called by obssrc
Hello community,

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

Package is "perl-Curses"

Wed Mar 11 20:52:27 2026 rev:37 rq:1338068 version:1.460.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Curses/perl-Curses.changes  2025-02-07 
23:10:41.047564143 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Curses.new.8177/perl-Curses.changes        
2026-03-11 20:53:02.068294170 +0100
@@ -1,0 +2,12 @@
+Sat Feb 28 05:52:41 UTC 2026 - Tina Müller <[email protected]>
+
+- updated to 1.460.0 (1.46)
+   see /usr/share/doc/packages/perl-Curses/ChangeLog
+
+  New in 1.46 (Released February 27, 2026)
+
+    Add BUTTON5 constants: BUTTON5_RELEASED, BUTTON5_PRESSED, BUTTON5_CLICKED,
+    BUTTON5_DOUBLE_CLICKED, and BUTTON5_TRIPLE_CLICKED.  Thanks
+    Peder Stray <[email protected]>
+
+-------------------------------------------------------------------

Old:
----
  Curses-1.45.tar.gz

New:
----
  Curses-1.46.tar.gz
  README.md
  _scmsync.obsinfo
  build.specials.obscpio

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

Other differences:
------------------
++++++ perl-Curses.spec ++++++
--- /var/tmp/diff_new_pack.nVXamF/_old  2026-03-11 20:53:02.832325690 +0100
+++ /var/tmp/diff_new_pack.nVXamF/_new  2026-03-11 20:53:02.836325855 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Curses
 #
-# 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 Curses
 Name:           perl-Curses
-Version:        1.450.0
+Version:        1.460.0
 Release:        0
-# 1.45 -> normalize -> 1.450.0
-%define cpan_version 1.45
+# 1.46 -> normalize -> 1.460.0
+%define cpan_version 1.46
 License:        Artistic-1.0 OR GPL-1.0-or-later
 Summary:        Terminal screen handling and optimization
 URL:            https://metacpan.org/release/%{cpan_name}
 Source0:        
https://cpan.metacpan.org/authors/id/G/GI/GIRAFFED/%{cpan_name}-%{cpan_version}.tar.gz
 Source1:        cpanspec.yml
+Source100:      README.md
 BuildRequires:  perl
 BuildRequires:  perl-macros
 Provides:       perl(Curses) = %{version}

++++++ Curses-1.45.tar.gz -> Curses-1.46.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Curses-1.45/ChangeLog new/Curses-1.46/ChangeLog
--- old/Curses-1.45/ChangeLog   2024-04-28 01:16:25.000000000 +0200
+++ new/Curses-1.46/ChangeLog   2026-02-27 18:24:43.000000000 +0100
@@ -4,6 +4,12 @@
 Note that the filename "ChangeLog" is recognized by the CPAN machinery as the
 name of a change log.
 
+New in 1.46 (Released February 27, 2026)
+
+  Add BUTTON5 constants: BUTTON5_RELEASED, BUTTON5_PRESSED, BUTTON5_CLICKED,
+  BUTTON5_DOUBLE_CLICKED, and BUTTON5_TRIPLE_CLICKED.  Thanks
+  Peder Stray <[email protected]>
+
 New in 1.45 (Released April 27, 2023)
 
   Correct wide character data types to fix compile failure.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Curses-1.45/Curses.pm new/Curses-1.46/Curses.pm
--- old/Curses-1.45/Curses.pm   2024-04-28 01:16:51.000000000 +0200
+++ new/Curses-1.46/Curses.pm   2026-02-27 18:24:57.000000000 +0100
@@ -51,7 +51,7 @@
 
 package Curses;
 
-$VERSION = '1.45'; # Makefile.PL picks this up
+$VERSION = '1.46'; # Makefile.PL picks this up
 
 use Carp;
 require Exporter;
@@ -184,7 +184,9 @@
     BUTTON3_PRESSED BUTTON3_CLICKED BUTTON3_DOUBLE_CLICKED
     BUTTON3_TRIPLE_CLICKED BUTTON3_RESERVED_EVENT BUTTON4_RELEASED
     BUTTON4_PRESSED BUTTON4_CLICKED BUTTON4_DOUBLE_CLICKED
-    BUTTON4_TRIPLE_CLICKED BUTTON4_RESERVED_EVENT BUTTON_CTRL BUTTON_SHIFT
+    BUTTON4_TRIPLE_CLICKED BUTTON4_RESERVED_EVENT BUTTON5_RELEASED
+    BUTTON5_PRESSED BUTTON5_CLICKED BUTTON5_DOUBLE_CLICKED
+    BUTTON5_TRIPLE_CLICKED BUTTON5_RESERVED_EVENT BUTTON_CTRL BUTTON_SHIFT
     BUTTON_ALT ALL_MOUSE_EVENTS REPORT_MOUSE_POSITION NCURSES_MOUSE_VERSION
     E_OK E_SYSTEM_ERROR E_BAD_ARGUMENT E_POSTED E_CONNECTED E_BAD_STATE
     E_NO_ROOM E_NOT_POSTED E_UNKNOWN_COMMAND E_NO_MATCH E_NOT_SELECTABLE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Curses-1.45/CursesBoot.c new/Curses-1.46/CursesBoot.c
--- old/Curses-1.45/CursesBoot.c        2023-03-07 18:18:10.000000000 +0100
+++ new/Curses-1.46/CursesBoot.c        2026-02-27 18:22:09.000000000 +0100
@@ -884,6 +884,24 @@
 #ifdef BUTTON4_RESERVED_EVENT
     C_NEWCS("BUTTON4_RESERVED_EVENT",         BUTTON4_RESERVED_EVENT);
 #endif
+#ifdef BUTTON5_RELEASED
+    C_NEWCS("BUTTON5_RELEASED",               BUTTON5_RELEASED);
+#endif
+#ifdef BUTTON5_PRESSED
+    C_NEWCS("BUTTON5_PRESSED",                BUTTON5_PRESSED);
+#endif
+#ifdef BUTTON5_CLICKED
+    C_NEWCS("BUTTON5_CLICKED",                BUTTON5_CLICKED);
+#endif
+#ifdef BUTTON5_DOUBLE_CLICKED
+    C_NEWCS("BUTTON5_DOUBLE_CLICKED",         BUTTON5_DOUBLE_CLICKED);
+#endif
+#ifdef BUTTON5_TRIPLE_CLICKED
+    C_NEWCS("BUTTON5_TRIPLE_CLICKED",         BUTTON5_TRIPLE_CLICKED);
+#endif
+#ifdef BUTTON5_RESERVED_EVENT
+    C_NEWCS("BUTTON5_RESERVED_EVENT",         BUTTON5_RESERVED_EVENT);
+#endif
 #ifdef BUTTON_CTRL
     C_NEWCS("BUTTON_CTRL",                    BUTTON_CTRL);
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Curses-1.45/META.json new/Curses-1.46/META.json
--- old/Curses-1.45/META.json   2024-04-28 01:21:11.000000000 +0200
+++ new/Curses-1.46/META.json   2026-02-27 18:39:45.000000000 +0100
@@ -4,7 +4,7 @@
       "unknown"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter 
version 2.150010",
    "license" : [
       "unknown"
    ],
@@ -32,6 +32,6 @@
       }
    },
    "release_status" : "stable",
-   "version" : "1.45",
-   "x_serialization_backend" : "JSON::PP version 4.04"
+   "version" : "1.46",
+   "x_serialization_backend" : "JSON::PP version 4.07"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Curses-1.45/META.yml new/Curses-1.46/META.yml
--- old/Curses-1.45/META.yml    2024-04-28 01:21:11.000000000 +0200
+++ new/Curses-1.46/META.yml    2026-02-27 18:39:45.000000000 +0100
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 
2.150010'
 license: unknown
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -17,5 +17,5 @@
   directory:
     - t
     - inc
-version: '1.45'
+version: '1.46'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

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

## Build Results

Current state of perl in openSUSE:Factory is

![Factory build 
results](https://br.opensuse.org/status/openSUSE:Factory/perl-Curses/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-Curses)



++++++ _scmsync.obsinfo ++++++
mtime: 1772257962
commit: 910cf7def46ce93996a9c46f22152b4a78d3f12fcab0234263d02ae40b80cac6
url: https://src.opensuse.org/perl/perl-Curses.git
revision: 910cf7def46ce93996a9c46f22152b4a78d3f12fcab0234263d02ae40b80cac6
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:52:55.000000000 +0100
@@ -0,0 +1 @@
+.osc

Reply via email to