summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libpcre/libpcre2_10.36.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-28 11:14:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-31 14:31:01 +0100
commit4204271747f65f9da2233b6e925989b700e74d34 (patch)
treee72c337cfa9e467dde289bb9ea97de23b1327086 /meta/recipes-support/libpcre/libpcre2_10.36.bb
parent9b386cf2f9d563bb578e50e68feed92ed66df394 (diff)
downloadpoky-4204271747f65f9da2233b6e925989b700e74d34.tar.gz
libpcre2: upgrade 10.36 -> 10.37
Only the copyright year changed in license text. (From OE-Core rev: 07d1c6948ec7b688f461e737a5afb00f3eb0c1cb) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libpcre/libpcre2_10.36.bb')
-rw-r--r--meta/recipes-support/libpcre/libpcre2_10.36.bb52
1 files changed, 0 insertions, 52 deletions
diff --git a/meta/recipes-support/libpcre/libpcre2_10.36.bb b/meta/recipes-support/libpcre/libpcre2_10.36.bb
deleted file mode 100644
index d8077a1224..0000000000
--- a/meta/recipes-support/libpcre/libpcre2_10.36.bb
+++ /dev/null
@@ -1,52 +0,0 @@
1DESCRIPTION = "There are two major versions of the PCRE library. The \
2newest version is PCRE2, which is a re-working of the original PCRE \
3library to provide an entirely new API. The original, very widely \
4deployed PCRE library's API and feature are stable, future releases \
5 will be for bugfixes only. All new future features will be to PCRE2, \
6not the original PCRE 8.x series."
7SUMMARY = "Perl Compatible Regular Expressions version 2"
8HOMEPAGE = "http://www.pcre.org"
9SECTION = "devel"
10LICENSE = "BSD-3-Clause"
11LIC_FILES_CHKSUM = "file://LICENCE;md5=60c08fab1357bfe9084b333bc33362d6"
12
13SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre2-${PV}.tar.bz2"
14
15SRC_URI[sha256sum] = "a9ef39278113542968c7c73a31cfcb81aca1faa64690f400b907e8ab6b4a665c"
16
17CVE_PRODUCT = "pcre2"
18
19S = "${WORKDIR}/pcre2-${PV}"
20
21PROVIDES += "pcre2"
22DEPENDS += "bzip2 zlib"
23
24BINCONFIG = "${bindir}/pcre2-config"
25
26inherit autotools binconfig-disabled
27
28EXTRA_OECONF = "\
29 --enable-newline-is-lf \
30 --with-link-size=2 \
31 --with-match-limit=10000000 \
32 --enable-pcre2-16 \
33 --enable-pcre2-32 \
34"
35CFLAGS += "-D_REENTRANT"
36CXXFLAGS_append_powerpc = " -lstdc++"
37
38PACKAGES =+ "libpcre2-16 libpcre2-32 pcre2grep pcre2grep-doc pcre2test pcre2test-doc"
39
40SUMMARY_pcre2grep = "grep utility that uses perl 5 compatible regexes"
41SUMMARY_pcre2grep-doc = "grep utility that uses perl 5 compatible regexes - docs"
42SUMMARY_pcre2test = "program for testing Perl-comatible regular expressions"
43SUMMARY_pcre2test-doc = "program for testing Perl-comatible regular expressions - docs"
44
45FILES_libpcre2-16 = "${libdir}/libpcre2-16.so.*"
46FILES_libpcre2-32 = "${libdir}/libpcre2-32.so.*"
47FILES_pcre2grep = "${bindir}/pcre2grep"
48FILES_pcre2grep-doc = "${mandir}/man1/pcre2grep.1"
49FILES_pcre2test = "${bindir}/pcre2test"
50FILES_pcre2test-doc = "${mandir}/man1/pcre2test.1"
51
52BBCLASSEXTEND = "native nativesdk"