Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan
@ 2013-04-30 16:32 Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 01/12] llvm2.9: Import from meta-java Martin Jansa
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Some changes from master I would like to get in dylan

The following changes since commit 8a350e3b4d3431f68d440f9d6ec079fdd1366617:

  update README to dylan (2013-04-23 18:52:43 +0200)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib jansa/for-dylan
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=jansa/for-dylan

Martin Jansa (12):
  llvm2.9: Import from meta-java
  llvm2.9: fix build with gcc-4.7
  llvm2.9: try to fix thumb build and disable it after failure
  llvm2.9: remove X86 from LLVM_TARGETS_TO_BUILD
  llvm2.9: add LLVM_EXTRA_ARCH to enable X86 unless building for x86
  e-wm-0.17.2.1: Update checksums, tarball was repackaged upstream :/
  meta-gnome: add README file
  meta-ruby: Fix subject-prefix
  README: add -M to git send-email example
  toolchain-layer, meta-networking: README: add dylan to subject-prefix
    and update branch in depends
  meta-multimedia/README: add dependency on meta-ruby
  README: show github mirror URL in layer dependencies

 meta-efl/README                                    |  7 ++--
 meta-efl/recipes-efl/e17/e-wm_0.17.2.1.bb          |  4 +-
 meta-gnome/README                                  | 16 ++++++++
 meta-gpe/README                                    |  7 ++--
 meta-initramfs/README                              |  5 ++-
 meta-multimedia/README                             |  8 ++--
 meta-networking/MAINTAINERS                        |  4 +-
 meta-networking/README                             |  2 +-
 meta-oe/README                                     |  5 ++-
 .../recipes-core/llvm/llvm2.9/0019-issue6065.patch | 35 +++++++++++++++++
 .../recipes-core/llvm/llvm2.9/0035-gcc-4.7.patch   | 16 ++++++++
 .../llvm/llvm2.9/arm_fenv_uclibc.patch             | 14 +++++++
 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb           | 44 ++++++++++++++++++++++
 meta-ruby/README                                   |  9 +++--
 meta-systemd/README                                |  7 ++--
 meta-webserver/README                              |  4 +-
 meta-xfce/README                                   |  7 ++--
 toolchain-layer/README                             |  7 ++--
 18 files changed, 168 insertions(+), 33 deletions(-)
 create mode 100644 meta-gnome/README
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9/0019-issue6065.patch
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9/0035-gcc-4.7.patch
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9/arm_fenv_uclibc.patch
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb

-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 01/12] llvm2.9: Import from meta-java
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 02/12] llvm2.9: fix build with gcc-4.7 Martin Jansa
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

* llvm is generic enough to be useful outside meta-java
  e.g. we need it to enable llvmpipe galium driver in mesa

* imported without any modification (except indentation), all
  credits go to Henning Heinold and Khem Raj for maintaining
  it in meta-java

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 .../llvm/llvm2.9/arm_fenv_uclibc.patch             | 14 +++++++++++
 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb           | 29 ++++++++++++++++++++++
 2 files changed, 43 insertions(+)
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9/arm_fenv_uclibc.patch
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb

diff --git a/meta-oe/recipes-core/llvm/llvm2.9/arm_fenv_uclibc.patch b/meta-oe/recipes-core/llvm/llvm2.9/arm_fenv_uclibc.patch
new file mode 100644
index 0000000..c3ae494
--- /dev/null
+++ b/meta-oe/recipes-core/llvm/llvm2.9/arm_fenv_uclibc.patch
@@ -0,0 +1,14 @@
+Index: llvm-2.9/include/llvm/Support/FEnv.h
+===================================================================
+--- llvm-2.9.orig/include/llvm/Support/FEnv.h	2010-11-29 20:44:50.000000000 +0100
++++ llvm-2.9/include/llvm/Support/FEnv.h	2011-11-18 18:42:22.580161297 +0100
+@@ -17,6 +17,9 @@
+ 
+ #include "llvm/Config/config.h"
+ #include <cerrno>
++
++#undef HAVE_FENV_H
++
+ #ifdef HAVE_FENV_H
+ #include <fenv.h>
+ #endif
diff --git a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
new file mode 100644
index 0000000..68cf70b
--- /dev/null
+++ b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
@@ -0,0 +1,29 @@
+require llvm.inc
+
+PR = "${INC_PR}.0"
+
+SRC_URI_append_libc-uclibc = " file://arm_fenv_uclibc.patch "
+
+PARALLEL_MAKE_virtclass-native = ""
+
+EXTRA_OECMAKE = "\
+    -DLLVM_TABLEGEN=${STAGING_BINDIR_NATIVE}/llvm${LLVM_RELEASE}/tblgen \
+    -DLLVM_TARGETS_TO_BUILD="X86;${LLVM_ARCH}" \
+    -DCMAKE_LINKER:FILEPATH=${LD} \
+    -DCMAKE_AR:FILEPATH=${AR} \
+    -DCMAKE_OBJCOPY:FILEPATH=${OBJCOPY} \
+    -DCMAKE_OBJDUMP:FILEPATH=${OBJDUMP} \
+    -DCMAKE_RANLIB:FILEPATH=${RANLIB} \
+    -DCMAKE_STRIP:FILEPATH=${STRIP} \
+    -DNM_PATH:FILEPATH=${NM} \
+    -DLLVM_ENABLE_PIC:BOOL=ON \
+    -DLLVM_TARGET_ARCH:STRING=${LLVM_ARCH} \
+    -DLLVM_ENABLE_ASSERTIONS:BOOL=ON \
+    -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
+    -DBUILD_SHARED_LIBS:BOOL=ON \
+"
+
+LLVM_RELEASE = "2.9"
+
+SRC_URI[md5sum] = "793138412d2af2c7c7f54615f8943771"
+SRC_URI[sha256sum] = "661236cfa17428b48cfa9cbb9909f7569c64b8ecd219fd91dbc00e3b557b3779"
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 02/12] llvm2.9: fix build with gcc-4.7
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 01/12] llvm2.9: Import from meta-java Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 03/12] llvm2.9: try to fix thumb build and disable it after failure Martin Jansa
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-core/llvm/llvm2.9/0035-gcc-4.7.patch | 16 ++++++++++++++++
 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb             |  2 ++
 2 files changed, 18 insertions(+)
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9/0035-gcc-4.7.patch

