perltidier 1.20-1 source package in Ubuntu

Changelog

perltidier (1.20-1) unstable; urgency=medium

  [ upstream ]
  * new release(s)

  [ Jonas Smedegaard ]
  * drop patch 1001 adopted upstream
  * tighten (build-)dependency on perltidy
  * update copyright info: update coverage

 -- Jonas Smedegaard <email address hidden>  Sun, 18 Jun 2023 10:39:37 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
perltidier_1.20-1.dsc 2.1 KiB fd7f0904a7ade4caeb3a0b192bf0164226b0ccc69a0b799605311432107b35a7
perltidier_1.20.orig.tar.gz 26.4 KiB 3f83a451fcf9492a26847f8694c7384a69b032088f785ba9c2536b94c7d61d50
perltidier_1.20-1.debian.tar.xz 3.3 KiB dca1dae2a667d34aaa4d47a70e5d0b22870ed3f121eddb72a38aa0387450cd86

Available diffs

No changes file available.

Binary packages built by this source

perltidier: tweaks to Perl::Tidy to support some syntactic sugar

 There are a number of modules on CPAN
 that allow users to write their classes with a more "modern" syntax.
 These tools eliminate the need to shift off $self,
 can support type checking
 and offer other improvements.
 Unfortunately, they can break the support tools
 that the Perl community has come to rely on.
 This module attempts to work around those issues.
 .
 The module uses Perl::Tidy's "prefilter" and "postfilter" hooks
 to support "method" and "func" keywords,
 including the (possibly multi-line) parameter lists.
 This is quite an ugly hack,
 but it is the recommended method of supporting these new keywords.
 The resulting formatted code will leave the parameter lists untouched.
 .
 Perl::Tidy::Sweetened attempts to support the syntax
 outlined in the following modules,
 but most of the new syntax styles should work:
  * p5-mop
  * Method::Signatures::Simple
  * MooseX::Method::Signatures
  * MooseX::Declare
  * Moops
  * perl 5.20 signatures
  * Kavorka