diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-12-13 12:11:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-18 19:48:00 +0000 |
commit | 9b7cef5fc21f7d28dbf9e327fc7bbd3693619298 (patch) | |
tree | 97f2b541fe6d58b9640659d1d657eae43237b745 /meta | |
parent | c19dc0686048c056e3403a131b0f3957f01e0d52 (diff) | |
download | poky-9b7cef5fc21f7d28dbf9e327fc7bbd3693619298.tar.gz |
ruby: merge .inc into .bb
(From OE-Core rev: d88ff809b2e78ee49d5da42bb08ff5244e6101af)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/ruby/ruby.inc | 39 | ||||
-rw-r--r-- | meta/recipes-devtools/ruby/ruby_3.1.2.bb | 45 |
2 files changed, 40 insertions, 44 deletions
diff --git a/meta/recipes-devtools/ruby/ruby.inc b/meta/recipes-devtools/ruby/ruby.inc deleted file mode 100644 index ebff5efd1f..0000000000 --- a/meta/recipes-devtools/ruby/ruby.inc +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | SUMMARY = "An interpreter of object-oriented scripting language" | ||
2 | DESCRIPTION = "Ruby is an interpreted scripting language for quick \ | ||
3 | and easy object-oriented programming. It has many features to process \ | ||
4 | text files and to do system management tasks (as in Perl). \ | ||
5 | It is simple, straight-forward, and extensible. \ | ||
6 | " | ||
7 | HOMEPAGE = "http://www.ruby-lang.org/" | ||
8 | SECTION = "devel/ruby" | ||
9 | LICENSE = "Ruby | BSD-2-Clause | BSD-3-Clause | GPL-2.0-only | ISC | MIT" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=5b8c87559868796979806100db3f3805 \ | ||
11 | file://BSDL;md5=8b50bc6de8f586dc66790ba11d064d75 \ | ||
12 | file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
13 | file://LEGAL;md5=f260190bc1e92e363f0ee3c0463d4c7c \ | ||
14 | " | ||
15 | |||
16 | DEPENDS = "zlib openssl libyaml gdbm readline libffi" | ||
17 | DEPENDS:append:class-target = " ruby-native" | ||
18 | |||
19 | SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}" | ||
20 | SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \ | ||
21 | file://0001-extmk-fix-cross-compilation-of-external-gems.patch \ | ||
22 | file://0002-Obey-LDFLAGS-for-the-link-of-libruby.patch \ | ||
23 | " | ||
24 | UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/" | ||
25 | |||
26 | inherit autotools ptest pkgconfig | ||
27 | |||
28 | |||
29 | # This snippet lets compiled extensions which rely on external libraries, | ||
30 | # such as zlib, compile properly. If we don't do this, then when extmk.rb | ||
31 | # runs, it uses the native libraries instead of the target libraries, and so | ||
32 | # none of the linking operations succeed -- which makes extconf.rb think | ||
33 | # that the libraries aren't available and hence that the extension can't be | ||
34 | # built. | ||
35 | |||
36 | do_configure:prepend() { | ||
37 | sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk | ||
38 | rm -rf ${S}/ruby/ | ||
39 | } | ||
diff --git a/meta/recipes-devtools/ruby/ruby_3.1.2.bb b/meta/recipes-devtools/ruby/ruby_3.1.2.bb index 387bfa9b44..0115daf22a 100644 --- a/meta/recipes-devtools/ruby/ruby_3.1.2.bb +++ b/meta/recipes-devtools/ruby/ruby_3.1.2.bb | |||
@@ -1,8 +1,25 @@ | |||
1 | require ruby.inc | 1 | SUMMARY = "An interpreter of object-oriented scripting language" |
2 | 2 | DESCRIPTION = "Ruby is an interpreted scripting language for quick \ | |
3 | DEPENDS:append:libc-musl = " libucontext" | 3 | and easy object-oriented programming. It has many features to process \ |
4 | 4 | text files and to do system management tasks (as in Perl). \ | |
5 | SRC_URI += " \ | 5 | It is simple, straight-forward, and extensible. \ |
6 | " | ||
7 | HOMEPAGE = "http://www.ruby-lang.org/" | ||
8 | SECTION = "devel/ruby" | ||
9 | LICENSE = "Ruby | BSD-2-Clause | BSD-3-Clause | GPL-2.0-only | ISC | MIT" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=5b8c87559868796979806100db3f3805 \ | ||
11 | file://BSDL;md5=8b50bc6de8f586dc66790ba11d064d75 \ | ||
12 | file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
13 | file://LEGAL;md5=f260190bc1e92e363f0ee3c0463d4c7c \ | ||
14 | " | ||
15 | |||
16 | DEPENDS = "zlib openssl libyaml gdbm readline libffi" | ||
17 | DEPENDS:append:class-target = " ruby-native" | ||
18 | |||
19 | SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}" | ||
20 | SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \ | ||
21 | file://0001-extmk-fix-cross-compilation-of-external-gems.patch \ | ||
22 | file://0002-Obey-LDFLAGS-for-the-link-of-libruby.patch \ | ||
6 | file://remove_has_include_macros.patch \ | 23 | file://remove_has_include_macros.patch \ |
7 | file://run-ptest \ | 24 | file://run-ptest \ |
8 | file://0001-template-Makefile.in-do-not-write-host-cross-cc-item.patch \ | 25 | file://0001-template-Makefile.in-do-not-write-host-cross-cc-item.patch \ |
@@ -14,6 +31,24 @@ SRC_URI += " \ | |||
14 | file://0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch \ | 31 | file://0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch \ |
15 | file://0001-Remove-dependency-on-libcapstone.patch \ | 32 | file://0001-Remove-dependency-on-libcapstone.patch \ |
16 | " | 33 | " |
34 | UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/" | ||
35 | |||
36 | inherit autotools ptest pkgconfig | ||
37 | |||
38 | |||
39 | # This snippet lets compiled extensions which rely on external libraries, | ||
40 | # such as zlib, compile properly. If we don't do this, then when extmk.rb | ||
41 | # runs, it uses the native libraries instead of the target libraries, and so | ||
42 | # none of the linking operations succeed -- which makes extconf.rb think | ||
43 | # that the libraries aren't available and hence that the extension can't be | ||
44 | # built. | ||
45 | |||
46 | do_configure:prepend() { | ||
47 | sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk | ||
48 | rm -rf ${S}/ruby/ | ||
49 | } | ||
50 | |||
51 | DEPENDS:append:libc-musl = " libucontext" | ||
17 | 52 | ||
18 | SRC_URI[sha256sum] = "61843112389f02b735428b53bb64cf988ad9fb81858b8248e22e57336f24a83e" | 53 | SRC_URI[sha256sum] = "61843112389f02b735428b53bb64cf988ad9fb81858b8248e22e57336f24a83e" |
19 | 54 | ||