Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl-IO-Tty for openSUSE:Factory checked in at 2026-04-15 16:03:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-IO-Tty (Old) and /work/SRC/openSUSE:Factory/.perl-IO-Tty.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-IO-Tty" Wed Apr 15 16:03:59 2026 rev:30 rq:1346902 version:1.270.0 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-IO-Tty/perl-IO-Tty.changes 2024-03-10 20:23:40.707926590 +0100 +++ /work/SRC/openSUSE:Factory/.perl-IO-Tty.new.21863/perl-IO-Tty.changes 2026-04-15 16:05:27.497188478 +0200 @@ -1,0 +2,107 @@ +Thu Apr 9 11:55:50 UTC 2026 - Tina Müller <[email protected]> + +- updated to 1.270.0 (1.27) + see /usr/share/doc/packages/perl-IO-Tty/ChangeLog + + 1.27 2026-04-03 Todd Rinaldo <[email protected]> + Bug Fixes: + * GH #68, PR #68 - Fix build on OpenBSD by including termios.h to + detect openpty reliably and setting _BSD_SOURCE to find strlcpy + in includes. (Alexander Bluhm) + 1.26 2026-04-02 Todd Rinaldo <[email protected]> + Bug Fixes: + * PR #67 - Fix strlcpy detection on DragonFly BSD to avoid + static/non-static declaration conflict. Added __DragonFly__ guard + to the function test (paralleling __FreeBSD__) and added a + belt-and-suspenders check for perl's own HAS_STRLCPY in Tty.xs. + Maintenance: + * PR #66 - Add 5-minute timeout to all CI test steps to prevent + hung tests from consuming CI resources indefinitely. + 1.25 2026-04-01 Todd Rinaldo <[email protected]> + Bug Fixes: + * GH #62, PR #64 - Fix IO::Pty DESTROY force-closing the slave pty. + The DESTROY method (added in 1.21) explicitly closed the cached + slave handle, breaking consumers like IPC::Run that hold a + reference to the slave via $pty->slave() and expect it to survive + master destruction. Now just deletes the internal reference and + lets Perl's refcounting handle fd closure correctly. + Maintenance: + * PR #61 - Simplify version variables to a single source of truth. + Extract version from Tty.pm in Makefile.PL using + MM->parse_version() instead of hardcoding it, use VERSION_FROM in + WriteMakefile, and remove $XS_VERSION from Tty.pm. + 1.24 2026-03-27 Todd Rinaldo <[email protected]> + Bug Fixes: + * GH #54, PR #55 - Fix slave pty reopening on Solaris/illumos. After + close_slave(), reopening with plain Perl open() skipped pushing + STREAMS modules (ptem, ldterm, ttcompat), causing isatty() to + return false. Added _open_tty() XS function that opens the device + and pushes STREAMS modules on platforms that support I_PUSH. + * GH #56, PR #58 - Fix undef warnings on Perl 5.8.8 by removing the + undef operator on localized $SIG{__DIE__}, and fix XS ttyname() on + older Perls by avoiding the InOutStream typemap which can return + NULL for filehandles created via new_from_fd. + * GH #57, PR #59 - Add __BSD_VISIBLE for FreeBSD in function probes. + The _XOPEN_SOURCE definition hid BSD extensions like strlcpy, + causing probe failures and subsequent compile errors from + conflicting static/non-static declarations. + Maintenance: + * PR #60 - Modernize Makefile.PL: replace BUILD_REQUIRES with + TEST_REQUIRES (EUMM 6.64+), add CONFIGURE_REQUIRES, upgrade + META_MERGE to meta-spec v2, modernize generated Constant.pm to + use 'our' instead of 'use vars', and remove dead PPD postamble. + 1.23 2026-03-24 Todd Rinaldo <[email protected]> + Bug Fixes: + * PR #52 - Replace deprecated indirect object syntax (e.g. `new IO::Pty`) + with direct method calls (`IO::Pty->new`). Perl 5.36+ disables indirect + object calls, so this fixes forward compatibility. + Improvements: + * PR #53 - Add clone_winsize_from() test coverage (7 new tests) covering + basic clone between slave ttys, non-tty master fast path, croak on + non-tty source, and pixel dimension preservation. + Maintenance: + * PR #52 - Regenerate README from POD to fix stale version. + * PR #53 - Modernize `use vars` to `our` declarations in Tty.pm and + Pty.pm. Add missing `use warnings` to Pty.pm. + * Add AI_POLICY.md for transparency on AI-assisted contributions. + * Convert README to Markdown and update MANIFEST. + 1.22 2026-03-24 Todd Rinaldo <[email protected]> + Bug Fixes: + * GH #47, PR #48 - Fix function detection on Solaris by adding + __EXTENSIONS__ to expose BSD extensions (like strlcpy) that are + hidden when _XOPEN_SOURCE is defined. + * PR #49 - Fix file descriptor leaks in open_slave() error paths. + The master pty fd was not closed on several early-return error + paths, causing fd leaks when falling through multiple pty + allocation methods. + Improvements: + * PR #50 - Add unit tests for ttyname(), slave()/close_slave() + lifecycle, set_winsize()/get_winsize() round-trips, + pack_winsize/unpack_winsize, and constant importing (28 new tests). + * PR #51 - Replace DynaLoader with XSLoader and bump minimum perl + version to 5.8.8. XSLoader is simpler and has been in core since + perl 5.6. + Maintenance: + * PR #44 - Fix stale POD versions, add Perl 5.38/5.40 to CI, and + update repository URLs from toddr/IO-Tty to cpan-authors/IO-Tty. + * PR #45 - Remove dead Perl 5.003 compatibility code, modernize XS + (Nullch to NULL, perl_get_sv to get_sv, sprintf to snprintf). + * PR #46 - Modernize CI with dynamic perl version discovery via + perl-actions/perl-versions and add a disttest job. + 1.21 2026-03-22 Todd Rinaldo <[email protected]> + Bug Fixes: + * GH #14, PR #39 - Fix slave fd leak on IO::Pty destruction. The slave + pty file descriptor was not closed when the IO::Pty object was + destroyed, leaking file descriptors until process exit. + * GH #12, PR #40 - Fix set_raw() to modify cflag for proper raw mode + on BSD/macOS. set_raw() was not clearing CSIZE|PARENB or setting CS8 + in cflag, causing incomplete raw mode on macOS, OpenBSD, and NetBSD. + * GH #38, PR #41 - Modernize function detection to use proper system + headers instead of fragile K&R-style forward declarations. The old + approach conflicted with real prototypes on modern compilers + (especially FreeBSD/Clang), causing all function checks to fail. + Improvements: + * PR #42 - Add BSD CI testing for FreeBSD, OpenBSD, and NetBSD via + cross-platform-actions. Also bumps actions/checkout from v2 to v4. + +------------------------------------------------------------------- Old: ---- IO-Tty-1.20.tar.gz New: ---- IO-Tty-1.27.tar.gz README.md _scmsync.obsinfo build.specials.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-IO-Tty.spec ++++++ --- /var/tmp/diff_new_pack.x9V9Gz/_old 2026-04-15 16:05:29.785282543 +0200 +++ /var/tmp/diff_new_pack.x9V9Gz/_new 2026-04-15 16:05:29.797283036 +0200 @@ -1,7 +1,7 @@ # # spec file for package perl-IO-Tty # -# Copyright (c) 2024 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,14 +18,16 @@ %define cpan_name IO-Tty Name: perl-IO-Tty -Version: 1.200.0 +Version: 1.270.0 Release: 0 -%define cpan_version 1.20 +# 1.27 -> normalize -> 1.270.0 +%define cpan_version 1.27 License: Artistic-1.0 OR GPL-1.0-or-later Summary: Pseudo ttys and constants URL: https://metacpan.org/release/%{cpan_name} Source0: https://cpan.metacpan.org/authors/id/T/TO/TODDR/%{cpan_name}-%{cpan_version}.tar.gz Source1: cpanspec.yml +Source100: README.md BuildRequires: perl BuildRequires: perl-macros Provides: perl(IO::Pty) = %{version} @@ -64,7 +66,7 @@ Thanks! %prep -%autosetup -n %{cpan_name}-%{cpan_version} +%autosetup -n %{cpan_name}-%{cpan_version} -p1 find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644 @@ -81,5 +83,5 @@ %perl_gen_filelist %files -f %{name}.files -%doc ChangeLog README try +%doc AI_POLICY.md ChangeLog README.md try ++++++ IO-Tty-1.20.tar.gz -> IO-Tty-1.27.tar.gz ++++++ ++++ 1826 lines of diff (skipped) ++++++ README.md ++++++ ## Build Results Current state of perl in openSUSE:Factory is  The current state of perl in the devel project build (devel:languages:perl)  ++++++ _scmsync.obsinfo ++++++ mtime: 1775735750 commit: 1b82bb0c888e9f8e3117c12429cfb6a39b4742eec348ac50f0778e3b081ea6aa url: https://src.opensuse.org/perl/perl-IO-Tty.git revision: 1b82bb0c888e9f8e3117c12429cfb6a39b4742eec348ac50f0778e3b081ea6aa 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-04-09 23:23:26.000000000 +0200 @@ -0,0 +1 @@ +.osc
