diff options
author | Tom Rini <trini@konsulko.com> | 2017-06-11 08:36:31 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-12 15:08:31 +0100 |
commit | 329f602c30bca560e95e1f2ea25b7045153166d3 (patch) | |
tree | 1065c8ea79e154d7f57f115e61383bb9ad4511e2 /meta/classes/perl-version.bbclass | |
parent | 00e83cb02954b61ecfa9f30f6779ec323b95197c (diff) | |
download | poky-329f602c30bca560e95e1f2ea25b7045153166d3.tar.gz |
cpan-base.bbclass: Move PERLVERSION and get_perl_version to a new file
It is possible for non-CPAN recipes to contain perl modules. These perl
modules must reside in the versioned perl library directory in order to
work in normal circumstances.. Export this logic to a separate class so
that it can be reused without the rest of the cpan logic.
Without this, dpkg will not export its perl code to the correct location
and will not be found by utilities that expect to use it.
(From OE-Core rev: f4edc200d3a9645f9674eae0f8d10926680ba4f8)
Signed-off-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/perl-version.bbclass')
-rw-r--r-- | meta/classes/perl-version.bbclass | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/classes/perl-version.bbclass b/meta/classes/perl-version.bbclass new file mode 100644 index 0000000000..fafe68a775 --- /dev/null +++ b/meta/classes/perl-version.bbclass | |||
@@ -0,0 +1,24 @@ | |||
1 | PERL_OWN_DIR = "${@["", "/perl-native"][(bb.data.inherits_class('native', d))]}" | ||
2 | |||
3 | # Determine the staged version of perl from the perl configuration file | ||
4 | # Assign vardepvalue, because otherwise signature is changed before and after | ||
5 | # perl is built (from None to real version in config.sh). | ||
6 | get_perl_version[vardepvalue] = "${PERL_OWN_DIR}" | ||
7 | def get_perl_version(d): | ||
8 | import re | ||
9 | cfg = d.expand('${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/config.sh') | ||
10 | try: | ||
11 | f = open(cfg, 'r') | ||
12 | except IOError: | ||
13 | return None | ||
14 | l = f.readlines(); | ||
15 | f.close(); | ||
16 | r = re.compile("^version='(\d*\.\d*\.\d*)'") | ||
17 | for s in l: | ||
18 | m = r.match(s) | ||
19 | if m: | ||
20 | return m.group(1) | ||
21 | return None | ||
22 | |||
23 | PERLVERSION := "${@get_perl_version(d)}" | ||
24 | PERLVERSION[vardepvalue] = "" | ||