All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [0/21] Add missing indirect dependencies
@ 2015-02-04  0:33 Arnout Vandecappelle
  2015-02-04  0:33 ` [Buildroot] [PATCH 01/21] python-coherence: add missing indirect dependency on c++ Arnout Vandecappelle
                   ` (21 more replies)
  0 siblings, 22 replies; 28+ messages in thread
From: Arnout Vandecappelle @ 2015-02-04  0:33 UTC (permalink / raw)
  To: buildroot

 With the fix for randconfig that I made in
http://patchwork.ozlabs.org/patch/432554/ it is now possible to run
'make randconfig' and get usable results. So I ran the following loop
to detect missing indirect dependencies:

while true; do make randconfig 2>&1 | grep warning; done

If there is a missing indirect dependency, this will output a line like:

warning: (BR2_PACKAGE_UTIL_LINUX_SETPRIV) selects BR2_PACKAGE_LIBCAP_NG which has unmet direct dependencies (!BR2_avr32)


 After this series, I ran about 6000 randconfigs and didn't encounter any
warning anymore.


 It would be good to include such a test in a jenkins job to detect this
type of error earlier.

 Regards,
 Arnout

----------------------------------------------------------------
Arnout Vandecappelle (Essensium/Mind) (21):
      python-coherence: add missing indirect dependency on c++
      gst-plugins-bad: add missing indirect dependency on atomics for rsvg
      gst1-plugins-bad: add missing indirect dependency on atomics for rsvg
      gst-plugins-base: add missing indirect dependency on atomics for pango
      gst1-plugins-base: add missing indirect dependency on atomics for pango
      qemu: add missing indirect dependency on dynamic library for fdt
      grantlee: add missing indirect dependency on jscore available
      libgail: add missing indirect dependency on C++ and atomics
      espeak: add missing indirect dependency on atomics for pulseaudio
      kodi: add missing indirect dependency on dynamic lib for shairport
      oprofile: add missing indirect dependency on NPTL for PPC
      util-linux: add missing indirect dependency on !avr32 for setpriv
      dovecot: add missing indirect dependency on !avr32 for mysql
      php: add missing indirect dependency on !avr32 for mysql extensions
      cwiid: add missing indirect dependency on atomics for wmgui
      opencv: add missing indirect dependency on atomics for gtk support
      pinenty: add missing indirect dependency on atomics for gtk2 support
      xscreensaver: add missing indirect dependency on atomics
      enlightenment: add missing indirect dependency on atomics
      qt5cinex: add missing indirect dependency on libegl
      qt5webkit: add missing indirect dependency on atomics and !flat

 package/cwiid/Config.in                        |  6 ++++++
 package/dovecot/Config.in                      |  6 ++++--
 package/enlightenment/Config.in                |  3 +++
 package/espeak/Config.in                       |  4 +++-
 package/grantlee/Config.in                     |  6 ++++--
 package/gstreamer/gst-plugins-bad/Config.in    | 11 +++++------
 package/gstreamer/gst-plugins-base/Config.in   | 10 ++++------
 package/gstreamer1/gst1-plugins-bad/Config.in  | 11 +++++------
 package/gstreamer1/gst1-plugins-base/Config.in | 10 ++++------
 package/kodi/Config.in                         |  4 ++++
 package/libgail/Config.in                      |  7 +++++--
 package/opencv/Config.in                       |  1 +
 package/oprofile/Config.in                     |  4 ++--
 package/php/Config.ext                         |  8 ++++++--
 package/pinentry/Config.in                     |  6 ++----
 package/python-coherence/Config.in             |  5 +++++
 package/qemu/Config.in                         |  8 ++++++++
 package/qt5/qt5webkit/Config.in                |  2 ++
 package/qt5cinex/Config.in                     |  5 +++--
 package/util-linux/Config.in                   |  1 +
 package/xscreensaver/Config.in                 | 13 ++++++++-----
 21 files changed, 85 insertions(+), 46 deletions(-)

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2015-02-09 23:06 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-04  0:33 [Buildroot] [0/21] Add missing indirect dependencies Arnout Vandecappelle
2015-02-04  0:33 ` [Buildroot] [PATCH 01/21] python-coherence: add missing indirect dependency on c++ Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 02/21] gst-plugins-bad: add missing indirect dependency on atomics for rsvg Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 03/21] gst1-plugins-bad: " Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 04/21] gst-plugins-base: add missing indirect dependency on atomics for pango Arnout Vandecappelle
2015-02-04  7:54   ` Jerzy Grzegorek
2015-02-04  0:34 ` [Buildroot] [PATCH 05/21] gst1-plugins-base: " Arnout Vandecappelle
2015-02-04  8:04   ` Jerzy Grzegorek
2015-02-04  0:34 ` [Buildroot] [PATCH 06/21] qemu: add missing indirect dependency on dynamic library for fdt Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 07/21] grantlee: add missing indirect dependency on jscore available Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 08/21] libgail: add missing indirect dependency on C++ and atomics Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 09/21] espeak: add missing indirect dependency on atomics for pulseaudio Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 10/21] kodi: add missing indirect dependency on dynamic lib for shairport Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 11/21] oprofile: add missing indirect dependency on NPTL for PPC Arnout Vandecappelle
2015-02-07 20:14   ` Peter Korsgaard
2015-02-04  0:34 ` [Buildroot] [PATCH 12/21] util-linux: add missing indirect dependency on !avr32 for setpriv Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 13/21] dovecot: add missing indirect dependency on !avr32 for mysql Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 14/21] php: add missing indirect dependency on !avr32 for mysql extensions Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 15/21] cwiid: add missing indirect dependency on atomics for wmgui Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 16/21] opencv: add missing indirect dependency on atomics for gtk support Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 17/21] pinenty: add missing indirect dependency on atomics for gtk2 support Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 18/21] xscreensaver: add missing indirect dependency on atomics Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 19/21] enlightenment: " Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 20/21] qt5cinex: add missing indirect dependency on libegl Arnout Vandecappelle
2015-02-04  0:34 ` [Buildroot] [PATCH 21/21] qt5webkit: add missing indirect dependency on atomics and !flat Arnout Vandecappelle
2015-02-07 20:27 ` [Buildroot] [0/21] Add missing indirect dependencies Peter Korsgaard
2015-02-09 16:43   ` Maxime Ripard
2015-02-09 23:06     ` Peter Korsgaard

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.