diff --git a/meta-oe/recipes-core/llvm/llvm2.9/0035-gcc-4.7.patch b/meta-oe/recipes-core/llvm/llvm2.9/0035-gcc-4.7.patch
new file mode 100644
index 0000000..4cf8d44
--- /dev/null
+++ b/meta-oe/recipes-core/llvm/llvm2.9/0035-gcc-4.7.patch
@@ -0,0 +1,16 @@
+Upstream-Status: Pending
+
+Imported from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673266
+
+Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
+
+--- a/lib/ExecutionEngine/JIT/Intercept.cpp	2012-05-17 16:11:46.956180361 +0200
++++ b/lib/ExecutionEngine/JIT/Intercept.cpp	2012-05-17 16:14:35.256184996 +0200
+@@ -52,6 +52,7 @@
+ #include <sys/stat.h>
+ #endif
+ #include <fcntl.h>
++#include <unistd.h>
+ /* stat functions are redirecting to __xstat with a version number.  On x86-64 
+  * linking with libc_nonshared.a and -Wl,--export-dynamic doesn't make 'stat' 
+  * available as an exported symbol, so we have to add it explicitly.
diff --git a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
index 68cf70b..d5b8c01 100644
--- a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
+++ b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
@@ -2,6 +2,8 @@ require llvm.inc
 
 PR = "${INC_PR}.0"
 
+SRC_URI += "file://0035-gcc-4.7.patch"
+
 SRC_URI_append_libc-uclibc = " file://arm_fenv_uclibc.patch "
 
 PARALLEL_MAKE_virtclass-native = ""
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 03/12] llvm2.9: try to fix thumb build and disable it after failure
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 01/12] llvm2.9: Import from meta-java Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 02/12] llvm2.9: fix build with gcc-4.7 Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 04/12] llvm2.9: remove X86 from LLVM_TARGETS_TO_BUILD Martin Jansa
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

* khem: could you check what I'm doing wrong? This is out of my league..

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 .../recipes-core/llvm/llvm2.9/0019-issue6065.patch | 35 ++++++++++++++++++++++
 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb           |  9 ++++++
 2 files changed, 44 insertions(+)
 create mode 100644 meta-oe/recipes-core/llvm/llvm2.9/0019-issue6065.patch

diff --git a/meta-oe/recipes-core/llvm/llvm2.9/0019-issue6065.patch b/meta-oe/recipes-core/llvm/llvm2.9/0019-issue6065.patch
new file mode 100644
index 0000000..aff3d1d
--- /dev/null
+++ b/meta-oe/recipes-core/llvm/llvm2.9/0019-issue6065.patch
@@ -0,0 +1,35 @@
+--- llvm-2.9.orig/lib/Target/ARM/ARMJITInfo.cpp	2013-04-19 14:49:28.063566919 +0200
++++ llvm-2.9/lib/Target/ARM/ARMJITInfo.cpp	2013-04-19 15:24:31.065435029 +0200
+@@ -59,7 +59,17 @@
+     // for the real target function right now. We have to act as if this
+     // whole compilation callback doesn't exist as far as the caller is
+     // concerned, so we can't just preserve the callee saved regs.
++    // stmdb introduced in http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMJITInfo.cpp?diff_format=h&r1=57911&r2=57910&pathrev=57911
++    // but fails on armv4t
++    // | {standard input}: Assembler messages:
++    // | {standard input}:22: Error: selected processor does not support Thumb mode `stmdb sp!,{r0,r1,r2,r3,lr}'
++    // | {standard input}:31: Error: lo register required -- `ldmia sp!,{r0,r1,r2,r3,lr}'
++    // | {standard input}:32: Error: lo register required -- `ldr pc,[sp],#4'
++#ifndef __thumb__
+     "stmdb sp!, {r0, r1, r2, r3, lr}\n"
++#else
++    "push {r0, r1, r2, r3, lr}\n"
++#endif
+ #if (defined(__VFP_FP__) && !defined(__SOFTFP__))
+     "fstmfdd sp!, {d0, d1, d2, d3, d4, d5, d6, d7}\n"
+ #endif
+@@ -99,8 +109,14 @@
+     // The above twiddling of the saved return addresses allows us to
+     // deallocate everything, including the LR the stub saved, with two
+     // updating load instructions.
++#ifndef __thumb__
+     "ldmia  sp!, {r0, r1, r2, r3, lr}\n"
+     "ldr    pc, [sp], #4\n"
++#else
++    // thumb dont allow lr and pc to be poped in the same instruction.
++    "pop {r0, r1, r2, r3, lr}\n"
++    "pop {pc}\n"
++#endif
+       );
+ #else  // Not an ARM host
+   void ARMCompilationCallback() {
diff --git a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
index d5b8c01..dc7f873 100644
--- a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
+++ b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
@@ -4,6 +4,15 @@ PR = "${INC_PR}.0"
 
 SRC_URI += "file://0035-gcc-4.7.patch"
 
+# 0019-issue6065.patch is still needed but a bit modified, because it was resolved by
+# http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMJITInfo.cpp?r1=120304&r2=124694&pathrev=124694
+# http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMJITInfo.cpp?diff_format=h&r1=57911&r2=57910&pathrev=57911
+# and still it fails with 
+# {standard input}:31: Error: invalid register list to push/pop instruction -- `pop {r0,r1,r2,r3,lr}'
+# make[2]: *** [lib/Target/ARM/CMakeFiles/LLVMARMCodeGen.dir/ARMJITInfo.cpp.o] Error 1
+# SRC_URI += "file://0019-issue6065.patch"
+ARM_INSTRUCTION_SET = "arm"
+
 SRC_URI_append_libc-uclibc = " file://arm_fenv_uclibc.patch "
 
 PARALLEL_MAKE_virtclass-native = ""
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 04/12] llvm2.9: remove X86 from LLVM_TARGETS_TO_BUILD
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (2 preceding siblings ...)
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 03/12] llvm2.9: try to fix thumb build and disable it after failure Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 05/12] llvm2.9: add LLVM_EXTRA_ARCH to enable X86 unless building for x86 Martin Jansa
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

* when building for qemux86* it tries to build X86 twice and fails with:
  | CMake Error at lib/Target/CMakeLists.txt:24 (add_subdirectory):
  |   The binary directory
  |
  |     /home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/x86_64-oe-linux/llvm2.9/2.9-r2.0/llvm-2.9/build/lib/Target/X86
  |
  |   is already used to build a source directory.  It cannot be used to build
  |   source directory
  |
  |     /home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/x86_64-oe-linux/llvm2.9/2.9-r2.0/llvm-2.9/lib/Target/X86
  |
  |   Specify a unique binary directory name.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
index dc7f873..04195d9 100644
--- a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
+++ b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
@@ -19,7 +19,7 @@ PARALLEL_MAKE_virtclass-native = ""
 
 EXTRA_OECMAKE = "\
     -DLLVM_TABLEGEN=${STAGING_BINDIR_NATIVE}/llvm${LLVM_RELEASE}/tblgen \
-    -DLLVM_TARGETS_TO_BUILD="X86;${LLVM_ARCH}" \
+    -DLLVM_TARGETS_TO_BUILD="${LLVM_ARCH}" \
     -DCMAKE_LINKER:FILEPATH=${LD} \
     -DCMAKE_AR:FILEPATH=${AR} \
     -DCMAKE_OBJCOPY:FILEPATH=${OBJCOPY} \
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 05/12] llvm2.9: add LLVM_EXTRA_ARCH to enable X86 unless building for x86
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (3 preceding siblings ...)
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 04/12] llvm2.9: remove X86 from LLVM_TARGETS_TO_BUILD Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 06/12] e-wm-0.17.2.1: Update checksums, tarball was repackaged upstream :/ Martin Jansa
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

* now I see why it was there before, at least on arm it fails with:
  | CMake Error at cmake/modules/LLVMConfig.cmake:127 (message):
  |   Library `X86' not found in list of llvm libraries.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-core/llvm/llvm2.9_2.9.bb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
index 04195d9..2b46162 100644
--- a/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
+++ b/meta-oe/recipes-core/llvm/llvm2.9_2.9.bb
@@ -17,9 +17,13 @@ SRC_URI_append_libc-uclibc = " file://arm_fenv_uclibc.patch "
 
 PARALLEL_MAKE_virtclass-native = ""
 
+LLVM_EXTRA_ARCH = "X86;"
+LLVM_EXTRA_ARCH_x86 = ""
+LLVM_EXTRA_ARCH_x86-64 = ""
+
 EXTRA_OECMAKE = "\
     -DLLVM_TABLEGEN=${STAGING_BINDIR_NATIVE}/llvm${LLVM_RELEASE}/tblgen \
-    -DLLVM_TARGETS_TO_BUILD="${LLVM_ARCH}" \
+    -DLLVM_TARGETS_TO_BUILD="${LLVM_EXTRA_ARCH}${LLVM_ARCH}" \
     -DCMAKE_LINKER:FILEPATH=${LD} \
     -DCMAKE_AR:FILEPATH=${AR} \
     -DCMAKE_OBJCOPY:FILEPATH=${OBJCOPY} \
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 06/12] e-wm-0.17.2.1: Update checksums, tarball was repackaged upstream :/
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (4 preceding siblings ...)
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 05/12] llvm2.9: add LLVM_EXTRA_ARCH to enable X86 unless building for x86 Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 07/12] meta-gnome: add README file Martin Jansa
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Files enlightenment-0.17.2.1/ChangeLog and enlightenment-0.17.2.1-new/ChangeLog differ
Files enlightenment-0.17.2.1/NEWS and enlightenment-0.17.2.1-new/NEWS differ
Files enlightenment-0.17.2.1/po/ca.gmo and enlightenment-0.17.2.1-new/po/ca.gmo differ
Files enlightenment-0.17.2.1/po/ca.po and enlightenment-0.17.2.1-new/po/ca.po differ
Files enlightenment-0.17.2.1/po/eo.gmo and enlightenment-0.17.2.1-new/po/eo.gmo differ
Files enlightenment-0.17.2.1/po/eo.po and enlightenment-0.17.2.1-new/po/eo.po differ

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/e17/e-wm_0.17.2.1.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-efl/recipes-efl/e17/e-wm_0.17.2.1.bb b/meta-efl/recipes-efl/e17/e-wm_0.17.2.1.bb
index 228c122..5ff68bb 100644
--- a/meta-efl/recipes-efl/e17/e-wm_0.17.2.1.bb
+++ b/meta-efl/recipes-efl/e17/e-wm_0.17.2.1.bb
@@ -12,5 +12,5 @@ SRC_URI = "\
     file://applications.menu \
 "
 
-SRC_URI[md5sum] = "e78018ba7a4622efbcbebd6d093b7fa4"
-SRC_URI[sha256sum] = "5e7b7f5ec88d0589bb4db8aae2c198dc9fd91049419e2460cbd7631207ebd799"
+SRC_URI[md5sum] = "dd6ffbe1ee6a804dbd2a7b2645bf3b4d"
+SRC_URI[sha256sum] = "66d250a865ffb97b12cabe8081ae041ce6924f55ffffaca6c65d468bb9f902f9"
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 07/12] meta-gnome: add README file
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (5 preceding siblings ...)
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 06/12] e-wm-0.17.2.1: Update checksums, tarball was repackaged upstream :/ Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 08/12] meta-ruby: Fix subject-prefix Martin Jansa
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-gnome/README | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 meta-gnome/README

diff --git a/meta-gnome/README b/meta-gnome/README
new file mode 100644
index 0000000..d7b9e7f
--- /dev/null
+++ b/meta-gnome/README
@@ -0,0 +1,15 @@
+This layer depends on:
+
+URI: git://git.openembedded.org/openembedded-core
+branch: dylan
+revision: HEAD
+
+URI: git://git.openembedded.org/meta-openembedded
+branch: dylan
+revision: HEAD
+
+Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-gnome][dylan]' in the subject'
+
+When sending single patches, please using something like 'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-gnome][dylan][PATCH'
+
+Interim layer maintainer: Martin Jansa <Martin.Jansa@gmail.com>
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 08/12] meta-ruby: Fix subject-prefix
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (6 preceding siblings ...)
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 07/12] meta-gnome: add README file Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 09/12] README: add -M to git send-email example Martin Jansa
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-ruby/README | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-ruby/README b/meta-ruby/README
index 4f39aba..9ef9986 100644
--- a/meta-ruby/README
+++ b/meta-ruby/README
@@ -8,8 +8,8 @@ URI: git://git.openembedded.org/meta-openembedded
 branch: dylan
 revision: HEAD
 
-Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe][dylan]' in the subject'
+Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-ruby][dylan]' in the subject'
 
-When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][dylan][PATCH'
+When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-ruby][dylan][PATCH'
 
 Interim layer maintainer: Martin Jansa <Martin.Jansa@gmail.com>
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 09/12] README: add -M to git send-email example
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (7 preceding siblings ...)
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 08/12] meta-ruby: Fix subject-prefix Martin Jansa
@ 2013-04-30 16:32 ` Martin Jansa
  2013-04-30 16:33 ` [meta-oe][dylan][PATCH 10/12] toolchain-layer, meta-networking: README: add dylan to subject-prefix and update branch in depends Martin Jansa
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/README             | 3 ++-
 meta-gnome/README           | 3 ++-
 meta-gpe/README             | 3 ++-
 meta-initramfs/README       | 3 ++-
 meta-multimedia/README      | 3 ++-
 meta-networking/MAINTAINERS | 2 +-
 meta-oe/README              | 3 ++-
 meta-ruby/README            | 3 ++-
 meta-systemd/README         | 3 ++-
 meta-xfce/README            | 3 ++-
 toolchain-layer/README      | 3 ++-
 11 files changed, 21 insertions(+), 11 deletions(-)

diff --git a/meta-efl/README b/meta-efl/README
index 01f192c..7a34ad6 100644
--- a/meta-efl/README
+++ b/meta-efl/README
@@ -10,6 +10,7 @@ revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-efl][dylan]' in the subject'
 
-When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-efl][dylan][PATCH'
+When sending single patches, please using something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-efl][dylan][PATCH'
 
 Interim layer maintainer: Koen Kooi <koen@dominion.thruhere.net>
diff --git a/meta-gnome/README b/meta-gnome/README
index d7b9e7f..9204cdf 100644
--- a/meta-gnome/README
+++ b/meta-gnome/README
@@ -10,6 +10,7 @@ revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-gnome][dylan]' in the subject'
 
-When sending single patches, please using something like 'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-gnome][dylan][PATCH'
+When sending single patches, please using something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-gnome][dylan][PATCH'
 
 Interim layer maintainer: Martin Jansa <Martin.Jansa@gmail.com>
diff --git a/meta-gpe/README b/meta-gpe/README
index 4058e72..1b59c40 100644
--- a/meta-gpe/README
+++ b/meta-gpe/README
@@ -10,6 +10,7 @@ revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-gpe][dylan]' in the subject'
 
-When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-gpe][dylan][PATCH'
+When sending single patches, please using something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-gpe][dylan][PATCH'
 
 Interim layer maintainer: Koen Kooi <koen@dominion.thruhere.net>
diff --git a/meta-initramfs/README b/meta-initramfs/README
index 01f4f53..0d26f28 100644
--- a/meta-initramfs/README
+++ b/meta-initramfs/README
@@ -22,7 +22,8 @@ Maintenance
 Send patches / pull requests to openembedded-devel@lists.openembedded.org
 with '[meta-initramfs][dylan]' in the subject.
 
-When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-initramfs][dylan][PATCH'
+When sending single patches, please using something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-initramfs][dylan][PATCH'
 
 Layer maintainers: Andrea Adami <andrea.adami@gmail.com>
                    Paul Eggleton <paul.eggleton@linux.intel.com>
diff --git a/meta-multimedia/README b/meta-multimedia/README
index 8412770..d82ceab 100644
--- a/meta-multimedia/README
+++ b/meta-multimedia/README
@@ -10,7 +10,8 @@ revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-multimedia][dylan]' in the subject'
 
-When sending single patches, please use something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-multimedia][dylan][PATCH
+When sending single patches, please use something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-multimedia][dylan][PATCH
 
 You are encouraged to fork the mirror on github https://github.com/openembedded/meta-oe/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.
 
diff --git a/meta-networking/MAINTAINERS b/meta-networking/MAINTAINERS
index 393f037..953e603 100644
--- a/meta-networking/MAINTAINERS
+++ b/meta-networking/MAINTAINERS
@@ -6,7 +6,7 @@ development mailing list (openembedded-devel@lists.openembedded.org) with
 
 When sending single patches, please use something like:
 
-   git send-email -1 \
+   git send-email -1 -M \
         --to openembedded-devel@lists.openembedded.org \
         --subject-prefix=meta-networking][PATCH
 
diff --git a/meta-oe/README b/meta-oe/README
index 0d6894c..267d5c4 100644
--- a/meta-oe/README
+++ b/meta-oe/README
@@ -6,7 +6,8 @@ revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe]' in the subject'
 
-When sending single patches, please use something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][dylan][PATCH'
+When sending single patches, please use something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][dylan][PATCH'
 
 You are encouraged to fork the mirror on github https://github.com/openembedded/meta-oe/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.
 
diff --git a/meta-ruby/README b/meta-ruby/README
index 9ef9986..0d447a1 100644
--- a/meta-ruby/README
+++ b/meta-ruby/README
@@ -10,6 +10,7 @@ revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-ruby][dylan]' in the subject'
 
-When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-ruby][dylan][PATCH'
+When sending single patches, please using something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-ruby][dylan][PATCH'
 
 Interim layer maintainer: Martin Jansa <Martin.Jansa@gmail.com>
diff --git a/meta-systemd/README b/meta-systemd/README
index 150a020..e31745e 100644
--- a/meta-systemd/README
+++ b/meta-systemd/README
@@ -17,7 +17,8 @@ $[LAYERDIR}/<layer name>/recipes-<group-name>/<recipe-name>/<recipe-name>.bbappe
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe][meta-systemd][dylan]' in the subject'
 
-When sending single patches, please use something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][meta-systemd][dylan][PATCH'
+When sending single patches, please use something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][meta-systemd][dylan][PATCH'
 
 You are encouraged to fork the mirror on github https://github.com/openembedded/meta-oe/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.
 
diff --git a/meta-xfce/README b/meta-xfce/README
index 4963a24..2b79780 100644
--- a/meta-xfce/README
+++ b/meta-xfce/README
@@ -16,6 +16,7 @@ BBMASK = "meta-xfce/recipes-multimedia"
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-xfce][dylan]' in the subject'
 
-When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-xfce][dylan][PATCH'
+When sending single patches, please using something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-xfce][dylan][PATCH'
 
 Interim layer maintainer: Andreas Müller <schnitzeltony@googlemail.com>
diff --git a/toolchain-layer/README b/toolchain-layer/README
index 5996b6c..1f9be50 100644
--- a/toolchain-layer/README
+++ b/toolchain-layer/README
@@ -6,7 +6,8 @@ revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe][toolchain-layer]' in the subject'
 
-When sending single patches, please use something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][toolchain-layer][PATCH'
+When sending single patches, please use something like:
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][toolchain-layer][PATCH'
 
 You are encouraged to fork the mirror on github https://github.com/openembedded/meta-oe/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.
 
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 10/12] toolchain-layer, meta-networking: README: add dylan to subject-prefix and update branch in depends
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (8 preceding siblings ...)
  2013-04-30 16:32 ` [meta-oe][dylan][PATCH 09/12] README: add -M to git send-email example Martin Jansa
@ 2013-04-30 16:33 ` Martin Jansa
  2013-04-30 16:33 ` [meta-oe][dylan][PATCH 11/12] meta-multimedia/README: add dependency on meta-ruby Martin Jansa
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-networking/MAINTAINERS | 2 +-
 toolchain-layer/README      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-networking/MAINTAINERS b/meta-networking/MAINTAINERS
index 953e603..c076c79 100644
--- a/meta-networking/MAINTAINERS
+++ b/meta-networking/MAINTAINERS
@@ -8,7 +8,7 @@ When sending single patches, please use something like:
 
    git send-email -1 -M \
         --to openembedded-devel@lists.openembedded.org \
-        --subject-prefix=meta-networking][PATCH
+        --subject-prefix=meta-networking][dylan][PATCH
 
 You may also contact the maintainers directly.
 
diff --git a/toolchain-layer/README b/toolchain-layer/README
index 1f9be50..448693f 100644
--- a/toolchain-layer/README
+++ b/toolchain-layer/README
@@ -1,13 +1,13 @@
 This layer depends on:
 
 URI: git://git.openembedded.org/openembedded-core
-branch: master
+branch: dylan
 revision: HEAD
 
 Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe][toolchain-layer]' in the subject'
 
 When sending single patches, please use something like:
-'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][toolchain-layer][PATCH'
+'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-oe][toolchain-layer][dylan][PATCH'
 
 You are encouraged to fork the mirror on github https://github.com/openembedded/meta-oe/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.
 
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 11/12] meta-multimedia/README: add dependency on meta-ruby
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (9 preceding siblings ...)
  2013-04-30 16:33 ` [meta-oe][dylan][PATCH 10/12] toolchain-layer, meta-networking: README: add dylan to subject-prefix and update branch in depends Martin Jansa
@ 2013-04-30 16:33 ` Martin Jansa
  2013-04-30 16:33 ` [meta-oe][dylan][PATCH 12/12] README: show github mirror URL in layer dependencies Martin Jansa
  2013-04-30 19:28 ` [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Eric Bénard
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

* mkvtoolnix depends on ruby-native

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-multimedia/README | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-multimedia/README b/meta-multimedia/README
index d82ceab..b241577 100644
--- a/meta-multimedia/README
+++ b/meta-multimedia/README
@@ -4,7 +4,8 @@ URI: git://git.openembedded.org/openembedded-core
 branch: dylan
 revision: HEAD
 
-URI: git://git.openembedded.org/meta-openembedded/meta-oe
+URI: git://git.openembedded.org/meta-openembedded
+layers: meta-oe, meta-ruby
 branch: dylan
 revision: HEAD
 
-- 
1.8.2.1




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

* [meta-oe][dylan][PATCH 12/12] README: show github mirror URL in layer dependencies
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (10 preceding siblings ...)
  2013-04-30 16:33 ` [meta-oe][dylan][PATCH 11/12] meta-multimedia/README: add dependency on meta-ruby Martin Jansa
@ 2013-04-30 16:33 ` Martin Jansa
  2013-04-30 19:28 ` [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Eric Bénard
  12 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2013-04-30 16:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Eric Bénard

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/README        | 4 ++--
 meta-gnome/README      | 4 ++--
 meta-gpe/README        | 4 ++--
 meta-initramfs/README  | 2 +-
 meta-multimedia/README | 4 ++--
 meta-networking/README | 2 +-
 meta-oe/README         | 2 +-
 meta-ruby/README       | 4 ++--
 meta-systemd/README    | 4 ++--
 meta-webserver/README  | 4 ++--
 meta-xfce/README       | 4 ++--
 toolchain-layer/README | 2 +-
 12 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/meta-efl/README b/meta-efl/README
index 7a34ad6..8b03e8d 100644
--- a/meta-efl/README
+++ b/meta-efl/README
@@ -1,10 +1,10 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-gnome/README b/meta-gnome/README
index 9204cdf..2915b1b 100644
--- a/meta-gnome/README
+++ b/meta-gnome/README
@@ -1,10 +1,10 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-gpe/README b/meta-gpe/README
index 1b59c40..0699c1c 100644
--- a/meta-gpe/README
+++ b/meta-gpe/README
@@ -1,10 +1,10 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-initramfs/README b/meta-initramfs/README
index 0d26f28..cc87669 100644
--- a/meta-initramfs/README
+++ b/meta-initramfs/README
@@ -11,7 +11,7 @@ Dependencies
 
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-multimedia/README b/meta-multimedia/README
index b241577..926cb9b 100644
--- a/meta-multimedia/README
+++ b/meta-multimedia/README
@@ -1,10 +1,10 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 layers: meta-oe, meta-ruby
 branch: dylan
 revision: HEAD
diff --git a/meta-networking/README b/meta-networking/README
index b929de9..a76a08c 100644
--- a/meta-networking/README
+++ b/meta-networking/README
@@ -17,7 +17,7 @@ Dependencies
 
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-oe/README b/meta-oe/README
index 267d5c4..f596ddc 100644
--- a/meta-oe/README
+++ b/meta-oe/README
@@ -1,6 +1,6 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-ruby/README b/meta-ruby/README
index 0d447a1..d08b572 100644
--- a/meta-ruby/README
+++ b/meta-ruby/README
@@ -1,10 +1,10 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-systemd/README b/meta-systemd/README
index e31745e..6e33899 100644
--- a/meta-systemd/README
+++ b/meta-systemd/README
@@ -1,12 +1,12 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
 And we're working to break the dependency on this one:
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 branch: dylan
 revision: HEAD
 
diff --git a/meta-webserver/README b/meta-webserver/README
index 60d01b6..db0d02a 100644
--- a/meta-webserver/README
+++ b/meta-webserver/README
@@ -11,14 +11,14 @@ Dependencies
 
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 subdirectory: meta
 branch: dylan
 revision: HEAD
 
 For some recipes, the meta-oe layer is required:
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 subdirectory: meta-oe
 branch: dylan
 revision: HEAD
diff --git a/meta-xfce/README b/meta-xfce/README
index 2b79780..686641a 100644
--- a/meta-xfce/README
+++ b/meta-xfce/README
@@ -1,10 +1,10 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
-URI: git://git.openembedded.org/meta-openembedded
+URI: git://github.com/openembedded/meta-oe.git
 branch: dylan
 revision: HEAD
 meta-xfce depends on meta-oe and meta-multimedia in this repository.
diff --git a/toolchain-layer/README b/toolchain-layer/README
index 448693f..11ad7f3 100644
--- a/toolchain-layer/README
+++ b/toolchain-layer/README
@@ -1,6 +1,6 @@
 This layer depends on:
 
-URI: git://git.openembedded.org/openembedded-core
+URI: git://github.com/openembedded/oe-core.git
 branch: dylan
 revision: HEAD
 
-- 
1.8.2.1




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

* Re: [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan
  2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
                   ` (11 preceding siblings ...)
  2013-04-30 16:33 ` [meta-oe][dylan][PATCH 12/12] README: show github mirror URL in layer dependencies Martin Jansa
@ 2013-04-30 19:28 ` Eric Bénard
  12 siblings, 0 replies; 14+ messages in thread
From: Eric Bénard @ 2013-04-30 19:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: martin.jansa

Hi Martin,

Le Tue, 30 Apr 2013 18:32:50 +0200,
Martin Jansa <martin.jansa@gmail.com> a écrit :

> Some changes from master I would like to get in dylan
> 
> The following changes since commit 8a350e3b4d3431f68d440f9d6ec079fdd1366617:
> 
>   update README to dylan (2013-04-23 18:52:43 +0200)
> 
> are available in the git repository at:
> 
>   git://git.openembedded.org/meta-openembedded-contrib jansa/for-dylan
>   http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=jansa/for-dylan
> 
> Martin Jansa (12):
>   llvm2.9: Import from meta-java
>   llvm2.9: fix build with gcc-4.7
>   llvm2.9: try to fix thumb build and disable it after failure
>   llvm2.9: remove X86 from LLVM_TARGETS_TO_BUILD
>   llvm2.9: add LLVM_EXTRA_ARCH to enable X86 unless building for x86
>   e-wm-0.17.2.1: Update checksums, tarball was repackaged upstream :/
>   meta-gnome: add README file
>   meta-ruby: Fix subject-prefix
>   README: add -M to git send-email example
>   toolchain-layer, meta-networking: README: add dylan to subject-prefix
>     and update branch in depends
>   meta-multimedia/README: add dependency on meta-ruby
>   README: show github mirror URL in layer dependencies
> 
as discussed, here is the list of commits I plan to push to dylan-next
tomorrow (hashes are local ones here) :

cca735e apache2: fix multilib builds
6cbeee1 modphp: update to 5.4.14
05d7a65 hiawatha: update to 9.1
a8c0bcb libnotify3, nautilus3: exclude from world
0957300 compat-wireless: exclude from world
6e7b548 lxdm: fix postinst-code
0e0c01f gateone: fix license name
8120bd1 ttf-inconsolata: fix license name
3e0ef7a xfce4-mixer: add missing dep on libunique
1281b23 xfce4-xkb-plugin: Update to latest git
148a239 qtserialport-e: Various fixes per openembedded-devel list comments.
0dc2885 qtserialport: Adds initial recipe.
ceac946 README: show github mirror URL in layer dependencies
258e8cc meta-multimedia/README: add dependency on meta-ruby
2c6ca82 toolchain-layer, meta-networking: README: add dylan to subject-prefix and update branch in depends
20a10ba README: add -M to git send-email example
c9d9301 meta-ruby: Fix subject-prefix
4a89aae meta-gnome: add README file
7e95a68 e-wm-0.17.2.1: Update checksums, tarball was repackaged upstream :/
00003b0 llvm2.9: add LLVM_EXTRA_ARCH to enable X86 unless building for x86
27b6ea6 llvm2.9: remove X86 from LLVM_TARGETS_TO_BUILD
6970589 llvm2.9: try to fix thumb build and disable it after failure
db8e72e llvm2.9: fix build with gcc-4.7
7ee1b70 llvm2.9: Import from meta-java

Eric



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

end of thread, other threads:[~2013-04-30 19:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-30 16:32 [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 01/12] llvm2.9: Import from meta-java Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 02/12] llvm2.9: fix build with gcc-4.7 Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 03/12] llvm2.9: try to fix thumb build and disable it after failure Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 04/12] llvm2.9: remove X86 from LLVM_TARGETS_TO_BUILD Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 05/12] llvm2.9: add LLVM_EXTRA_ARCH to enable X86 unless building for x86 Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 06/12] e-wm-0.17.2.1: Update checksums, tarball was repackaged upstream :/ Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 07/12] meta-gnome: add README file Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 08/12] meta-ruby: Fix subject-prefix Martin Jansa
2013-04-30 16:32 ` [meta-oe][dylan][PATCH 09/12] README: add -M to git send-email example Martin Jansa
2013-04-30 16:33 ` [meta-oe][dylan][PATCH 10/12] toolchain-layer, meta-networking: README: add dylan to subject-prefix and update branch in depends Martin Jansa
2013-04-30 16:33 ` [meta-oe][dylan][PATCH 11/12] meta-multimedia/README: add dependency on meta-ruby Martin Jansa
2013-04-30 16:33 ` [meta-oe][dylan][PATCH 12/12] README: show github mirror URL in layer dependencies Martin Jansa
2013-04-30 19:28 ` [meta-oe][dylan][PATCH 00/12] README and llvm2.9 changes for dylan Eric Bénard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox