Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/18] autodetected dependencies
Date: Wed, 24 Jul 2013 14:02:36 +0200	[thread overview]
Message-ID: <cover.1374667312.git.Martin.Jansa@gmail.com> (raw)

The following changes since commit ac5d20f4adac69ea1702694fb50849c9e465b443:

  systemd: Remove systemd_unitdir if systemd is not in distro features (2013-07-23 07:49:54 -0700)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib jansa/deps
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/deps

Martin Jansa (18):
  test-dependencies: add simple script to detect missing or autoenabled
    dependencies
  gst-plugins-bad: add few more PACKAGECONFIGs
  xkeyboard-config: add missing dependency on util-macros
  ccache: add zlib dependency
  cups: add PACKAGECONFIG for acl
  directfb: add PACKAGECONFIG for jpeg2000
  distcc: add PACKAGECONFIG for popt
  grub: add PACKAGECONFIG for grub-mount
  mailx: remove support for autodetection of krb5
  minicom: add configure option and PACKAGECONFIG for lockdev
  ltp: add acl, openssl dependency
  patch: add PACKAGECONFIG for attr
  python-imaging: add PACKAGECONFIG for lcms
  socat: add PACKAGECONFIG for tcp-wrappers
  sudo: add PACKAGECONFIG for zlib
  gstreamer1.0-plugins-good: add PACKAGECONFIG for v4l
  gst-plugins-good: add PACKAGECONFIG for jpeg, wavpack, gdkpixbuf, v4l,
    bzip2, orc
  gettext: disable nls when INHIBIT_DEFAULT_DEPS is set

 meta/classes/gettext.bbclass                       |   4 +-
 meta/recipes-bsp/grub/grub_2.00.bb                 |   3 +
 meta/recipes-connectivity/socat/socat_1.7.2.2.bb   |   3 +
 meta/recipes-devtools/ccache/ccache.inc            |   2 +
 meta/recipes-devtools/distcc/distcc_3.1.bb         |   4 +-
 meta/recipes-devtools/patch/patch.inc              |   3 +
 .../allow.to.disable.some.features.patch           |  65 ++++++
 .../python/python-imaging_1.1.7.bb                 |  10 +-
 meta/recipes-extended/cups/cups16.inc              |   1 +
 meta/recipes-extended/ltp/ltp_20130503.bb          |   2 +-
 .../explicitly.disable.krb5.support.patch          |  46 ++++
 meta/recipes-extended/mailx/mailx_12.5.bb          |   1 +
 .../minicom-2.6.2/allow.to.disable.lockdev.patch   |  21 ++
 meta/recipes-extended/minicom/minicom_2.6.2.bb     |   7 +-
 meta/recipes-extended/sudo/sudo.inc                |   3 +
 meta/recipes-graphics/directfb/directfb.inc        |   3 +
 .../xorg-lib/xkeyboard-config_2.9.bb               |   2 +-
 .../gstreamer/gst-plugins-bad_0.10.23.bb           |  10 +
 .../gstreamer/gst-plugins-good_0.10.31.bb          |  12 +-
 .../gstreamer/gstreamer1.0-plugins-good.inc        |   2 +-
 scripts/test-dependencies.sh                       | 256 +++++++++++++++++++++
 21 files changed, 449 insertions(+), 11 deletions(-)
 create mode 100644 meta/recipes-devtools/python/python-imaging/allow.to.disable.some.features.patch
 create mode 100644 meta/recipes-extended/mailx/mailx-12.5/explicitly.disable.krb5.support.patch
 create mode 100644 meta/recipes-extended/minicom/minicom-2.6.2/allow.to.disable.lockdev.patch
 create mode 100755 scripts/test-dependencies.sh

-- 
1.8.3.2



             reply	other threads:[~2013-07-24 12:02 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-24 12:02 Martin Jansa [this message]
2013-07-24 12:02 ` [PATCH 01/18] test-dependencies: add simple script to detect missing or autoenabled dependencies Martin Jansa
2013-07-25 13:42   ` Burton, Ross
2013-07-24 12:02 ` [PATCH 02/18] gst-plugins-bad: add few more PACKAGECONFIGs Martin Jansa
2013-07-24 12:02 ` [PATCH 03/18] xkeyboard-config: add missing dependency on util-macros Martin Jansa
2013-07-24 12:02 ` [PATCH 04/18] ccache: add zlib dependency Martin Jansa
2013-07-24 12:02 ` [PATCH 05/18] cups: add PACKAGECONFIG for acl Martin Jansa
2013-07-24 12:02 ` [PATCH 06/18] directfb: add PACKAGECONFIG for jpeg2000 Martin Jansa
2013-07-24 12:02 ` [PATCH 07/18] distcc: add PACKAGECONFIG for popt Martin Jansa
2013-07-24 12:02 ` [PATCH 08/18] grub: add PACKAGECONFIG for grub-mount Martin Jansa
2013-07-24 12:02 ` [PATCH 09/18] mailx: remove support for autodetection of krb5 Martin Jansa
2013-07-24 12:02 ` [PATCH 10/18] minicom: add configure option and PACKAGECONFIG for lockdev Martin Jansa
2013-07-24 12:02 ` [PATCH 11/18] ltp: add acl, openssl dependency Martin Jansa
2013-07-24 12:02 ` [PATCH 12/18] patch: add PACKAGECONFIG for attr Martin Jansa
2013-07-24 12:02 ` [PATCH 13/18] python-imaging: add PACKAGECONFIG for lcms Martin Jansa
2013-07-24 12:02 ` [PATCH 14/18] socat: add PACKAGECONFIG for tcp-wrappers Martin Jansa
2013-07-24 12:02 ` [PATCH 15/18] sudo: add PACKAGECONFIG for zlib Martin Jansa
2013-07-24 12:02 ` [PATCH 16/18] gstreamer1.0-plugins-good: add PACKAGECONFIG for v4l Martin Jansa
2013-07-24 12:02 ` [PATCH 17/18] gst-plugins-good: add PACKAGECONFIG for jpeg, wavpack, gdkpixbuf, v4l, bzip2, orc Martin Jansa
2013-07-24 12:02 ` [PATCH 18/18] gettext: disable nls when INHIBIT_DEFAULT_DEPS is set Martin Jansa
2013-07-24 16:50 ` test-dependencies.sh results from big world build Martin Jansa
2013-07-24 18:26   ` Chris Larson

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=cover.1374667312.git.Martin.Jansa@gmail.com \
    --to=martin.jansa@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    /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