diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-06-25 16:55:44 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-06-27 09:18:52 -0700 |
| commit | b5c768e16438b23626e560bc465af2ef38185b04 (patch) | |
| tree | 68ef8887b4918004d8cd55895cb85aebe167394a /meta-perl/recipes-perl/libcgi/libcgi-perl_4.66.bb | |
| parent | 8fc8a8ee0ecd33bfaec8b907c0b2d391c98149f0 (diff) | |
| download | meta-openembedded-b5c768e16438b23626e560bc465af2ef38185b04.tar.gz | |
libcgi-perl: upgrade 4.64 -> 4.66
Changelog:
============
- Restore trailing slashes in the ->url call (GH #267)
- "fix" t/url.t for older Perls (GH #266)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libcgi/libcgi-perl_4.66.bb')
| -rw-r--r-- | meta-perl/recipes-perl/libcgi/libcgi-perl_4.66.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libcgi/libcgi-perl_4.66.bb b/meta-perl/recipes-perl/libcgi/libcgi-perl_4.66.bb new file mode 100644 index 0000000000..94fb4393c2 --- /dev/null +++ b/meta-perl/recipes-perl/libcgi/libcgi-perl_4.66.bb | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | DESCRIPTION = "CGI.pm is a stable, complete and mature solution for processing and preparing \ | ||
| 2 | HTTP requests and responses. Major features including processing form \ | ||
| 3 | submissions, file uploads, reading and writing cookies, query string generation \ | ||
| 4 | and manipulation, and processing and preparing HTTP headers." | ||
| 5 | HOMEPAGE = "http://search.cpan.org/~leejo/CGI-4.28/lib/CGI.pod" | ||
| 6 | SECTION = "libs" | ||
| 7 | LICENSE = "Artistic-2.0 | GPL-2.0-only" | ||
| 8 | |||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=415fc49abed2728f9480cd32c8d67beb" | ||
| 10 | |||
| 11 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-${PV}.tar.gz" | ||
| 12 | |||
| 13 | SRC_URI[sha256sum] = "4697437688a193e3f02556e1d223015590c1f2800b40becf83dc12d5cc5ed8e1" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/CGI-${PV}" | ||
| 16 | |||
| 17 | inherit cpan ptest-perl | ||
| 18 | |||
| 19 | RDEPENDS:${PN} += "\ | ||
| 20 | libhtml-parser-perl \ | ||
| 21 | perl-module-base \ | ||
| 22 | perl-module-deprecate \ | ||
| 23 | perl-module-if \ | ||
| 24 | " | ||
| 25 | |||
| 26 | do_install:prepend() { | ||
| 27 | # requires "-T" (taint) command line option | ||
| 28 | rm -rf ${B}/t/push.t | ||
| 29 | rm -rf ${B}/t/utf8.t | ||
| 30 | # tests building of docs | ||
| 31 | rm -rf ${B}/t/compiles_pod.t | ||
| 32 | } | ||
| 33 | |||
| 34 | RDEPENDS:${PN}-ptest += " \ | ||
| 35 | libtest-deep-perl \ | ||
| 36 | libtest-warn-perl \ | ||
| 37 | perl-module-bytes \ | ||
| 38 | perl-module-file-find \ | ||
| 39 | perl-module-filehandle \ | ||
| 40 | perl-module-findbin \ | ||
| 41 | perl-module-lib \ | ||
| 42 | perl-module-perlio \ | ||
| 43 | perl-module-perlio-scalar \ | ||
| 44 | perl-module-test-more \ | ||
| 45 | perl-module-utf8 \ | ||
| 46 | " | ||
| 47 | |||
| 48 | RPROVIDES:${PN} += "perl-module-cgi" | ||
| 49 | |||
| 50 | BBCLASSEXTEND = "native" | ||
