perl: version modules and non-base packages

Currently external modules and non-base packages are numbered
from their own internal number space, and even though the Perl
ABI number is embedded into them this isn't externally visible.

For example, perl-html-parser-3.72.1 could be built for ABI
5.26 or for 5.28, we can't easily tell.  This changes all of
that by embedding the ABI number into the filename.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
(cherry picked from commit 0d9584724f)
This commit is contained in:
Philip Prindeville
2018-08-07 16:00:19 -06:00
parent 5041d2f331
commit 4f3f81b64f
3 changed files with 22 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
PERL_VERSION:=5.28.0
PERL_EXPLODE:=$(subst ., ,$(PERL_VERSION))
PERL_MAJOR:=$(word 1,$(PERL_EXPLODE))
PERL_MINOR:=$(word 2,$(PERL_EXPLODE))
PERL_REL:=$(word 3,$(PERL_EXPLODE))
PERL_VERSION3:=$(PERL_VERSION)
PERL_VERSION2:=$(PERL_MAJOR).$(PERL_MINOR)