perltidier 1.18-2 source package in Ubuntu

Changelog

perltidier (1.18-2) unstable; urgency=medium

  * use secure alternate source URI
  * declare compliance with Debian Policy 4.6.0

 -- Jonas Smedegaard <email address hidden>  Thu, 02 Sep 2021 12:35:14 +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

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
perltidier_1.18-2.dsc 2.1 KiB a044a0f020188e43d04e1da6af4b96311bdbf2e983d21f761b0fe795505bfdcb
perltidier_1.18.orig.tar.gz 35.8 KiB be0d13d91073fe28f4a2cc68d8b505041dfe0ca30678628da03f294b0b1b407c
perltidier_1.18-2.debian.tar.xz 3.2 KiB b3237cdb4032da56218c7e89aac287d324ab65cb742d1d190d97960847fe6b2c

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