diff options
author | Alexander Kanavin <alex@linutronix.de> | 2024-04-22 13:03:17 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-04-23 13:40:24 +0100 |
commit | 307e2bc612f81f0b37e39bd736617080fe5b5fe9 (patch) | |
tree | ddffab3aa1c9af27288ec3ed60e40eca75533212 /meta/recipes-devtools | |
parent | 8051868b3a135baf2232652ee8f3b6d3683fcc7f (diff) | |
download | poky-307e2bc612f81f0b37e39bd736617080fe5b5fe9.tar.gz |
swig: merge .inc into .bb
(From OE-Core rev: d5edf129a39be5b4a62d6fa73b151dcc3a098e79)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/swig/swig.inc | 67 | ||||
-rw-r--r-- | meta/recipes-devtools/swig/swig_4.2.1.bb | 69 |
2 files changed, 67 insertions, 69 deletions
diff --git a/meta/recipes-devtools/swig/swig.inc b/meta/recipes-devtools/swig/swig.inc deleted file mode 100644 index 7a6c4d7359..0000000000 --- a/meta/recipes-devtools/swig/swig.inc +++ /dev/null | |||
@@ -1,67 +0,0 @@ | |||
1 | SUMMARY = "SWIG - Simplified Wrapper and Interface Generator" | ||
2 | DESCRIPTION = "SWIG is a compiler that makes it easy to integrate C and C++ \ | ||
3 | code with other languages including Perl, Tcl, Ruby, Python, Java, Guile, \ | ||
4 | Mzscheme, Chicken, OCaml, Pike, and C#." | ||
5 | HOMEPAGE = "http://swig.sourceforge.net/" | ||
6 | LICENSE = "BSD-3-Clause & GPL-3.0-only" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e7807a6282784a7dde4c846626b08fc6 \ | ||
8 | file://LICENSE-GPL;md5=d32239bcb673463ab874e80d47fae504 \ | ||
9 | file://LICENSE-UNIVERSITIES;md5=8ce9dcc8f7c994de4a408b205c72ba08" | ||
10 | |||
11 | SECTION = "devel" | ||
12 | |||
13 | DEPENDS = "libpcre2 bison-native" | ||
14 | |||
15 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz" | ||
16 | UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/swig/files/swig/" | ||
17 | UPSTREAM_CHECK_REGEX = "swig-(?P<pver>\d+(\.\d+)+)" | ||
18 | |||
19 | inherit autotools python3native pkgconfig | ||
20 | |||
21 | EXTRA_OECONF = " \ | ||
22 | --with-python3=${PYTHON} \ | ||
23 | --without-allegrocl \ | ||
24 | --without-android \ | ||
25 | --without-boost \ | ||
26 | --without-chicken \ | ||
27 | --without-clisp \ | ||
28 | --without-csharp \ | ||
29 | --without-d \ | ||
30 | --without-gcj \ | ||
31 | --without-go \ | ||
32 | --without-guile \ | ||
33 | --without-java \ | ||
34 | --without-lua \ | ||
35 | --without-mzscheme \ | ||
36 | --without-ocaml \ | ||
37 | --without-octave \ | ||
38 | --without-perl5 \ | ||
39 | --without-pike \ | ||
40 | --without-php \ | ||
41 | --without-r \ | ||
42 | --without-ruby \ | ||
43 | --without-tcl \ | ||
44 | " | ||
45 | |||
46 | EXTRA_AUTORECONF += "-I Tools/config" | ||
47 | |||
48 | BBCLASSEXTEND = "native nativesdk" | ||
49 | |||
50 | # necessary together with bison dependency until a new upstream version after | ||
51 | # 3.0.12 includes 0001-Fix-generated-code-for-constant-expressions-containi.patch | ||
52 | do_configure:append() { | ||
53 | mkdir -p ${B}/Source/CParse | ||
54 | } | ||
55 | |||
56 | do_install:append:class-nativesdk() { | ||
57 | cd ${D}${bindir} | ||
58 | ln -s swig swig2.0 | ||
59 | } | ||
60 | |||
61 | def swiglib_relpath(d): | ||
62 | swiglib = d.getVar('datadir') + "/" + d.getVar('BPN') + "/" + d.getVar('PV') | ||
63 | return os.path.relpath(swiglib, d.getVar('bindir')) | ||
64 | |||
65 | do_install:append:class-native() { | ||
66 | create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)} | ||
67 | } | ||
diff --git a/meta/recipes-devtools/swig/swig_4.2.1.bb b/meta/recipes-devtools/swig/swig_4.2.1.bb index 4b438a7298..7062d4e9aa 100644 --- a/meta/recipes-devtools/swig/swig_4.2.1.bb +++ b/meta/recipes-devtools/swig/swig_4.2.1.bb | |||
@@ -1,7 +1,72 @@ | |||
1 | require ${BPN}.inc | 1 | SUMMARY = "SWIG - Simplified Wrapper and Interface Generator" |
2 | DESCRIPTION = "SWIG is a compiler that makes it easy to integrate C and C++ \ | ||
3 | code with other languages including Perl, Tcl, Ruby, Python, Java, Guile, \ | ||
4 | Mzscheme, Chicken, OCaml, Pike, and C#." | ||
5 | HOMEPAGE = "http://swig.sourceforge.net/" | ||
6 | LICENSE = "BSD-3-Clause & GPL-3.0-only" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e7807a6282784a7dde4c846626b08fc6 \ | ||
8 | file://LICENSE-GPL;md5=d32239bcb673463ab874e80d47fae504 \ | ||
9 | file://LICENSE-UNIVERSITIES;md5=8ce9dcc8f7c994de4a408b205c72ba08" | ||
2 | 10 | ||
3 | SRC_URI += "file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch \ | 11 | SECTION = "devel" |
12 | |||
13 | DEPENDS = "libpcre2 bison-native" | ||
14 | |||
15 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \ | ||
16 | file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch \ | ||
4 | file://0001-configure-use-pkg-config-for-pcre-detection.patch \ | 17 | file://0001-configure-use-pkg-config-for-pcre-detection.patch \ |
5 | file://determinism.patch \ | 18 | file://determinism.patch \ |
6 | " | 19 | " |
7 | SRC_URI[sha256sum] = "fa045354e2d048b2cddc69579e4256245d4676894858fcf0bab2290ecf59b7d8" | 20 | SRC_URI[sha256sum] = "fa045354e2d048b2cddc69579e4256245d4676894858fcf0bab2290ecf59b7d8" |
21 | UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/swig/files/swig/" | ||
22 | UPSTREAM_CHECK_REGEX = "swig-(?P<pver>\d+(\.\d+)+)" | ||
23 | |||
24 | inherit autotools python3native pkgconfig | ||
25 | |||
26 | EXTRA_OECONF = " \ | ||
27 | --with-python3=${PYTHON} \ | ||
28 | --without-allegrocl \ | ||
29 | --without-android \ | ||
30 | --without-boost \ | ||
31 | --without-chicken \ | ||
32 | --without-clisp \ | ||
33 | --without-csharp \ | ||
34 | --without-d \ | ||
35 | --without-gcj \ | ||
36 | --without-go \ | ||
37 | --without-guile \ | ||
38 | --without-java \ | ||
39 | --without-lua \ | ||
40 | --without-mzscheme \ | ||
41 | --without-ocaml \ | ||
42 | --without-octave \ | ||
43 | --without-perl5 \ | ||
44 | --without-pike \ | ||
45 | --without-php \ | ||
46 | --without-r \ | ||
47 | --without-ruby \ | ||
48 | --without-tcl \ | ||
49 | " | ||
50 | |||
51 | EXTRA_AUTORECONF += "-I Tools/config" | ||
52 | |||
53 | BBCLASSEXTEND = "native nativesdk" | ||
54 | |||
55 | # necessary together with bison dependency until a new upstream version after | ||
56 | # 3.0.12 includes 0001-Fix-generated-code-for-constant-expressions-containi.patch | ||
57 | do_configure:append() { | ||
58 | mkdir -p ${B}/Source/CParse | ||
59 | } | ||
60 | |||
61 | do_install:append:class-nativesdk() { | ||
62 | cd ${D}${bindir} | ||
63 | ln -s swig swig2.0 | ||
64 | } | ||
65 | |||
66 | def swiglib_relpath(d): | ||
67 | swiglib = d.getVar('datadir') + "/" + d.getVar('BPN') + "/" + d.getVar('PV') | ||
68 | return os.path.relpath(swiglib, d.getVar('bindir')) | ||
69 | |||
70 | do_install:append:class-native() { | ||
71 | create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)} | ||
72 | } | ||