git-push target for Makefile (via ExtUtils::MakeMaker)
Posted on May 25, 2019. Filed under: Uncategorized | Tags: author:bliako, cpan:extutils-makemaker, git, makefile.pl, perl, perlmonks |
git-push target for Makefile (via ExtUtils::MakeMaker) I was trying to automate more (=keep as far away as possible) the process of pushing to github through a Makefile and I came up with the following simplistic approach.
Read Full Post | Make a Comment ( Comments Off on git-push target for Makefile (via ExtUtils::MakeMaker) )Benchmarks target in Makefile
Posted on May 25, 2019. Filed under: Uncategorized | Tags: author:bliako, author:pryrt, benchmarking, cpan:extutils-makemaker, makefile.pl, perl, perlmonks |
Benchmarks target in Makefile I would like to add a target for running benchmarks on my code to the Makefile produced by ExtUtils::MakeMaker I already have a benhmarks.pl file which does everything and prints a report. I would like to have it executed whenever I do: make benchmarks . And only then because it is […]
Read Full Post | Make a Comment ( Comments Off on Benchmarks target in Makefile )How to become a CPAN contributor
Posted on August 3, 2018. Filed under: Uncategorized | Tags: author:manwar, cpan, cpan:dist-zilla, cpan:extutils-makemaker, cpan:module-build, meta, perl, TODO |
How to become a CPAN contributor To become a CPAN contributor, you don’t need to write a new CPAN distribution, you just need to submit a change to an existing distribution that gets accepted by the author. If you’ve never gotten your hands dirty editing Perl modules, the first question that may come to mind […]
Read Full Post | Make a Comment ( Comments Off on How to become a CPAN contributor )Specifying dependencies for your CPAN distribution
Posted on May 10, 2017. Filed under: Uncategorized | Tags: author:neilb, cpan, cpan:app-modulebuildtiny, cpan:cpan-meta, cpan:dist-zilla, cpan:extutils-makemaker, cpan:minilla, cpan:module-build, cpan:module-cpanfile, cpan:module-install, perl |
Specifying dependencies for your CPAN distribution […] I’m going to show you how to specify dependencies for your CPAN distributions: the other Perl and CPAN modules that your distribution relies on. Posts in this series: An introduction to CPAN distribution metadata Dependency phases in CPAN distribution metadata Specifying the type of your CPAN dependencies Specifying […]
Read Full Post | Make a Comment ( Comments Off on Specifying dependencies for your CPAN distribution )Dependency phases in CPAN distribution metadata
Posted on April 10, 2017. Filed under: Uncategorized | Tags: author:neilb, cpan, cpan:extutils-makemaker, dependencies, perl |
Dependency phases in CPAN distribution metadata In this article I’ll drill into more detail at one critical component of a distribution’s metadata: dependencies, also known as prerequisites (usually shortened to “prereqs”). This is how you specify other CPAN modules that your distribution depends on. Posts in this series: An introduction to CPAN distribution metadata Dependency […]
Read Full Post | Make a Comment ( Comments Off on Dependency phases in CPAN distribution metadata )