Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Adam Duskett <aduskett@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v8 0/5] Gobject-introspection: New package
Date: Sun, 29 Jul 2018 15:19:16 -0400	[thread overview]
Message-ID: <20180729191921.11216-1-aduskett@gmail.com> (raw)


I am releasing version 8 of the gobject-introspection patch series.

Previously from V7:
I received reports of some packages requiring installed .typelib files
on the target filing system from the gobject-introspection package.
Previous versions of this patch had the configure flag
of --disable-introspection-data set. This patch now sets this flag
to enabled, which builds the .typelib files.

This change requires a few changes, however:

First: I wasn't able to get the cross-ldd script to work correctly.
What was happening was that cross-ldd was calling out my host-ldd,
which then would cause the .typelib files to fail the linking step.
Adding the prelink-cross package fixes this issue. As such, I removed
the cross-ldd wrapper from package/gobject-introspection.

Second: I had to move some logic around first to install the ldd and qemu
wrappers first, as gobject-introspection calls g-ir-ldd-wrapper and
g-ir-scanner-qemuwrapper during the compiling process.

Changes to v8:
I forgot to add "select BR2_PACKAGE_HOST_PRELINK_CROSS" to the
gobject-introspectio Config.in file. Whoops!

Adam Duskett (5):
  binutils: install libiberty for host build.
  prelink-cross: new package
  gstreamer1 packages: explicitly disable introspection
  gobject-introspection: new package
  gstreamer1 packages: add support for introspection

 DEVELOPERS                                    |   1 +
 Makefile                                      |   2 +
 package/Config.in                             |   1 +
 package/Config.in.host                        |   1 +
 package/binutils/binutils.mk                  |   1 +
 ...lete-upstream-attempt-at-cross-compi.patch |  50 +++++
 ...-host-gi-gi-cross-wrapper-gi-ldd-wra.patch | 203 ++++++++++++++++++
 ...canner-add-use-binary-wrapper-option.patch |  52 +++++
 ...scanner-add-a-use-ldd-wrapper-option.patch |  48 +++++
 .../0005-add-PYTHON_INCLUDES-override.patch   |  39 ++++
 ...scanner-add-a-lib-dirs-envvar-option.patch |  73 +++++++
 .../0007-Add-rpath-links-to-ccompiler.patch   |  29 +++
 package/gobject-introspection/Config.in       |  31 +++
 .../gobject-introspection/g-ir-compiler.in    |   2 +
 .../g-ir-scanner-lddwrapper.in                |   2 +
 .../g-ir-scanner-qemuwrapper.in               |  10 +
 package/gobject-introspection/g-ir-scanner.in |   3 +
 .../gobject-introspection.hash                |   4 +
 .../gobject-introspection.mk                  |  98 +++++++++
 .../gst1-plugins-bad/gst1-plugins-bad.mk      |   8 +-
 ...ect-reference-to-gstreamer-sdp-in-Ma.patch |  26 +++
 .../gst1-plugins-base/gst1-plugins-base.mk    |   8 +-
 package/gstreamer1/gstreamer1/gstreamer1.mk   |   7 +
 package/pkg-autotools.mk                      |   3 +
 package/prelink-cross/Config.in.host          |   6 +
 package/prelink-cross/prelink-cross.hash      |   3 +
 package/prelink-cross/prelink-cross.mk        |  15 ++
 27 files changed, 724 insertions(+), 2 deletions(-)
 create mode 100644 package/gobject-introspection/0001-Revert-an-incomplete-upstream-attempt-at-cross-compi.patch
 create mode 100644 package/gobject-introspection/0002-configure.ac-add-host-gi-gi-cross-wrapper-gi-ldd-wra.patch
 create mode 100644 package/gobject-introspection/0003-giscanner-add-use-binary-wrapper-option.patch
 create mode 100644 package/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch
 create mode 100644 package/gobject-introspection/0005-add-PYTHON_INCLUDES-override.patch
 create mode 100644 package/gobject-introspection/0006-giscanner-add-a-lib-dirs-envvar-option.patch
 create mode 100644 package/gobject-introspection/0007-Add-rpath-links-to-ccompiler.patch
 create mode 100644 package/gobject-introspection/Config.in
 create mode 100644 package/gobject-introspection/g-ir-compiler.in
 create mode 100644 package/gobject-introspection/g-ir-scanner-lddwrapper.in
 create mode 100644 package/gobject-introspection/g-ir-scanner-qemuwrapper.in
 create mode 100644 package/gobject-introspection/g-ir-scanner.in
 create mode 100644 package/gobject-introspection/gobject-introspection.hash
 create mode 100644 package/gobject-introspection/gobject-introspection.mk
 create mode 100644 package/gstreamer1/gst1-plugins-base/0001-rtsp-drop-incorrect-reference-to-gstreamer-sdp-in-Ma.patch
 create mode 100644 package/prelink-cross/Config.in.host
 create mode 100644 package/prelink-cross/prelink-cross.hash
 create mode 100644 package/prelink-cross/prelink-cross.mk

-- 
2.17.1

             reply	other threads:[~2018-07-29 19:19 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-29 19:19 Adam Duskett [this message]
2018-07-29 19:19 ` [Buildroot] [PATCH v8 1/5] binutils: install libiberty for host build Adam Duskett
2018-07-29 19:19 ` [Buildroot] [PATCH v8 2/5] prelink-cross: new package Adam Duskett
2018-07-29 19:19 ` [Buildroot] [PATCH v8 3/5] gstreamer1 packages: explicitly disable introspection Adam Duskett
2018-07-31 20:57   ` Thomas Petazzoni
2018-07-29 19:19 ` [Buildroot] [PATCH v8 4/5] gobject-introspection: new package Adam Duskett
2018-12-05 22:26   ` Joseph Kogut
2018-12-10 16:53     ` Adam Duskett
2018-07-29 19:19 ` [Buildroot] [PATCH v8 5/5] gstreamer1 packages: add support for introspection Adam Duskett

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=20180729191921.11216-1-aduskett@gmail.com \
    --to=aduskett@gmail.com \
    --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