forked from perl/perl-Perl-Tidy
Compare commits
1 Commits
main
...
autoupdate
| Author | SHA256 | Date | |
|---|---|---|---|
| 874ec01727 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:347aa90bcefbde2b590daf48d387ef1fd9b7a73a996b040269f11ab6fb8ba448
|
|
||||||
size 1202227
|
|
||||||
BIN
Perl-Tidy-20250912.tar.gz
(Stored with Git LFS)
Normal file
BIN
Perl-Tidy-20250912.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,42 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 12:46:25 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 20250912.0.0 (20250912)
|
||||||
|
see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md
|
||||||
|
|
||||||
|
## 2025 09 12
|
||||||
|
- Fix git #191, where a new check to escape whitespace in a qw() quote
|
||||||
|
in perl-5.43.2 caused Perl::Tidy to emit unwanted warning messages.
|
||||||
|
- A new output field for the --dump-block-summary command gives
|
||||||
|
the number of lines of comments and pod in a block. For subs and
|
||||||
|
anonymous subs, the existence of header comments is also indicated.
|
||||||
|
- Added --dump-nested-ternaries, --warn-nested-ternaries, and
|
||||||
|
--nested-ternary-maximum-depth=n. These can be used to locate
|
||||||
|
nested ternary statements in a script.
|
||||||
|
- For the --line-up-parentheses option, a line length tolerance was
|
||||||
|
adjusted by 1 character to help keep table formatting unchanged when
|
||||||
|
adding and deleting trailing commas. This can occasionally change
|
||||||
|
formatting of some small lists when formatted with -lp.
|
||||||
|
- In hash key lists which have side comments after sub blocks,
|
||||||
|
long lines which were previously broken before a comma may now
|
||||||
|
be broken after a previous '=>'. This change was made to
|
||||||
|
fix a very rare stability problem. For example:
|
||||||
|
OLD:
|
||||||
|
'+' => sub { $turtle->turn( $changes->{"dtheta"} ); }
|
||||||
|
, # Turn clockwise
|
||||||
|
NEW:
|
||||||
|
'+' =>
|
||||||
|
sub { $turtle->turn( $changes->{"dtheta"} ); }, # Turn clockwise
|
||||||
|
- Fixed undefined variable reference when --dump-block-summary was
|
||||||
|
run with --dump-block-types='package'. The dump was okay, but
|
||||||
|
an error message like the following was emitted:
|
||||||
|
Use of uninitialized value $seqno in hash element ...
|
||||||
|
- The parameter --integer-range-check no longer accepts a 0 value, which
|
||||||
|
allowed integer range checks to be skipped. This option was included
|
||||||
|
temporarily when new range-checking code was added to provide a
|
||||||
|
workaround in case problems arose with the new logic. No problems have
|
||||||
|
been encountered, so this has been removed.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 12 05:36:54 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
Sat Jul 12 05:36:54 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Perl-Tidy
|
# spec file for package perl-Perl-Tidy
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,10 +18,10 @@
|
|||||||
|
|
||||||
%define cpan_name Perl-Tidy
|
%define cpan_name Perl-Tidy
|
||||||
Name: perl-Perl-Tidy
|
Name: perl-Perl-Tidy
|
||||||
Version: 20250711.0.0
|
Version: 20250912.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
# 20250711 -> normalize -> 20250711.0.0
|
# 20250912 -> normalize -> 20250912.0.0
|
||||||
%define cpan_version 20250711
|
%define cpan_version 20250912
|
||||||
#Upstream: GPL-1.0-or-later
|
#Upstream: GPL-1.0-or-later
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Summary: Indent and reformat perl scripts
|
Summary: Indent and reformat perl scripts
|
||||||
@@ -83,7 +83,7 @@ make test
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%doc BUGS.md CHANGES.md docs examples pm2pl README.md
|
%doc BUGS.md CHANGES.md docs examples pm2pl README.md SECURITY.md
|
||||||
%license COPYING
|
%license COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user