From 293fce34f9143ced0bb76b0bd2208af63a3536d0 Mon Sep 17 00:00:00 2001 From: "Zak B. Elep" Date: Fri, 21 May 2021 17:47:12 +0800 Subject: [PATCH] library.pl: Add a bit of pod for reference --- library.pl | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/library.pl b/library.pl index 03c92b9..d4b09d2 100755 --- a/library.pl +++ b/library.pl @@ -98,3 +98,28 @@ $config = do { }; release $_, $config->{builds}, 1 for reverse @{$config->{releases}}; + +=pod + +=head1 NAME + +library.pl - generate YAML for library/perl manifest on docker-library + +=head1 SYNOPSIS + + cd /path/to/docker-perl + ./library.pl [--eol] + +=head1 DESCRIPTION + +library.pl is a helper script to generate a suitable manifest for +updating C on +L, +which is the reference for producing the +L. + +This script optionally takes an C<--eol> option, for including entries +corresponding to unsupported Perl versions that require a rebuild on the +Docker Hub as needed (e.g. for updating base image dependencies.) + +=cut