All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Hatle <mark.hatle@windriver.com>
To: Paul Gortmaker <paul.gortmaker@windriver.com>,
	<openembedded-core@lists.openembedded.org>
Cc: Paul Eggleton <paul.eggleton@linux.intel.com>
Subject: Re: [PATCH 2/3] coreutils: import prebuilt manpages from Gentoo
Date: Tue, 17 Feb 2015 09:55:12 -0600	[thread overview]
Message-ID: <54E36460.2090109@windriver.com> (raw)
In-Reply-To: <1424152066-23546-3-git-send-email-paul.gortmaker@windriver.com>

On 2/16/15 11:47 PM, Paul Gortmaker wrote:
> As can be seen here:
> 
> http://lists.gnu.org/archive/html/coreutils/2014-11/msg00001.html
> 
> other people have run into the headache of trying to cross compile
> coreutils, with the "help2man" problem (assumes host can run the
> target binaries with "--help" arg to collect data for manpage.)
> 
> And since "current wisdom is this is working as intended" we are
> largely left with no choice but to use the same solution and
> abandon trying to generate the man pages at build time.  So here
> we import prebuilt manpages.

Looks like it addresses the issue I had.

Looks good!

--Mark

> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>  meta/recipes-core/coreutils/coreutils_8.23.bb | 21 ++++++++++++++++++---
>  1 file changed, 18 insertions(+), 3 deletions(-)
> 
> diff --git a/meta/recipes-core/coreutils/coreutils_8.23.bb b/meta/recipes-core/coreutils/coreutils_8.23.bb
> index be68a310311a..63df75e7baf2 100644
> --- a/meta/recipes-core/coreutils/coreutils_8.23.bb
> +++ b/meta/recipes-core/coreutils/coreutils_8.23.bb
> @@ -12,14 +12,17 @@ DEPENDS_class-native = ""
>  
>  inherit autotools gettext texinfo
>  
> -SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \
> +SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz;name=tarball \
> +           http://distfiles.gentoo.org/distfiles/${BP}-man.tar.xz;name=manpages \
>             file://man-decouple-manpages-from-build.patch \
>             file://remove-usr-local-lib-from-m4.patch \
>             file://fix-selinux-flask.patch \
>            "
>  
> -SRC_URI[md5sum] = "abed135279f87ad6762ce57ff6d89c41"
> -SRC_URI[sha256sum] = "ec43ca5bcfc62242accb46b7f121f6b684ee21ecd7d075059bf650ff9e37b82d"
> +SRC_URI[tarball.md5sum] = "abed135279f87ad6762ce57ff6d89c41"
> +SRC_URI[tarball.sha256sum] = "ec43ca5bcfc62242accb46b7f121f6b684ee21ecd7d075059bf650ff9e37b82d"
> +SRC_URI[manpages.md5sum] = "ce49bc8360e16afe67581d136606efc7"
> +SRC_URI[manpages.sha256sum] = "d1b16e74b3dba4f313aeebae2c69da205f7d2e6e1c2aa8d39026c860d314ecca"
>  
>  EXTRA_OECONF_class-native = "--without-gmp"
>  EXTRA_OECONF_class-target = "--enable-install-program=arch --libexecdir=${libdir}"
> @@ -71,6 +74,13 @@ do_install_append() {
>  	# in update-alternatives to fail, therefore use lbracket - the name used
>  	# for the actual source file.
>  	mv ${D}${bindir}/[ ${D}${bindir}/lbracket.${BPN}
> +
> +	# prebuilt man pages
> +	install -d ${D}/${mandir}/man1
> +	install -t ${D}/${mandir}/man1 ${S}/man/*.1
> +	# prebuilt man pages don't do a separate man page for [ vs test.
> +	# see comment above r.e. sed and update-alternatives
> +	cp -a ${D}${mandir}/man1/test.1 ${D}${mandir}/man1/lbracket.1.${BPN}
>  }
>  
>  do_install_append_class-native(){
> @@ -82,18 +92,23 @@ inherit update-alternatives
>  
>  ALTERNATIVE_PRIORITY = "100"
>  ALTERNATIVE_${PN} = "lbracket ${bindir_progs} ${base_bindir_progs} ${sbindir_progs} base64 mktemp df"
> +ALTERNATIVE_${PN}-doc = "base64.1 mktemp.1 df.1 lbracket.1"
>  
>  ALTERNATIVE_LINK_NAME[base64] = "${base_bindir}/base64"
>  ALTERNATIVE_TARGET[base64] = "${bindir}/base64.${BPN}"
> +ALTERNATIVE_LINK_NAME[base64.1] = "${mandir}/man1/base64.1"
>  
>  ALTERNATIVE_LINK_NAME[mktemp] = "${base_bindir}/mktemp"
>  ALTERNATIVE_TARGET[mktemp] = "${bindir}/mktemp.${BPN}"
> +ALTERNATIVE_LINK_NAME[mktemp.1] = "${mandir}/man1/mktemp.1"
>  
>  ALTERNATIVE_LINK_NAME[df] = "${base_bindir}/df"
>  ALTERNATIVE_TARGET[df] = "${bindir}/df.${BPN}"
> +ALTERNATIVE_LINK_NAME[df.1] = "${mandir}/man1/df.1"
>  
>  ALTERNATIVE_LINK_NAME[lbracket] = "${bindir}/["
>  ALTERNATIVE_TARGET[lbracket] = "${bindir}/lbracket.${BPN}"
> +ALTERNATIVE_LINK_NAME[lbracket.1] = "${mandir}/man1/lbracket.1"
>  
>  python __anonymous() {
>  	for prog in d.getVar('base_bindir_progs', True).split():
> 



  reply	other threads:[~2015-02-17 15:55 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-17  5:47 [PATCH-v2 0/3] coreutils: facilitate generating real manpages Paul Gortmaker
2015-02-17  5:47 ` [PATCH 1/3] coreutils: don't generate useless dummy stub manpages Paul Gortmaker
2015-02-17  5:47 ` [PATCH 2/3] coreutils: import prebuilt manpages from Gentoo Paul Gortmaker
2015-02-17 15:55   ` Mark Hatle [this message]
2015-02-17  5:47 ` [PATCH 3/3] scripts: delete dummy help2man script Paul Gortmaker
  -- strict thread matches above, loose matches on Subject: below --
2015-02-10 19:19 [PATCH 0/3] coreutils: facilitate generating real manpages Paul Gortmaker
2015-02-10 19:19 ` [PATCH 2/3] coreutils: import prebuilt manpages from Gentoo Paul Gortmaker
2015-02-10 19:59   ` Mark Hatle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54E36460.2090109@windriver.com \
    --to=mark.hatle@windriver.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=paul.eggleton@linux.intel.com \
    --cc=paul.gortmaker@windriver.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.