[oe] [meta-java][PATCH 1/4] Avoid parse time errors due to dependency on x11, for distros without x11

Martin Jansa martin.jansa at gmail.com
Tue Mar 29 11:14:12 UTC 2016


On Tue, Oct 27, 2015 at 09:27:36PM +0100, Jens Rehsack wrote:
> 
> BitBake raises some errors when processing recipes that depend on x11
> for distros that don't have x11 in DISTRO_FEATURES. To work around
> that issue, REQUIRED_DISTRO_FEATURES = "x11" (from
> distro_features_check.bbclass) has been set for the following recipes:
> 
> * cacao (_class-target)
> * classpath (_class-target)
> * jamvm (_class-target)
> * openjdk-7-release
> 
> That makes BitBake skip those recipes during the cache generation
> (they'd still be parsed, but ignored).
> 
> This patch improves the idea from Mario Domenech Goulart <mario at ossystems.com.br>
> 
> Signed-off-by: Jens Rehsack <sno at netbsd.org>
> ---
>  recipes-core/cacao/cacao_1.6.1.bb             | 1 +
>  recipes-core/classpath/classpath.inc          | 4 +---
>  recipes-core/classpath/classpath_0.99.bb      | 4 ++++
>  recipes-core/jamvm/jamvm.inc                  | 4 +---
>  recipes-core/jamvm/jamvm_git.bb               | 4 ++++
>  recipes-core/openjdk/openjdk-7_85b01-2.6.1.bb | 4 ++++
>  recipes-core/openjdk/openjdk-common.inc       | 4 +---
>  7 files changed, 16 insertions(+), 9 deletions(-)
> 
> diff --git a/recipes-core/cacao/cacao_1.6.1.bb b/recipes-core/cacao/cacao_1.6.1.bb
> index 564dd1e..f88293b 100644
> --- a/recipes-core/cacao/cacao_1.6.1.bb
> +++ b/recipes-core/cacao/cacao_1.6.1.bb
> @@ -18,6 +18,7 @@ SRC_URI[sha256sum] = "eecc8bd1b528a028f43d9d1d0c06b97855bbf1d40e03826d911ebbc0b6
>  inherit java autotools-brokensep update-alternatives pkgconfig distro_features_check
>  
>  REQUIRED_DISTRO_FEATURES = "x11"
> +REQUIRED_DISTRO_FEATURES_class-native := ""
>  
>  EXTRA_OECONF_class-native = "\
>      --enable-debug \
> diff --git a/recipes-core/classpath/classpath.inc b/recipes-core/classpath/classpath.inc
> index 0f760fe..1bdfd78 100644
> --- a/recipes-core/classpath/classpath.inc
> +++ b/recipes-core/classpath/classpath.inc
> @@ -7,9 +7,7 @@ LICENSE = "Classpath"
>  
>  PBN = "classpath"
>  
> -inherit autotools java gettext distro_features_check
> -
> -REQUIRED_DISTRO_FEATURES = "x11"
> +inherit autotools java gettext
>  
>  DEPENDS = "virtual/javac-native fastjar-native zip-native gmp antlr-native gtk+ gconf libxtst file"
>  
> diff --git a/recipes-core/classpath/classpath_0.99.bb b/recipes-core/classpath/classpath_0.99.bb
> index 8b3a6e3..6aa3baa 100644
> --- a/recipes-core/classpath/classpath_0.99.bb
> +++ b/recipes-core/classpath/classpath_0.99.bb
> @@ -1,5 +1,9 @@
>  require classpath.inc
>  
> +inherit distro_features_check
> +
> +REQUIRED_DISTRO_FEATURES = "x11"

Does it make sense to enable gtk peer with PACKAGECONFIG and to allow to
build x11-less (gui-less) classpath?

> +
>  LIC_FILES_CHKSUM = "file://LICENSE;md5=92acc79f1f429143f4624d07b253702a"
>  
>  SRC_URI += " \
> diff --git a/recipes-core/jamvm/jamvm.inc b/recipes-core/jamvm/jamvm.inc
> index e00813e..5893cbc 100644
> --- a/recipes-core/jamvm/jamvm.inc
> +++ b/recipes-core/jamvm/jamvm.inc
> @@ -21,9 +21,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/jamvm/jamvm-${PV}.tar.gz \
>            "
>  
>  
> -inherit java autotools update-alternatives pkgconfig distro_features_check
> -
> -REQUIRED_DISTRO_FEATURES = "x11"
> +inherit java autotools update-alternatives pkgconfig
>  
>  # This uses 32 bit arm, so force the instruction set to arm, not thumb
>  ARM_INSTRUCTION_SET = "arm"
> diff --git a/recipes-core/jamvm/jamvm_git.bb b/recipes-core/jamvm/jamvm_git.bb
> index 07eed6a..63364aa 100644
> --- a/recipes-core/jamvm/jamvm_git.bb
> +++ b/recipes-core/jamvm/jamvm_git.bb
> @@ -3,6 +3,10 @@
>  
>  require jamvm.inc
>  
> +inherit distro_features_check
> +
> +REQUIRED_DISTRO_FEATURES = "x11"
> +
>  SRCREV = "ebd11bde0a97b57f0d18938c6b65468d3c932719"
>  PV = "1.5.5+1.6.0-devel+git${SRCPV}"
>  
> diff --git a/recipes-core/openjdk/openjdk-7_85b01-2.6.1.bb b/recipes-core/openjdk/openjdk-7_85b01-2.6.1.bb
> index 1ca3b08..e631c13 100644
> --- a/recipes-core/openjdk/openjdk-7_85b01-2.6.1.bb
> +++ b/recipes-core/openjdk/openjdk-7_85b01-2.6.1.bb
> @@ -1,5 +1,9 @@
>  require openjdk-7-release-85b01.inc
>  
> +inherit distro_features_check
> +
> +REQUIRED_DISTRO_FEATURES = "x11"
> +
>  PR = "${INC_PR}.1"
>  
>  SRC_URI[iced.md5sum] = "efac44117a94b9d3278988959e336e05"
> diff --git a/recipes-core/openjdk/openjdk-common.inc b/recipes-core/openjdk/openjdk-common.inc
> index e3e597a..dc26522 100644
> --- a/recipes-core/openjdk/openjdk-common.inc
> +++ b/recipes-core/openjdk/openjdk-common.inc
> @@ -17,9 +17,7 @@ DEPENDS_append_libc-uclibc = " virtual/libiconv "
>  # because structure sizes and/or alignment may differ.
>  DEPENDS_append = " qemu-native "
>  
> -inherit java autotools gettext qemu pkgconfig distro_features_check
> -
> -REQUIRED_DISTRO_FEATURES = "x11"
> +inherit java autotools gettext qemu pkgconfig
>  
>  # OpenJDK uses slightly different names for certain arches. We need to know
>  #	this to create some files which are expected by the build.
> -- 
> 1.9.1
> 
> 
> -- 
> Jens Rehsack - rehsack at gmail.com
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel at lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa at gmail.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://lists.openembedded.org/pipermail/openembedded-devel/attachments/20160329/5a1e8676/attachment-0002.sig>


More information about the Openembedded-devel mailing list