All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers
@ 2014-11-26  5:42 jackie.huang
  2014-11-26  5:42 ` [PATCH 01/13] meta-oe: Add LAYERVERSION and LAYERDEPENDS jackie.huang
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

I asked about this and seems no objection, so adding these for each layer.

--
The following changes since commit 1b6141cc55fe8877c48b5e63c7db25dd75e35094:

  fwts: update to 14.09.00 release (2014-11-24 12:03:03 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib jhuang0/r_add-layerdepends-0
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/r_add-layerdepends-0

Jackie Huang (13):
  meta-oe: Add LAYERVERSION and LAYERDEPENDS
  meta-perl: Add LAYERVERSION and LAYERDEPENDS
  meta-python: Add LAYERVERSION and LAYERDEPENDS
  meta-ruby: Add LAYERVERSION and LAYERDEPENDS
  toolchain-layer: Add LAYERVERSION and LAYERDEPENDS
  meta-efl: Add LAYERVERSION and LAYERDEPENDS
  meta-filesystems: Add LAYERVERSION and LAYERDEPENDS
  meta-gnome: Add LAYERVERSION and LAYERDEPENDS
  meta-gpe: Add LAYERVERSION and LAYERDEPENDS
  meta-initramfs: Add LAYERVERSION and LAYERDEPENDS
  meta-multimedia: Add LAYERVERSION and LAYERDEPENDS
  meta-systemd: Add LAYERVERSION and LAYERDEPENDS
  meta-xfce: Add LAYERVERSION and LAYERDEPENDS

 meta-efl/conf/layer.conf         |    6 ++++++
 meta-filesystems/conf/layer.conf |    6 ++++++
 meta-gnome/conf/layer.conf       |    6 ++++++
 meta-gpe/conf/layer.conf         |    6 ++++++
 meta-initramfs/conf/layer.conf   |    6 ++++++
 meta-multimedia/conf/layer.conf  |    5 +++++
 meta-oe/conf/layer.conf          |    6 ++++++
 meta-perl/conf/layer.conf        |    6 ++++++
 meta-python/conf/layer.conf      |    6 ++++++
 meta-ruby/conf/layer.conf        |    6 ++++++
 meta-systemd/conf/layer.conf     |    6 ++++++
 meta-xfce/conf/layer.conf        |    6 ++++++
 toolchain-layer/conf/layer.conf  |    5 +++++
 13 files changed, 76 insertions(+)

-- 
1.7.9.5



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

* [PATCH 01/13] meta-oe: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 02/13] meta-perl: " jackie.huang
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-oe/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-oe/conf/layer.conf b/meta-oe/conf/layer.conf
index 2a5a428..e2a89cd 100644
--- a/meta-oe/conf/layer.conf
+++ b/meta-oe/conf/layer.conf
@@ -23,6 +23,12 @@ BBFILE_PATTERN_openembedded-layer := "^${LAYERDIR}/"
 
 BBFILE_PRIORITY_openembedded-layer = "6"
 
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_openembedded-layer = "1"
+
+LAYERDEPENDS_openembedded-layer = "core"
+
 LICENSE_PATH += "${LAYERDIR}/licenses"
 
 SIGGEN_EXCLUDERECIPES_ABISAFE += " \
-- 
1.7.9.5



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

* [PATCH 02/13] meta-perl: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
  2014-11-26  5:42 ` [PATCH 01/13] meta-oe: Add LAYERVERSION and LAYERDEPENDS jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 03/13] meta-python: " jackie.huang
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-perl/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-perl/conf/layer.conf b/meta-perl/conf/layer.conf
index 09ed0e5..0485ac8 100644
--- a/meta-perl/conf/layer.conf
+++ b/meta-perl/conf/layer.conf
@@ -8,3 +8,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
 BBFILE_COLLECTIONS += "perl-layer"
 BBFILE_PATTERN_perl-layer := "^${LAYERDIR}/"
 BBFILE_PRIORITY_perl-layer = "6"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_perl-layer = "1"
