diff options
Diffstat (limited to 'meta-perl/recipes-perl/libencode/libencode-perl_3.05.bb')
-rw-r--r-- | meta-perl/recipes-perl/libencode/libencode-perl_3.05.bb | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libencode/libencode-perl_3.05.bb b/meta-perl/recipes-perl/libencode/libencode-perl_3.05.bb new file mode 100644 index 0000000000..62430e91f9 --- /dev/null +++ b/meta-perl/recipes-perl/libencode/libencode-perl_3.05.bb | |||
@@ -0,0 +1,106 @@ | |||
1 | # NOTE: | ||
2 | # You should use perl-module-encode rather than this package | ||
3 | # unless you specifically need a version newer than what is | ||
4 | # provided by perl. | ||
5 | |||
6 | SUMMARY = "Encode - character encodings" | ||
7 | DESCRIPTION = "The \"Encode\" module provides the interfaces between \ | ||
8 | Perl's strings and the rest of the system. Perl strings are sequences \ | ||
9 | of characters." | ||
10 | |||
11 | AUTHOR = "Dan Kogai <dankogai+cpan@gmail.com>" | ||
12 | HOMEPAGE = "https://metacpan.org/release/Encode" | ||
13 | SECTION = "lib" | ||
14 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
15 | LIC_FILES_CHKSUM = "file://META.json;beginline=8;endline=10;md5=b12e3be1e17a7e99ca4f429ff32c28b5" | ||
16 | |||
17 | SRC_URI = "${CPAN_MIRROR}/authors/id/D/DA/DANKOGAI/Encode-${PV}.tar.gz" | ||
18 | SRC_URI[md5sum] = "137aef00bfc3d5cb97096ad985d3153a" | ||
19 | SRC_URI[sha256sum] = "e0f51e03cd787a3e26026503e806afdc03f3823ae3551c711a9b04ad901a8794" | ||
20 | |||
21 | UPSTREAM_CHECK_REGEX = "Encode\-(?P<pver>(\d+\.\d+))(?!_\d+).tar" | ||
22 | |||
23 | S = "${WORKDIR}/Encode-${PV}" | ||
24 | |||
25 | inherit cpan ptest-perl | ||
26 | |||
27 | do_install_prepend() { | ||
28 | # Requires "-T" (taint) option on command line | ||
29 | rm -rf ${B}/t/taint.t | ||
30 | # Circular dependency of perl-module-open on perl-module-encode | ||
31 | # and we cannot load perl-module-encode because we are providing | ||
32 | # an alternative | ||
33 | rm -rf ${B}/t/use-Encode-Alias.t | ||
34 | } | ||
35 | |||
36 | do_install_ptest() { | ||
37 | mkdir ${D}${PTEST_PATH}/bin | ||
38 | cp -r ${B}/bin/piconv ${D}${PTEST_PATH}/bin | ||
39 | cp -r ${B}/blib ${D}${PTEST_PATH} | ||
40 | chown -R root:root ${D}${PTEST_PATH} | ||
41 | } | ||
42 | |||
43 | # file /usr/bin/enc2xs from install of perl-misc-5.24.1-r0.i586 conflicts with file from package libencode-perl-2.94-r0.i586 | ||
44 | # file /usr/bin/encguess from install of perl-misc-5.24.1-r0.i586 conflicts with file from package libencode-perl-2.94-r0.i586 | ||
45 | # file /usr/bin/piconv from install of perl-misc-5.24.1-r0.i586 conflicts with file from package libencode-perl-2.94-r0.i586 | ||
46 | RCONFLICTS_${PN} = "perl-misc perl-module-encode" | ||
47 | |||
48 | RDEPENDS_${PN} += " \ | ||
49 | perl-module-bytes \ | ||
50 | perl-module-constant \ | ||
51 | perl-module-parent \ | ||
52 | perl-module-storable \ | ||
53 | perl-module-xsloader \ | ||
54 | " | ||
55 | |||
56 | RPROVIDES_${PN} += " \ | ||
57 | libencode-alias-perl \ | ||
58 | libencode-byte-perl \ | ||
59 | libencode-cjkconstants-perl \ | ||
60 | libencode-cn-perl \ | ||
61 | libencode-cn-hz-perl \ | ||
62 | libencode-config-perl \ | ||
63 | libencode-ebcdic-perl \ | ||
64 | libencode-encoder-perl \ | ||
65 | libencode-encoding-perl \ | ||
66 | libencode-gsm0338-perl \ | ||
67 | libencode-guess-perl \ | ||
68 | libencode-jp-perl \ | ||
69 | libencode-jp-h2z-perl \ | ||
70 | libencode-jp-jis7-perl \ | ||
71 | libencode-kr-perl \ | ||
72 | libencode-kr-2022_kr-perl \ | ||
73 | libencode-mime-header-perl \ | ||
74 | libencode-mime-name-perl \ | ||
75 | libencode-symbol-perl \ | ||
76 | libencode-tw-perl \ | ||
77 | libencode-unicode-perl \ | ||
78 | libencode-unicode-utf7-perl \ | ||
79 | libencoding-perl \ | ||
80 | libencode-internal-perl \ | ||
81 | libencode-mime-header-iso_2022_jp-perl \ | ||
82 | libencode-utf8-perl \ | ||
83 | libencode-utf_ebcdic-perl \ | ||
84 | " | ||
85 | |||
86 | RDEPENDS_${PN}-ptest += " \ | ||
87 | perl-module-blib \ | ||
88 | perl-module-charnames \ | ||
89 | perl-module-file-compare \ | ||
90 | perl-module-file-copy \ | ||
91 | perl-module-filehandle \ | ||
92 | perl-module-findbin \ | ||
93 | perl-module-integer \ | ||
94 | perl-module-io-select \ | ||
95 | perl-module-ipc-open3 \ | ||
96 | perl-module-mime-base64 \ | ||
97 | perl-module-perlio \ | ||
98 | perl-module-perlio-encoding \ | ||
99 | perl-module-perlio-scalar \ | ||
100 | perl-module-test-more \ | ||
101 | perl-module-tie-scalar \ | ||
102 | perl-module-unicore \ | ||
103 | perl-module-utf8 \ | ||
104 | " | ||
105 | |||
106 | BBCLASSEXTEND = "native" | ||