From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v13 2/5] package/prelink-cross: new package
Date: Sun, 4 Aug 2019 08:07:49 +0200 [thread overview]
Message-ID: <20190804060749.GA2003@scaer> (raw)
In-Reply-To: <20190804001429.51451-2-aduskett@gmail.com>
Adam, All,
On 2019-08-03 20:14 -0400, aduskett at gmail.com spake thusly:
> From: Adam Duskett <Aduskett@gmail.com>
>
> Prelink-cross emulates a runtime linker for a given sysroot. This is
> necessary to allow gobject-introspection to build its typelib files
> during cross-compiling.
>
> We're using a sha1 on the cross_prelink branch, as we need the
> RTLD-enabled variant of prelink-cross.
>
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Signed-off-by: Adam Duskett <Aduskett@gmail.com>
> ---
> Changes v11 -> v12:
> - Change version to a853a5d715d84eec93aa68e8f2df26b7d860f5b2 as the commit
> id b10e14218646d8b74773b82b0f8b395bce698fa2 no longer exists.
I was very discincerted by this comment: that a commit from upstream
disapeeared was not very conforting: what would guarantee that the new
commit we now choose will not disappear in the future?
So this had me check the upstream epository, and there is good news: 6
weeks ago, they did merge the cross_prelink branch into master. Wee! :-)
So, you may want to update this to use the HEAD of the master brnach,
which is currently d89fb6060e57f0aaa329de9ad81abe76c180ac66.
Regards,
Yann E. MORIN.
> Changes v10 -> v11:
> - adopted by Yann
> - switch to a https git server
> - drop the Config.in.host entry
> - fix typo in commit log
>
> Changes v9 -> v10:
> - None
>
> Changes v8 -> v9:
> - Add the package to the DEVELOPERS file under my name.
> - Bump version to a853a5d715d84eec93aa68e8f2df26b7d860f5b2
> - Add host-elfutils as a dependency.
>
> Changes v7 -> v8:
> - None
>
> Changes v1 -> v7:
> - Add patch to series.
>
> DEVELOPERS | 1 +
> package/prelink-cross/prelink-cross.hash | 3 +++
> package/prelink-cross/prelink-cross.mk | 15 +++++++++++++++
> 3 files changed, 19 insertions(+)
> create mode 100644 package/prelink-cross/prelink-cross.hash
> create mode 100644 package/prelink-cross/prelink-cross.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index e9da0c7f50..407f3f1b1d 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -56,6 +56,7 @@ F: package/openjdk/
> F: package/openjdk-bin/
> F: package/php/
> F: package/policycoreutils/
> +F: package/prelink-cross/
> F: package/python3/
> F: package/python-flask-sqlalchemy/
> F: package/python-mutagen/
> diff --git a/package/prelink-cross/prelink-cross.hash b/package/prelink-cross/prelink-cross.hash
> new file mode 100644
> index 0000000000..3ac33ac3d0
> --- /dev/null
> +++ b/package/prelink-cross/prelink-cross.hash
> @@ -0,0 +1,3 @@
> +# Locally computed
> +sha256 cb3f5d833cd74b7e90e38465c9c948b0f4138c017509cb91e391b0931063429e prelink-cross-a853a5d715d84eec93aa68e8f2df26b7d860f5b2.tar.gz
> +sha256 b8a2f73f743dc1a51aff23f1aacbca4b868564db52496fa3c0caba755bfd1eaf COPYING
> diff --git a/package/prelink-cross/prelink-cross.mk b/package/prelink-cross/prelink-cross.mk
> new file mode 100644
> index 0000000000..d97141bab4
> --- /dev/null
> +++ b/package/prelink-cross/prelink-cross.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# host-prelink-cross
> +#
> +################################################################################
> +
> +HOST_PRELINK_CROSS_VERSION = a853a5d715d84eec93aa68e8f2df26b7d860f5b2
> +HOST_PRELINK_CROSS_SITE = https://git.yoctoproject.org/git/prelink-cross
> +HOST_PRELINK_CROSS_SITE_METHOD = git
> +HOST_PRELINK_CROSS_LICENSE = GPL-2.0
> +HOST_PRELINK_CROSS_LICENSE_FILES = COPYING
> +HOST_PRELINK_CROSS_AUTORECONF = YES
> +HOST_PRELINK_CROSS_DEPENDENCIES = host-elfutils host-libiberty
> +
> +$(eval $(host-autotools-package))
> --
> 2.21.0
>
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2019-08-04 6:07 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-04 0:14 [Buildroot] [PATCH v13 1/5] package/libiberty: new package aduskett at gmail.com
2019-08-04 0:14 ` [Buildroot] [PATCH v13 2/5] package/prelink-cross: " aduskett at gmail.com
2019-08-04 6:07 ` Yann E. MORIN [this message]
2019-08-04 8:16 ` Arnout Vandecappelle
2019-08-04 0:14 ` [Buildroot] [PATCH v13 3/5] package/gdb: depend on libiberty aduskett at gmail.com
2019-08-04 8:17 ` Arnout Vandecappelle
2019-08-04 0:14 ` [Buildroot] [PATCH v13 4/5] package/meson: prevent python include path manipulation aduskett at gmail.com
2019-08-04 22:05 ` Arnout Vandecappelle
2019-08-04 0:14 ` [Buildroot] [PATCH v13 5/5] package/gobject-introspection: new package aduskett at gmail.com
2019-08-04 22:23 ` [Buildroot] [PATCH v13 1/5] package/libiberty: " Arnout Vandecappelle
2019-08-05 11:39 ` ratbert90
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=20190804060749.GA2003@scaer \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox