diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2020-08-20 13:55:04 +0200 |
---|---|---|
committer | Richard Leitner <richard.leitner@skidata.com> | 2020-08-24 08:07:04 +0200 |
commit | 00cb61feb07098d55b78237af6eb55fc4b906a0e (patch) | |
tree | 18497615b9f1e2a970ab50ce9f9546ffe7d6153e | |
parent | 75ba758d6bae8613bd1a21f63a82d177135491b9 (diff) | |
download | meta-java-00cb61feb07098d55b78237af6eb55fc4b906a0e.tar.gz |
cacao: update to latest git version
As the cacao-staging mercurial repository was removed update the recipe
to use the git repository instead. Furthermore update to the latest
revision.
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
-rw-r--r-- | recipes-core/cacao/cacao/0001-java.in-Do-not-use-hardcode-paths.patch (renamed from recipes-core/cacao/cacao-2d6f6c14daf9/cacao-1.6.1-do-not-rely-on-absolute-paths.patch) | 33 | ||||
-rw-r--r-- | recipes-core/cacao/cacao/0002-cacao-use-system-s-boehm-garbage-collector.patch (renamed from recipes-core/cacao/cacao-2d6f6c14daf9/system-boehm-gc.patch) | 21 | ||||
-rw-r--r-- | recipes-core/cacao/cacao_git.bb (renamed from recipes-core/cacao/cacao_2d6f6c14daf9.bb) | 12 |
3 files changed, 41 insertions, 25 deletions
diff --git a/recipes-core/cacao/cacao-2d6f6c14daf9/cacao-1.6.1-do-not-rely-on-absolute-paths.patch b/recipes-core/cacao/cacao/0001-java.in-Do-not-use-hardcode-paths.patch index 665377b..521814e 100644 --- a/recipes-core/cacao/cacao-2d6f6c14daf9/cacao-1.6.1-do-not-rely-on-absolute-paths.patch +++ b/recipes-core/cacao/cacao/0001-java.in-Do-not-use-hardcode-paths.patch | |||
@@ -1,25 +1,31 @@ | |||
1 | java.in: Do not use hardcode paths | 1 | From 51a63cdac93caf69d1b6ace40f73f6147ba37de5 Mon Sep 17 00:00:00 2001 |
2 | From: =?UTF-8?q?Erkka=20K=C3=A4=C3=A4ri=C3=A4?= <erkka.kaaria@intel.com> | ||
3 | Date: Thu, 20 Aug 2020 13:48:38 +0200 | ||
4 | Subject: [PATCH 1/2] java.in: Do not use hardcode paths | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
2 | 8 | ||
3 | Cacao uses hardcoded paths to various files, if these paths are not | 9 | Cacao uses hardcoded paths to various files, if these paths are not |
4 | provided. This causes issues when sharing sstate with otherwise | 10 | provided. This causes issues when sharing sstate with otherwise |
5 | identical workers, if build time paths are not identical. | 11 | identical workers, if build time paths are not identical. |
6 | 12 | ||
7 | Signed-off-by: Erkka Kääriä <erkka.kaaria@intel.com> | ||
8 | |||
9 | Upstream-Status: Inappropriate [Yocto-specific fixes] | 13 | Upstream-Status: Inappropriate [Yocto-specific fixes] |
10 | 14 | ||
15 | Signed-off-by: Erkka Kääriä <erkka.kaaria@intel.com> | ||
16 | Signed-off-by: Richard Leitner <richard.leitner@skidata.com> | ||
11 | --- | 17 | --- |
12 | cacao-1.6.1/src/scripts/java.in | 16 ++++++++++++++-- | 18 | src/scripts/java.in | 15 +++++++++++++-- |
13 | 1 file changed, 14 insertions(+), 2 deletions(-) | 19 | 1 file changed, 13 insertions(+), 2 deletions(-) |
14 | 20 | ||
15 | diff --git cacao-1.6.1/src/scripts/java.in cacao-1.6.1/src/scripts/java.in | 21 | diff --git a/src/scripts/java.in b/src/scripts/java.in |
16 | index 0790f02..2118de7 100644 | 22 | index 0790f0255..a4f16ecdc 100644 |
17 | --- cacao-1.6.1/src/scripts/java.in | 23 | --- a/src/scripts/java.in |
18 | +++ cacao-1.6.1/src/scripts/java.in | 24 | +++ b/src/scripts/java.in |
19 | @@ -22,5 +22,17 @@ | 25 | @@ -22,5 +22,16 @@ |
20 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | 26 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
21 | ## 02110-1301, USA. | 27 | ## 02110-1301, USA. |
22 | 28 | ||
23 | -IFS="" | 29 | -IFS="" |
24 | -exec $(dirname ${0})/cacao ${1+"$@"} | 30 | -exec $(dirname ${0})/cacao ${1+"$@"} |
25 | +SH_DIR=`dirname "$0"` | 31 | +SH_DIR=`dirname "$0"` |
@@ -35,7 +41,6 @@ index 0790f02..2118de7 100644 | |||
35 | +export BOOTCLASSPATH="${PARENT_DIR}/share/cacao/vm.zip:${PARENT_DIR}/share/classpath/glibj.zip" | 41 | +export BOOTCLASSPATH="${PARENT_DIR}/share/cacao/vm.zip:${PARENT_DIR}/share/classpath/glibj.zip" |
36 | +LIBRARY_PATH="-Djava.library.path=${PARENT_DIR}/lib/classpath" | 42 | +LIBRARY_PATH="-Djava.library.path=${PARENT_DIR}/lib/classpath" |
37 | +exec ${REAL_DIR}/cacao ${LIBRARY_PATH} ${1+"$@"} | 43 | +exec ${REAL_DIR}/cacao ${LIBRARY_PATH} ${1+"$@"} |
38 | + | 44 | -- |
39 | -- | 45 | 2.28.0 |
40 | 2.7.4 | ||
41 | 46 | ||
diff --git a/recipes-core/cacao/cacao-2d6f6c14daf9/system-boehm-gc.patch b/recipes-core/cacao/cacao/0002-cacao-use-system-s-boehm-garbage-collector.patch index c30f5be..102e9a7 100644 --- a/recipes-core/cacao/cacao-2d6f6c14daf9/system-boehm-gc.patch +++ b/recipes-core/cacao/cacao/0002-cacao-use-system-s-boehm-garbage-collector.patch | |||
@@ -1,4 +1,7 @@ | |||
1 | cacao: use system's boehm garbage collector | 1 | From 7833101c8c8938d58a32e355b9af1b56e4229a87 Mon Sep 17 00:00:00 2001 |
2 | From: Hugo Vasconcelos Saldanha <hugo.saldanha@aker.com.br> | ||
3 | Date: Thu, 20 Aug 2020 13:50:47 +0200 | ||
4 | Subject: [PATCH 2/2] cacao: use system's boehm garbage collector | ||
2 | 5 | ||
3 | This is a Gentoo's patch [1] to force the use of system's bdwgc. | 6 | This is a Gentoo's patch [1] to force the use of system's bdwgc. |
4 | 7 | ||
@@ -10,11 +13,17 @@ with the system's version. | |||
10 | Upstream-Status: Inappropriate [not author] | 13 | Upstream-Status: Inappropriate [not author] |
11 | 14 | ||
12 | Signed-off-by: Hugo Vasconcelos Saldanha <hugo.saldanha@aker.com.br> | 15 | Signed-off-by: Hugo Vasconcelos Saldanha <hugo.saldanha@aker.com.br> |
16 | Signed-off-by: Richard Leitner <richard.leitner@skidata.com> | ||
17 | --- | ||
18 | configure.ac | 8 ++------ | ||
19 | src/mm/Makefile.am | 9 ++++----- | ||
20 | 2 files changed, 6 insertions(+), 11 deletions(-) | ||
13 | 21 | ||
14 | diff --git a/configure.ac b/configure.ac | 22 | diff --git a/configure.ac b/configure.ac |
23 | index aceb2033b..db8a9770e 100644 | ||
15 | --- a/configure.ac | 24 | --- a/configure.ac |
16 | +++ b/configure.ac | 25 | +++ b/configure.ac |
17 | @@ -691,6 +691,8 @@ | 26 | @@ -738,6 +738,8 @@ AC_CHECK_ENABLE_GCC_PR40134 |
18 | 27 | ||
19 | AC_CHECK_ENABLE_PIC_ASM | 28 | AC_CHECK_ENABLE_PIC_ASM |
20 | 29 | ||
@@ -23,7 +32,7 @@ diff --git a/configure.ac b/configure.ac | |||
23 | dnl Define version numbers. | 32 | dnl Define version numbers. |
24 | AC_VERSION_DETAIL | 33 | AC_VERSION_DETAIL |
25 | AC_VERSION_CONFIG | 34 | AC_VERSION_CONFIG |
26 | @@ -793,12 +795,6 @@ | 35 | @@ -855,12 +857,6 @@ AC_CONFIG_FILES([Makefile] |
27 | ) | 36 | ) |
28 | 37 | ||
29 | 38 | ||
@@ -37,9 +46,10 @@ diff --git a/configure.ac b/configure.ac | |||
37 | 46 | ||
38 | 47 | ||
39 | diff --git a/src/mm/Makefile.am b/src/mm/Makefile.am | 48 | diff --git a/src/mm/Makefile.am b/src/mm/Makefile.am |
49 | index 9d0945a29..cbd7dc963 100644 | ||
40 | --- a/src/mm/Makefile.am | 50 | --- a/src/mm/Makefile.am |
41 | +++ b/src/mm/Makefile.am | 51 | +++ b/src/mm/Makefile.am |
42 | @@ -35,14 +35,13 @@ | 52 | @@ -35,14 +35,13 @@ GC_FILE = \ |
43 | endif | 53 | endif |
44 | 54 | ||
45 | if ENABLE_GC_BOEHM | 55 | if ENABLE_GC_BOEHM |
@@ -58,3 +68,6 @@ diff --git a/src/mm/Makefile.am b/src/mm/Makefile.am | |||
58 | endif | 68 | endif |
59 | 69 | ||
60 | if ENABLE_GC_CACAO | 70 | if ENABLE_GC_CACAO |
71 | -- | ||
72 | 2.28.0 | ||
73 | |||
diff --git a/recipes-core/cacao/cacao_2d6f6c14daf9.bb b/recipes-core/cacao/cacao_git.bb index 0e50b68..1a61e12 100644 --- a/recipes-core/cacao/cacao_2d6f6c14daf9.bb +++ b/recipes-core/cacao/cacao_git.bb | |||
@@ -10,14 +10,12 @@ PROVIDES_class-native = "virtual/java-native" | |||
10 | DEPENDS = "zlib libtool classpath virtual/javac-native bdwgc" | 10 | DEPENDS = "zlib libtool classpath virtual/javac-native bdwgc" |
11 | RPROVIDES_${PN} = "java2-runtime" | 11 | RPROVIDES_${PN} = "java2-runtime" |
12 | 12 | ||
13 | SRC_URI = "https://bitbucket.org/cacaovm/cacao-staging/get/${PV}.zip \ | 13 | SRCREV = "6c4694f9bd175386a8c451531e9a5ad97aa23b6f" |
14 | file://system-boehm-gc.patch \ | 14 | SRC_URI = "git://bitbucket.org/cacaovm/cacao.git;protocol=https \ |
15 | file://cacao-1.6.1-do-not-rely-on-absolute-paths.patch \ | 15 | file://0001-java.in-Do-not-use-hardcode-paths.patch \ |
16 | file://0002-cacao-use-system-s-boehm-garbage-collector.patch \ | ||
16 | " | 17 | " |
17 | S = "${WORKDIR}/cacaovm-cacao-staging-${PV}" | 18 | S = "${WORKDIR}/git" |
18 | |||
19 | SRC_URI[md5sum] = "5157d0bb9eb1332f7a6b6186eaac01aa" | ||
20 | SRC_URI[sha256sum] = "34b51d660d69c2a83225fd75eab5e1fac002fb5974cb4a74b7478baf923a76cd" | ||
21 | 19 | ||
22 | inherit java autotools-brokensep update-alternatives pkgconfig features_check | 20 | inherit java autotools-brokensep update-alternatives pkgconfig features_check |
23 | 21 | ||