+
+LAYERDEPENDS_perl-layer = "core"
-- 
1.7.9.5



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

* [PATCH 03/13] meta-python: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
  2014-11-26  5:42 ` [PATCH 01/13] meta-oe: Add LAYERVERSION and LAYERDEPENDS jackie.huang
  2014-11-26  5:42 ` [PATCH 02/13] meta-perl: " jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 04/13] meta-ruby: " jackie.huang
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core and openembedded-layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-python/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-python/conf/layer.conf b/meta-python/conf/layer.conf
index 4e8eca3..55169e4 100644
--- a/meta-python/conf/layer.conf
+++ b/meta-python/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
 BBFILE_COLLECTIONS += "meta-python"
 BBFILE_PATTERN_meta-python := "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-python = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_meta-python = "1"
+
+LAYERDEPENDS_meta-python = "core openembedded-layer"
-- 
1.7.9.5



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

* [PATCH 04/13] meta-ruby: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
                   ` (2 preceding siblings ...)
  2014-11-26  5:42 ` [PATCH 03/13] meta-python: " jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 05/13] toolchain-layer: " jackie.huang
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core and openembedded-layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-ruby/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-ruby/conf/layer.conf b/meta-ruby/conf/layer.conf
index 6c2369f..b526a5d 100644
--- a/meta-ruby/conf/layer.conf
+++ b/meta-ruby/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
 BBFILE_COLLECTIONS += "ruby-layer"
 BBFILE_PATTERN_ruby-layer := "^${LAYERDIR}/"
 BBFILE_PRIORITY_ruby-layer = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_ruby-layer = "1"
+
+LAYERDEPENDS_ruby-layer = "core openembedded-layer"
-- 
1.7.9.5



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

* [PATCH 05/13] toolchain-layer: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
                   ` (3 preceding siblings ...)
  2014-11-26  5:42 ` [PATCH 04/13] meta-ruby: " jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 06/13] meta-efl: " jackie.huang
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 toolchain-layer/conf/layer.conf |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/toolchain-layer/conf/layer.conf b/toolchain-layer/conf/layer.conf
index ca81eb1..b377f12 100644
--- a/toolchain-layer/conf/layer.conf
+++ b/toolchain-layer/conf/layer.conf
@@ -23,3 +23,8 @@ BBFILE_PATTERN_toolchain-layer := "^${LAYERDIR}/"
 
 BBFILE_PRIORITY_toolchain-layer = "6"
 
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_toolchain-layer = "1"
+
+LAYERDEPENDS_toolchain-layer = "core"
-- 
1.7.9.5



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

* [PATCH 06/13] meta-efl: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
                   ` (4 preceding siblings ...)
  2014-11-26  5:42 ` [PATCH 05/13] toolchain-layer: " jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 07/13] meta-filesystems: " jackie.huang
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core and openembedded-layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-efl/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-efl/conf/layer.conf b/meta-efl/conf/layer.conf
index 53f4ff4..ed132aa 100644
--- a/meta-efl/conf/layer.conf
+++ b/meta-efl/conf/layer.conf
@@ -8,6 +8,12 @@ BBFILE_COLLECTIONS += "efl-layer"
 BBFILE_PATTERN_efl-layer := "^${LAYERDIR}/"
 BBFILE_PRIORITY_efl-layer = "7"
 
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_efl-layer = "1"
+
+LAYERDEPENDS_efl-layer = "core openembedded-layer"
+
 E_MIRROR = "http://download.enlightenment.org/releases"
 E_RELEASES = "http://download.enlightenment.org/rel"
 E_SVN = "svn://svn.enlightenment.org/svn/e"
-- 
1.7.9.5



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

