* [PATCH v3 1/4] bitbake.conf, sanity.bbclass: Drop mercurial-native
2011-07-19 18:00 [PATCH v3 0/4] Change help2man, mercurial-native behavior Tom Rini
@ 2011-07-19 18:00 ` Tom Rini
2011-07-19 18:00 ` [PATCH v3 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 18:00 UTC (permalink / raw)
To: openembedded-core
We have no hg URIs in the metadata, so don't require and don't
ASSUME_PROVIDED it either. meta-oe has a mercurial-native recipe
if hg URIs are added in a recipe later.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/classes/sanity.bbclass | 2 +-
meta/conf/bitbake.conf | 1 -
2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index c9d37c9..75fb52c 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:
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 v3 2/4] help2man-native: Add 1.38.2
2011-07-19 18:00 [PATCH v3 0/4] Change help2man, mercurial-native behavior Tom Rini
2011-07-19 18:00 ` [PATCH v3 1/4] bitbake.conf, sanity.bbclass: Drop mercurial-native Tom Rini
@ 2011-07-19 18:00 ` Tom Rini
2011-07-19 18:00 ` [PATCH v3 3/4] autotools.bbclass: Add help2man-native to the main DEPENDS tree Tom Rini
2011-07-19 18:00 ` [PATCH v3 4/4] local.conf.sample: Add a note about ASSUME_PROVIDED for help2man Tom Rini
3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2011-07-19 18:00 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. Now that we can build it, don't require it.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/classes/sanity.bbclass | 2 +-
.../help2man/help2man-native_1.38.2.bb | 25 ++++++++++++++++++++
2 files changed, 26 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-devtools/help2man/help2man-native_1.38.2.bb
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 75fb52c..06ccf5c 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:
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 v3 3/4] autotools.bbclass: Add help2man-native to the main DEPENDS tree
2011-07-19 18:00 [PATCH v3 0/4] Change help2man, mercurial-native behavior Tom Rini
2011-07-19 18:00 ` [PATCH v3 1/4] bitbake.conf, sanity.bbclass: Drop mercurial-native Tom Rini
2011-07-19 18:00 ` [PATCH v3 2/4] help2man-native: Add 1.38.2 Tom Rini
@ 2011-07-19 18:00 ` Tom Rini
2011-07-19 18:00 ` [PATCH v3 4/4] local.conf.sample: Add a note about ASSUME_PROVIDED for help2man Tom Rini
3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2011-07-19 18:00 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* [PATCH v3 4/4] local.conf.sample: Add a note about ASSUME_PROVIDED for help2man
2011-07-19 18:00 [PATCH v3 0/4] Change help2man, mercurial-native behavior Tom Rini
` (2 preceding siblings ...)
2011-07-19 18:00 ` [PATCH v3 3/4] autotools.bbclass: Add help2man-native to the main DEPENDS tree Tom Rini
@ 2011-07-19 18:00 ` Tom Rini
3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2011-07-19 18:00 UTC (permalink / raw)
To: openembedded-core
Similar, but opposite of oe.dev example.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/conf/local.conf.sample | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample
index c33dc0e..812b896 100644
--- a/meta/conf/local.conf.sample
+++ b/meta/conf/local.conf.sample
@@ -186,3 +186,6 @@ NO32LIBS = "1"
# GNOME, SCREEN, XTERM and KONSOLE
#TERMCMD = "${KONSOLE_TERMCMD}"
#TERMCMDRUN = "${KONSOLE_TERMCMDRUN}"
+
+# Uncomment this if your host distribution provides the help2man tool.
+#ASSUME_PROVIDED += "help2man-native"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread