libextutils-makemaker-dist-zilla-develop-perl 0.03-3 source package in Ubuntu

Changelog

libextutils-makemaker-dist-zilla-develop-perl (0.03-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Submit.

  [ Jenkins ]
  * Bump debhelper from old 12 to 13.

 -- Jelmer Vernooij <email address hidden>  Mon, 12 Dec 2022 22:18:46 +0000

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
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libextutils-makemaker-dist-zilla-develop-perl_0.03-3.dsc 2.4 KiB 47aa963a2cb2011d993468552c630027f16dbbfe022efa4a516b6b12f84a5408
libextutils-makemaker-dist-zilla-develop-perl_0.03.orig.tar.gz 12.6 KiB 2d13dd5bac75972aae160d99b35322048fdfb1b9c17b6dc55c6524c5ed61309a
libextutils-makemaker-dist-zilla-develop-perl_0.03-3.debian.tar.xz 2.3 KiB 93ddcafd57ac36dc1b7a9ddd2a4feb211f63309217315bca63240bebe95af70d

Available diffs

No changes file available.

Binary packages built by this source

libextutils-makemaker-dist-zilla-develop-perl: Perl module creating bare-bones Makefile.PL files for use with dzil

 Dist::Zilla makes developing modules much easier by generating all kinds of
 boilerplate files, saving authors from having to write them by hand, but in
 some cases this can make developing more inconvenient. The most prominent
 example of this is with Makefile.PL files - although the majority of
 distributions can be hacked on just by editing the files in a source control
 checkout and using prove for testing, for some this isn't sufficient. In
 particular, distributions which use an auto-generated test suite and
 distributions which use XS both need special handling at build time before
 they will function, and with Dist::Zilla, this means running dzil build and
 rebuilding after every change. This is tedious!
 .
 ExtUtils::MakeMaker::Dist::Zilla::Develop provides an alternative. Create a
 minimal Makefile.PL in source control which handles just enough functionality
 for basic development (it can be as minimal as just what is in the /SYNOPSIS,
 but can also contain commands to generate your test suite, for example), and
 tell Dist::Zilla to replace it with a real Makefile.PL when you're actually
 ready to build a real distribution. To do this, make sure you're still using
 the MakeMaker|Dist::Zilla::Plugin::MakeMaker plugin, either directly or
 through a pluginbundle like @Basic|Dist::Zilla::PluginBundle::Basic, and add
 the exclude_filename = Makefile.PL option to your dist.ini where you use
 [GatherDir].