* [PATCH 07/13] meta-filesystems: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
                   ` (5 preceding siblings ...)
  2014-11-26  5:42 ` [PATCH 06/13] meta-efl: " jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 08/13] meta-gnome: " jackie.huang
  2014-11-26  5:42 ` [PATCH 09/13] meta-gpe: " jackie.huang
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core and openembedded-layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-filesystems/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-filesystems/conf/layer.conf b/meta-filesystems/conf/layer.conf
index c0bbd78..9ed6d1b 100644
--- a/meta-filesystems/conf/layer.conf
+++ b/meta-filesystems/conf/layer.conf
@@ -8,3 +8,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
 BBFILE_COLLECTIONS += "filesystems-layer"
 BBFILE_PATTERN_filesystems-layer = "^${LAYERDIR}/"
 BBFILE_PRIORITY_filesystems-layer = "6"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_filesystems-layer = "1"
+
+LAYERDEPENDS_filesystems-layer = "core openembedded-layer"
-- 
1.7.9.5



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

* [PATCH 08/13] meta-gnome: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
                   ` (6 preceding siblings ...)
  2014-11-26  5:42 ` [PATCH 07/13] meta-filesystems: " jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  2014-11-26  5:42 ` [PATCH 09/13] meta-gpe: " jackie.huang
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core and openembedded-layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-gnome/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-gnome/conf/layer.conf b/meta-gnome/conf/layer.conf
index 902ab8f..58e12a9 100644
--- a/meta-gnome/conf/layer.conf
+++ b/meta-gnome/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
 BBFILE_COLLECTIONS += "gnome-layer"
 BBFILE_PATTERN_gnome-layer := "^${LAYERDIR}/"
 BBFILE_PRIORITY_gnome-layer = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_gnome-layer = "1"
+
+LAYERDEPENDS_gnome-layer = "core openembedded-layer"
-- 
1.7.9.5



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

* [PATCH 09/13] meta-gpe: Add LAYERVERSION and LAYERDEPENDS
  2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
                   ` (7 preceding siblings ...)
  2014-11-26  5:42 ` [PATCH 08/13] meta-gnome: " jackie.huang
@ 2014-11-26  5:42 ` jackie.huang
  8 siblings, 0 replies; 10+ messages in thread
From: jackie.huang @ 2014-11-26  5:42 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

According to README, it depends on oe-core and openembedded-layer

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-gpe/conf/layer.conf |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-gpe/conf/layer.conf b/meta-gpe/conf/layer.conf
index 6c018b1..00f3929 100644
--- a/meta-gpe/conf/layer.conf
+++ b/meta-gpe/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
 BBFILE_COLLECTIONS += "gpe-layer"
 BBFILE_PATTERN_gpe-layer := "^${LAYERDIR}/"
 BBFILE_PRIORITY_gpe-layer = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_gpe-layer = "1"
+
+LAYERDEPENDS_gpe-layer = "core openembedded-layer"
-- 
1.7.9.5



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

end of thread, other threads:[~2014-11-26  5:42 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-26  5:42 [PATCH 00/13] Add LAYERVERSION and LAYERDEPENDS for layers jackie.huang
2014-11-26  5:42 ` [PATCH 01/13] meta-oe: Add LAYERVERSION and LAYERDEPENDS jackie.huang
2014-11-26  5:42 ` [PATCH 02/13] meta-perl: " jackie.huang
2014-11-26  5:42 ` [PATCH 03/13] meta-python: " jackie.huang
2014-11-26  5:42 ` [PATCH 04/13] meta-ruby: " jackie.huang
2014-11-26  5:42 ` [PATCH 05/13] toolchain-layer: " jackie.huang
2014-11-26  5:42 ` [PATCH 06/13] meta-efl: " jackie.huang
2014-11-26  5:42 ` [PATCH 07/13] meta-filesystems: " jackie.huang
2014-11-26  5:42 ` [PATCH 08/13] meta-gnome: " jackie.huang
2014-11-26  5:42 ` [PATCH 09/13] meta-gpe: " jackie.huang

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.