* [PATCH v2 1/4] bitbake.conf, sanity.bbclass: Make mercurial-native optional
2011-07-19 2:07 [PATCH v2 0/4] Optionally trade required_utils for -nativebuilds Tom Rini
@ 2011-07-19 2:07 ` Tom Rini
2011-07-19 2:07 ` [PATCH v2 2/4] help2man-native: Add 1.38.2 Tom Rini
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2011-07-19 2:07 UTC (permalink / raw)
To: openembedded-core
Drop mercurial-native from the initial ASSUME_PROVIDED list and
instead only add it if we find 'hg' is installed.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/classes/sanity.bbclass | 6 +++++-
meta/conf/bitbake.conf | 1 -
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index c9d37c9..2bc3fca 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -209,7 +209,7 @@ def check_sanity(e):
if not check_app_exists('${BUILD_PREFIX}g++', e.data):
missing = missing + "C++ Compiler (%sg++)," % data.getVar("BUILD_PREFIX", e.data, True)
- required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk hg chrpath wget cpio"
+ required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk chrpath wget cpio"
# qemu-native needs gcc 3.x
if "qemu-native" not in assume_provided and "gcc3-native" in assume_provided:
@@ -243,6 +243,10 @@ def check_sanity(e):
if not check_app_exists( util, e.data ):
missing = missing + "%s," % util
+ # If we've found 'hg', add mercurial-native to ASSUME_PROVIDED.
+ if check_app_exists( "hg", e.data ):
+ bb.data.setVar('ASSUME_PROVIDED', data.getVar('ASSUME_PROVIDED', e.data , True) + "mercurial-native", e.data)
+
if missing != "":
missing = missing.rstrip(',')
messages = messages + "Please install following missing utilities: %s\n" % missing
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 463991d..15fd97e 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -132,7 +132,6 @@ ASSUME_PROVIDED = "\
cvs-native \
grep-native \
diffstat-native \
- mercurial-native \
patch-native \
perl-native-runtime \
python-native-runtime \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH v2 2/4] help2man-native: Add 1.38.2
2011-07-19 2:07 [PATCH v2 0/4] Optionally trade required_utils for -nativebuilds Tom Rini
2011-07-19 2:07 ` [PATCH v2 1/4] bitbake.conf, sanity.bbclass: Make mercurial-native optional Tom Rini
@ 2011-07-19 2:07 ` Tom Rini
2011-07-19 2:07 ` [PATCH v2 3/4] sanity.bbclass: Add help2man-native to ASSUME_PROVIDED if found Tom Rini
2011-07-19 2:07 ` [PATCH v2 4/4] autotools.bbclass: Add help2man-native to the main DEPENDS tree Tom Rini
3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2011-07-19 2:07 UTC (permalink / raw)
To: openembedded-core
This is a 'side port' of current oe.dev versions. PR is kept in sync
but we drop out the target recipes in order to punt on potential perl
problems. Here we do re-configure as we don't have a dance with
perl-native to deal with.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
.../help2man/help2man-native_1.38.2.bb | 25 ++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-devtools/help2man/help2man-native_1.38.2.bb
diff --git a/meta/recipes-devtools/help2man/help2man-native_1.38.2.bb b/meta/recipes-devtools/help2man/help2man-native_1.38.2.bb
new file mode 100644
index 0000000..bea7fe9
--- /dev/null
+++ b/meta/recipes-devtools/help2man/help2man-native_1.38.2.bb
@@ -0,0 +1,25 @@
+DESCRIPTION = "Program to create simple man pages"
+SECTION = "devel"
+LICENSE = "GPLv3"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
+DEPENDS = "autoconf-native automake-native"
+PR = "r2"
+
+SRC_URI = "${GNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
+SRC_URI[md5sum] = "426671c6fe79e5ef2233303367eab5a6"
+SRC_URI[sha256sum] = "952c29561bce8b233aa10af7f0e0c79c8243712810bf8ddf01e6efd82ce250d1"
+
+inherit autotools native
+
+EXTRA_OECONF = "--disable-nls"
+
+# We don't want to reconfigure things as it would require 'perlnative' to be
+# used.
+do_configure() {
+ oe_runconf
+}
+
+do_install_append () {
+ # Make sure we use /usr/bin/env perl
+ sed -i -e "1s:#!.*:#! /usr/bin/env perl:" ${D}${bindir}/help2man
+}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH v2 3/4] sanity.bbclass: Add help2man-native to ASSUME_PROVIDED if found
2011-07-19 2:07 [PATCH v2 0/4] Optionally trade required_utils for -nativebuilds Tom Rini
2011-07-19 2:07 ` [PATCH v2 1/4] bitbake.conf, sanity.bbclass: Make mercurial-native optional Tom Rini
2011-07-19 2:07 ` [PATCH v2 2/4] help2man-native: Add 1.38.2 Tom Rini
@ 2011-07-19 2:07 ` Tom Rini
2011-07-19 2:07 ` [PATCH v2 4/4] autotools.bbclass: Add help2man-native to the main DEPENDS tree Tom Rini
3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2011-07-19 2:07 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/classes/sanity.bbclass | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 2bc3fca..365af6c 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -209,7 +209,7 @@ def check_sanity(e):
if not check_app_exists('${BUILD_PREFIX}g++', e.data):
missing = missing + "C++ Compiler (%sg++)," % data.getVar("BUILD_PREFIX", e.data, True)
- required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk chrpath wget cpio"
+ required_utilities = "patch diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk chrpath wget cpio"
# qemu-native needs gcc 3.x
if "qemu-native" not in assume_provided and "gcc3-native" in assume_provided:
@@ -247,6 +247,10 @@ def check_sanity(e):
if check_app_exists( "hg", e.data ):
bb.data.setVar('ASSUME_PROVIDED', data.getVar('ASSUME_PROVIDED', e.data , True) + "mercurial-native", e.data)
+ # If we've found 'help2man', add help2man-native to ASSUME_PROVIDED.
+ if check_app_exists( "help2man", e.data ):
+ bb.data.setVar('ASSUME_PROVIDED', data.getVar('ASSUME_PROVIDED', e.data , True) + "help2man-native", e.data)
+
if missing != "":
missing = missing.rstrip(',')
messages = messages + "Please install following missing utilities: %s\n" % missing
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH v2 4/4] autotools.bbclass: Add help2man-native to the main DEPENDS tree
2011-07-19 2:07 [PATCH v2 0/4] Optionally trade required_utils for -nativebuilds Tom Rini
` (2 preceding siblings ...)
2011-07-19 2:07 ` [PATCH v2 3/4] sanity.bbclass: Add help2man-native to ASSUME_PROVIDED if found Tom Rini
@ 2011-07-19 2:07 ` Tom Rini
3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2011-07-19 2:07 UTC (permalink / raw)
To: openembedded-core
With help2man no longer being required by sanity.bbclass we need to
make sure that if we are going to build autotools stuff that help2man
will be there as it's a frequent implicit dependency.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/classes/autotools.bbclass | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 98c871a..ed5637e 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -5,9 +5,9 @@ def autotools_dep_prepend(d):
pn = bb.data.getVar('PN', d, 1)
deps = ''
- if pn in ['autoconf-native', 'automake-native']:
+ if pn in ['autoconf-native', 'automake-native', 'help2man-native']:
return deps
- deps += 'autoconf-native automake-native '
+ deps += 'autoconf-native automake-native help2man-native '
if not pn in ['libtool', 'libtool-native', 'libtool-cross']:
deps += 'libtool-native '
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread