[oe] [meta-multimedia][PATCH] libebml: don't rely on make -e, obey LDFLAGS

2016-06-17 Thread Christopher Larson
From: Christopher Larson 

We need to obey LDFLAGS to get the correct hash style for external toolchains,
and passing vars explicitly is better than relying on implicitly overriding
everything blindly from the environment.

Signed-off-by: Christopher Larson 
---
 .../recipes-mkv/libebml/libebml/ldflags.patch  | 57 ++
 .../libebml/libebml/override-uname.patch   | 42 
 .../recipes-mkv/libebml/libebml_1.3.0.bb   | 44 +++--
 3 files changed, 138 insertions(+), 5 deletions(-)
 create mode 100644 meta-multimedia/recipes-mkv/libebml/libebml/ldflags.patch
 create mode 100644 
meta-multimedia/recipes-mkv/libebml/libebml/override-uname.patch

diff --git a/meta-multimedia/recipes-mkv/libebml/libebml/ldflags.patch 
b/meta-multimedia/recipes-mkv/libebml/libebml/ldflags.patch
new file mode 100644
index 000..a01c754
--- /dev/null
+++ b/meta-multimedia/recipes-mkv/libebml/libebml/ldflags.patch
@@ -0,0 +1,57 @@
+Use LD and obey LDFLAGS
+
+Signed-off-by: Christopher Larson 
+Upstream-Status: Pending
+
+diff --git a/make/linux/Makefile b/make/linux/Makefile
+index 391b6e3..a2ac13e 100644
+--- a/make/linux/Makefile
 b/make/linux/Makefile
+@@ -64,6 +64,7 @@ objects_so:=$(patsubst %$(EXTENSION),%.lo,$(sources))
+ WARNINGFLAGS=-Wall -Wextra -Wno-unknown-pragmas -ansi -fno-gnu-keywords 
-Wshadow
+ COMPILEFLAGS=$(WARNINGFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(DEBUGFLAGS) $(INCLUDE)
+ DEPENDFLAGS  = $(CXXFLAGS) $(INCLUDE)
++LINKFLAGS=$(LDFLAGS)
+
+ ifeq (Darwin,$(shell uname -s))
+ all: staticlib
+@@ -91,7 +92,7 @@ $(LIBRARY): $(objects)
+   $(RANLIB) $@
+
+ $(LIBRARY_SO): $(objects_so)
+-  $(CXX) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) 
$(objects_so)
++  $(LD) $(LINKFLAGS) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o 
$(LIBRARY_SO_VER) $(objects_so)
+   rm -f $(LIBRARY_SO)
+   ln -s $(LIBRARY_SO_VER) $(LIBRARY_SO)
+
+diff --git a/make/mingw32/Makefile b/make/mingw32/Makefile
+index e5986ef..6ca16aa 100644
+--- a/make/mingw32/Makefile
 b/make/mingw32/Makefile
+@@ -18,6 +18,7 @@ DEBUGFLAGS=-g -DDEBUG
+ endif
+ CROSS   =
+ CXX = $(CROSS)g++
++LD  = $(CXX)
+ CC  = $(CROSS)gcc
+ WINDRES = $(CROSS)windres
+ RANLIB  = $(CROSS)ranlib
+@@ -33,6 +34,7 @@ LIBS = libebml.a
+ endif
+ INCS = -I"$(shell pwd)/../.."
+ COMPILEFLAGS = $(DEBUGFLAGS) $(INCS) $(DLLFLAGS) $(CXXFLAGS)
++LINKFLAGS = $(LDFLAGS)
+
+ .PHONY: all all-before all-after clean clean-custom
+
+@@ -54,7 +56,7 @@ libebml.a: $(OBJ)
+   $(RANLIB) $@
+
+ libebml.dll: $(OBJ)
+-  $(CXX) -shared -Wl,--export-all -Wl,--out-implib=$@.a -o $@ $(OBJ)
++  $(LD) $(LINKFLAGS) -shared -Wl,--export-all -Wl,--out-implib=$@.a -o $@ 
$(OBJ)
+
+ depend:
+   @echo Calculating dependecies:
+--
+2.8.0
diff --git a/meta-multimedia/recipes-mkv/libebml/libebml/override-uname.patch 
b/meta-multimedia/recipes-mkv/libebml/libebml/override-uname.patch
new file mode 100644
index 000..57eb345
--- /dev/null
+++ b/meta-multimedia/recipes-mkv/libebml/libebml/override-uname.patch
@@ -0,0 +1,42 @@
+Allow override of the 'uname -s' for cross-compilation
+
+Signed-off-by: Christopher Larson 
+Upstream-Status: Pending
+
+diff --git a/make/linux/Makefile b/make/linux/Makefile
+index a2ac13e..4188bee 100644
+--- a/make/linux/Makefile
 b/make/linux/Makefile
+@@ -9,9 +9,11 @@
+ # 'make DEBUG=yes'.
+ #
+
++TARGET_OS ?= $(shell uname -s)
++
+ # Paths
+ # BeOS wants the libs and headers in /boot/home/config
+-ifeq (BeOS,$(shell uname -s))
++ifeq (BeOS,$(TARGET_OS))
+ prefix=/boot/home/config
+ else
+ prefix=/usr/local
+@@ -66,7 +68,7 @@ COMPILEFLAGS=$(WARNINGFLAGS) $(CXXFLAGS) $(CPPFLAGS) 
$(DEBUGFLAGS) $(INCLUDE)
+ DEPENDFLAGS  = $(CXXFLAGS) $(INCLUDE)
+ LINKFLAGS=$(LDFLAGS)
+
+-ifeq (Darwin,$(shell uname -s))
++ifeq (Darwin,$(TARGET_OS))
+ all: staticlib
+ else
+ all: staticlib sharedlib
+@@ -116,7 +118,7 @@ depend:
+   $(CXX) $(DEPENDFLAGS) -MM -MT $$o $$i >> .depend ; \
+   done
+
+-ifeq (Darwin,$(shell uname -s))
++ifeq (Darwin,$(TARGET_OS))
+ install: install_staticlib install_headers
+ else
+ install: install_staticlib install_sharedlib install_headers
+--
+2.8.0
diff --git a/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb 
b/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
index 71e2bfc..b756a39 100644
--- a/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
+++ b/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
@@ -2,15 +2,49 @@ SUMMARY = "libebml is a C++ libary to parse EBML files"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=f14599a2f089f6ff8c97e2baa4e3d575"
 
-SRC_URI = "http://dl.matroska.org/downloads/libebml/libebml-${PV}.tar.bz2;
+SRC_URI = "\
+http://dl.matroska.org/downloads/libebml/libebml-${PV}.tar.bz2 \
+file://ldflags.patch \
+file://override-uname.patch \
+"
 SRC_URI[md5sum] = 

[oe] [meta-oe][PATCH 2/2] Remove blacklisted recipes due to poppler build failures

2016-06-17 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-efl/recipes-efl/efl/epdf_svn.bb | 2 --
 meta-gnome/recipes-gnome/evince/evince_3.18.2.bb | 2 --
 meta-gnome/recipes-support/tracker/tracker_0.14.2.bb | 2 --
 meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb | 2 --
 meta-xfce/recipes-xfce/tumbler/tumbler_0.1.31.bb | 2 --
 5 files changed, 10 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/epdf_svn.bb 
b/meta-efl/recipes-efl/efl/epdf_svn.bb
index a4c7d49..e32a5fd 100644
--- a/meta-efl/recipes-efl/efl/epdf_svn.bb
+++ b/meta-efl/recipes-efl/efl/epdf_svn.bb
@@ -25,5 +25,3 @@ EXTRA_OECONF = "\
 
 # Some upgrade path tweaking, as in evas
 AUTO_LIBNAME_PKGS = ""
-
-PNBLACKLIST[epdf] ?= "Depends on broken poppler"
diff --git a/meta-gnome/recipes-gnome/evince/evince_3.18.2.bb 
b/meta-gnome/recipes-gnome/evince/evince_3.18.2.bb
index 4fa11a5..fe63093 100644
--- a/meta-gnome/recipes-gnome/evince/evince_3.18.2.bb
+++ b/meta-gnome/recipes-gnome/evince/evince_3.18.2.bb
@@ -46,5 +46,3 @@ FILES_${PN}-staticdev += 
"${libdir}/nautilus/extensions-2.0/*.a \
   ${libdir}/evince/*/backends/*.a"
 FILES_${PN}-nautilus-extension = "${libdir}/nautilus/*/*so"
 FILES_${PN}-browser-plugin = "${libdir}/mozilla/*/*so"
-
-PNBLACKLIST[evince] ?= "Depends on broken poppler"
diff --git a/meta-gnome/recipes-support/tracker/tracker_0.14.2.bb 
b/meta-gnome/recipes-support/tracker/tracker_0.14.2.bb
index 7e6c400..ff53669 100644
--- a/meta-gnome/recipes-support/tracker/tracker_0.14.2.bb
+++ b/meta-gnome/recipes-support/tracker/tracker_0.14.2.bb
@@ -83,5 +83,3 @@ FILES_${PN}-nautilus-extension += 
"${libdir}/nautilus/extensions-2.0/*.so"
 
 SRC_URI[md5sum] = "f3a871beeebf86fd752863ebd22af9ac"
 SRC_URI[sha256sum] = 
"9b59330aa2e9e09feee587ded895e9247f71fc25f46b023d616d9969314bc7f1"
-
-PNBLACKLIST[tracker] ?= "Depends on broken poppler"
diff --git a/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb 
b/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb
index 3c134bb..29ed4d9 100644
--- a/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb
+++ b/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb
@@ -30,5 +30,3 @@ CFLAGS += "-fPIC"
 
 FILES_${PN}-dbg += "${libdir}/gimp/2.0/*/.debug"
 FILES_${PN}  += "${datadir}/appdata"
-
-PNBLACKLIST[gimp] ?= "Depends on broken poppler"
diff --git a/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.31.bb 
b/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.31.bb
index 5a0fc6d..66385a4 100644
--- a/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.31.bb
+++ b/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.31.bb
@@ -27,5 +27,3 @@ FILES_${PN}-dbg += "${libdir}/tumbler-1/.debug \
 ${libdir}/tumbler-1/plugins/.debug \
 ${libdir}/tumbler-1/plugins/cache/.debug \
 "
-
-PNBLACKLIST[tumbler] ?= "Depends on broken poppler"
-- 
1.9.1

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH 1/2] poppler: fix ambiguity on math functions related to gcc-6

2016-06-17 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../poppler/0002-fix-gcc-6-math-ambiguous-errors.patch| 11 +++
 meta-oe/recipes-support/poppler/poppler_0.43.0.bb |  4 +---
 2 files changed, 12 insertions(+), 3 deletions(-)
 create mode 100644 
meta-oe/recipes-support/poppler/poppler/0002-fix-gcc-6-math-ambiguous-errors.patch

diff --git 
a/meta-oe/recipes-support/poppler/poppler/0002-fix-gcc-6-math-ambiguous-errors.patch
 
b/meta-oe/recipes-support/poppler/poppler/0002-fix-gcc-6-math-ambiguous-errors.patch
new file mode 100644
index 000..406009f
--- /dev/null
+++ 
b/meta-oe/recipes-support/poppler/poppler/0002-fix-gcc-6-math-ambiguous-errors.patch
@@ -0,0 +1,11 @@
+--- poppler-0.45.0/poppler/CairoOutputDev.cc.orig  2016-06-17 
14:23:35.399083929 -0400
 poppler-0.45.0/poppler/CairoOutputDev.cc   2016-06-17 14:36:53.351097825 
-0400
+@@ -42,7 +42,7 @@
+ #endif
+ 
+ #include 
+-#include 
++#include 
+ #include 
+ #include 
+ 
diff --git a/meta-oe/recipes-support/poppler/poppler_0.43.0.bb 
b/meta-oe/recipes-support/poppler/poppler_0.43.0.bb
index 743e0aa..9abcd2c 100644
--- a/meta-oe/recipes-support/poppler/poppler_0.43.0.bb
+++ b/meta-oe/recipes-support/poppler/poppler_0.43.0.bb
@@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 SRC_URI = " \
 http://poppler.freedesktop.org/${BP}.tar.xz \
 file://0001-add-manadatory-options-to-find-qt4-qt5-moc.patch \
+file://0002-fix-gcc-6-math-ambiguous-errors.patch \
 "
 SRC_URI[md5sum] = "1d2b001663119855cdfbc0713dbfb9c6"
 SRC_URI[sha256sum] = 
"c720e26a26ee10b7ebc9e256d2ee7adcdb536cf85f9f1c4777a38f7f81fb2456"
@@ -53,6 +54,3 @@ FILES_libpoppler = "${libdir}/libpoppler.so.*"
 FILES_libpoppler-glib = "${libdir}/libpoppler-glib.so.*"
 
 RDEPENDS_libpoppler = "poppler-data"
-
-# http://errors.yoctoproject.org/Errors/Details/68605/
-PNBLACKLIST[poppler] ?= "BROKEN: fails to build with gcc-6"
-- 
1.9.1

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-multimedia][PATCH] faac: address gcc-6 narrowing errors via an explicit cast

2016-06-17 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../recipes-multimedia/faac/faac_1.28.bb   |  7 ++--
 .../files/address-gcc-6-narrowing-errors.patch | 47 ++
 2 files changed, 50 insertions(+), 4 deletions(-)
 create mode 100644 
meta-multimedia/recipes-multimedia/faac/files/address-gcc-6-narrowing-errors.patch

diff --git a/meta-multimedia/recipes-multimedia/faac/faac_1.28.bb 
b/meta-multimedia/recipes-multimedia/faac/faac_1.28.bb
index e87ddb1..2f048af 100644
--- a/meta-multimedia/recipes-multimedia/faac/faac_1.28.bb
+++ b/meta-multimedia/recipes-multimedia/faac/faac_1.28.bb
@@ -7,7 +7,9 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \
 inherit autotools-brokensep
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/faac/${BP}.tar.gz \
-   file://build-fix.patch"
+   file://build-fix.patch \
+   file://address-gcc-6-narrowing-errors.patch \
+"
 
 SRC_URI[md5sum] = "80763728d392c7d789cde25614c878f6"
 SRC_URI[sha256sum] = 
"c5141199f4cfb17d749c36ba8cfe4b25f838da67c22f0fec40228b6b9c3d19df"
@@ -18,6 +20,3 @@ FILES_${PN} = " ${bindir}/faac "
 FILES_lib${PN} = " ${libdir}/libfaac.so.*"
 FILES_lib${PN}-dev = "${includedir}/faac.h ${includedir}/faaccfg.h 
${libdir}/libfaac.so ${libdir}/libfaac.la"
 FILES_lib${PN}-staticdev = "${libdir}/libfaac.a"
-
-# http://errors.yoctoproject.org/Errors/Details/68660/
-PNBLACKLIST[faac] ?= "BROKEN: fails to build with gcc-6"
diff --git 
a/meta-multimedia/recipes-multimedia/faac/files/address-gcc-6-narrowing-errors.patch
 
b/meta-multimedia/recipes-multimedia/faac/files/address-gcc-6-narrowing-errors.patch
new file mode 100644
index 000..92fdd9b
--- /dev/null
+++ 
b/meta-multimedia/recipes-multimedia/faac/files/address-gcc-6-narrowing-errors.patch
@@ -0,0 +1,47 @@
+--- faac-1.28/common/mp4v2/atom_standard.cpp.orig  2016-06-16 
07:59:21.657040761 -0400
 faac-1.28/common/mp4v2/atom_standard.cpp   2016-06-16 08:01:50.613036724 
-0400
+@@ -22,15 +22,15 @@
+ #include "mp4common.h"
+ #include "atoms.h"
+ 
+-static const char name[5]={0251,'n', 'a', 'm', '\0'};
+-static const char art[5]={0251,'A', 'R', 'T', '\0'};
+-static const char wrt[5]={0251,'w', 'r', 't', '\0'};
+-static const char alb[5]={0251,'a', 'l', 'b', '\0'};
+-static const char day[5]={0251,'d', 'a', 'y', '\0'};
+-static const char too[5]={0251,'t', 'o', 'o', '\0'};
+-static const char cmt[5]={0251,'c', 'm', 't', '\0'};
+-static const char gen[5]={0251,'g', 'e', 'n', '\0'};
+-static const char grp[5]={0251,'g', 'r', 'p', '\0'};
++static const char name[5]={(char)0251,'n', 'a', 'm', '\0'};
++static const char art[5]={(char)0251,'A', 'R', 'T', '\0'};
++static const char wrt[5]={(char)0251,'w', 'r', 't', '\0'};
++static const char alb[5]={(char)0251,'a', 'l', 'b', '\0'};
++static const char day[5]={(char)0251,'d', 'a', 'y', '\0'};
++static const char too[5]={(char)0251,'t', 'o', 'o', '\0'};
++static const char cmt[5]={(char)0251,'c', 'm', 't', '\0'};
++static const char gen[5]={(char)0251,'g', 'e', 'n', '\0'};
++static const char grp[5]={(char)0251,'g', 'r', 'p', '\0'};
+ 
+ MP4StandardAtom::MP4StandardAtom (const char *type) : MP4Atom(type)
+ {
+--- faac-1.28/common/mp4v2/mp4atom.cpp.orig2016-06-16 08:03:07.777034633 
-0400
 faac-1.28/common/mp4v2/mp4atom.cpp 2016-06-16 08:03:54.629033363 -0400
+@@ -264,11 +264,11 @@
+   }
+   break;
+ case 0251:
+-  static const char name[5]={0251,'n', 'a', 'm', '\0'};
+-  static const char cmt[5]={0251,'c', 'm', 't', '\0'};
+-  static const char cpy[5]={0251,'c', 'p', 'y', '\0'};
+-  static const char des[5]={0251,'d', 'e', 's','\0'};
+-  static const char prd[5]={0251, 'p', 'r', 'd', '\0'};
++  static const char name[5]={(char)0251,'n', 'a', 'm', '\0'};
++  static const char cmt[5]={(char)0251,'c', 'm', 't', '\0'};
++  static const char cpy[5]={(char)0251,'c', 'p', 'y', '\0'};
++  static const char des[5]={(char)0251,'d', 'e', 's','\0'};
++  static const char prd[5]={(char)0251, 'p', 'r', 'd', '\0'};
+   if (ATOMID(type) == ATOMID(name) ||
+ ATOMID(type) == ATOMID(cmt) ||
+ ATOMID(type) == ATOMID(cpy) ||
+
-- 
1.9.1

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] libqmi: update to version 1.14.2

2016-06-17 Thread Derek Straka
 * Addresses build issues with gcc-6

Signed-off-by: Derek Straka 
---
 .../libqmi/{libqmi_1.12.6.bb => libqmi_1.14.2.bb}| 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)
 rename meta-oe/recipes-connectivity/libqmi/{libqmi_1.12.6.bb => 
libqmi_1.14.2.bb} (65%)

diff --git a/meta-oe/recipes-connectivity/libqmi/libqmi_1.12.6.bb 
b/meta-oe/recipes-connectivity/libqmi/libqmi_1.14.2.bb
similarity index 65%
rename from meta-oe/recipes-connectivity/libqmi/libqmi_1.12.6.bb
rename to meta-oe/recipes-connectivity/libqmi/libqmi_1.14.2.bb
index 937fafc..84936e7 100644
--- a/meta-oe/recipes-connectivity/libqmi/libqmi_1.12.6.bb
+++ b/meta-oe/recipes-connectivity/libqmi/libqmi_1.14.2.bb
@@ -9,11 +9,8 @@ LIC_FILES_CHKSUM = " \
 
 DEPENDS = "glib-2.0"
 
-inherit autotools pkgconfig
+inherit autotools pkgconfig bash-completion
 
 SRC_URI = "http://www.freedesktop.org/software/${BPN}/${BPN}-${PV}.tar.xz;
-SRC_URI[md5sum] = "24c9eb300662ba6cff0152de89bd9ec0"
-SRC_URI[sha256sum] = 
"0857bffece4e8ddfa7f721dd9ca63b4c78de345ac9ae2faebf04062cacba3780"
-
-# http://errors.yoctoproject.org/Errors/Details/68616/
-PNBLACKLIST[libqmi] ?= "BROKEN: fails to build with gcc-6"
+SRC_URI[md5sum] = "6ec55d1a1941bb18802ab8498baca7e0"
+SRC_URI[sha256sum] = 
"6283b80aea1b2721523e5229087764b4d6a1c9f53488690fa16a11adff4a0040"
-- 
1.9.1

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-browser] Browser blacklists

2016-06-17 Thread Davis, Michael
Add the following to your distro's conf or local.conf 

#Stop the blacklist due to broken gcc6
PNBLACKLIST[chromium] = ""

On Friday, June 17, 2016 09:56:45 AM Ian Coolidge wrote:
> >
> > I ran into this as well and had to spend some time figuring out how to get
> > around it.
> 
> 
> How'd you get around it?
> 
> On Thu, Jun 16, 2016 at 6:32 AM, Davis, Michael 
> wrote:
> 
> > I ran into this as well and had to spend some time figuring out how to get
> > around it.
> > Some sort of note in the readme or even commit message about how to get
> > around it would have been nice.
> >
> > On a related side note it would be nice to get krogoth branch/tag before
> > this blacklist.
> > I saw there isn't one currently and it would give people a working tag
> > that isn't as old as jethro.
> >
> >
> > On Thursday, June 16, 2016 11:08:33 AM Martin Jansa wrote:
> > > On Thu, Jun 16, 2016 at 09:08:49AM +0200, Gary Thomas wrote:
> > > > I notice that both firefox and chromium are currently blacklisted
> > > > as "fails to build with gcc-6".  What about those of us that aren't
> > > > using gcc-6?  This seems an overly broad blacklisting :-(
> > >
> > > You can easily unblacklist them in your configuration where you also
> > > change the gcc version, but they are broken in default configuration, so
> > > they are blacklisted.
> > >
> > >
> > --
> > ___
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> 
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] crash: update to version 7.1.5

2016-06-17 Thread Derek Straka
  * Resolves issues with gcc-6 on ARM

Signed-off-by: Derek Straka 
---
 .../crash/crash/0001-cross_add_configure_option.patch  | 4 ++--
 .../crash/crash/gdb_build_jobs_and_not_write_crash_target.patch| 2 +-
 .../crash/crash/remove-unrecognized-gcc-option-m32-for-mips.patch  | 6 +++---
 meta-oe/recipes-kernel/crash/{crash_7.1.3.bb => crash_7.1.5.bb}| 7 ++-
 4 files changed, 8 insertions(+), 11 deletions(-)
 rename meta-oe/recipes-kernel/crash/{crash_7.1.3.bb => crash_7.1.5.bb} (94%)

diff --git 
a/meta-oe/recipes-kernel/crash/crash/0001-cross_add_configure_option.patch 
b/meta-oe/recipes-kernel/crash/crash/0001-cross_add_configure_option.patch
index 229647f..39732a9 100644
--- a/meta-oe/recipes-kernel/crash/crash/0001-cross_add_configure_option.patch
+++ b/meta-oe/recipes-kernel/crash/crash/0001-cross_add_configure_option.patch
@@ -11,13 +11,13 @@ diff --git a/Makefile b/Makefile
 index 9c44633..39bebd0 100644
 --- a/Makefile
 +++ b/Makefile
-@@ -229,7 +229,7 @@ gdb_merge: force
+@@ -232,7 +232,7 @@ gdb_merge: force
@echo "../../${PROGRAM} ../../${PROGRAM}lib.a" > ${GDB}/gdb/mergeobj
@rm -f ${PROGRAM}
@if [ ! -f ${GDB}/config.status ]; then \
 -(cd ${GDB}; ./configure ${GDB_CONF_FLAGS} 
--with-separate-debug-dir=/usr/lib/debug \
 +(cd ${GDB}; ./configure --host=${GDB_TARGET} --build=${GDB_HOST} 
--with-separate-debug-dir=/usr/lib/debug \
-   --with-bugurl="" --with-expat=no --with-python=no; \
+   --with-bugurl="" --with-expat=no --with-python=no --disable-sim; \
  make --no-print-directory CRASH_TARGET=${TARGET}; echo ${TARGET} > 
crash.target) \
else make --no-print-directory rebuild; fi
 @@ -277,7 +277,7 @@ force:
diff --git 
a/meta-oe/recipes-kernel/crash/crash/gdb_build_jobs_and_not_write_crash_target.patch
 
b/meta-oe/recipes-kernel/crash/crash/gdb_build_jobs_and_not_write_crash_target.patch
index 3f4d1bc..aa5f44d 100644
--- 
a/meta-oe/recipes-kernel/crash/crash/gdb_build_jobs_and_not_write_crash_target.patch
+++ 
b/meta-oe/recipes-kernel/crash/crash/gdb_build_jobs_and_not_write_crash_target.patch
@@ -16,7 +16,7 @@ index 27a1d47..bcf2d2f 100644
 @@ -232,8 +232,8 @@ gdb_merge: force
@if [ ! -f ${GDB}/config.status ]; then \
  (cd ${GDB}; ./configure --host=${GDB_TARGET} --build=${GDB_HOST} 
--with-separate-debug-dir=/usr/lib/debug \
-   --with-bugurl="" --with-expat=no --with-python=no; \
+   --with-bugurl="" --with-expat=no --with-python=no --disable-sim; \
 -make --no-print-directory CRASH_TARGET=${TARGET}; echo ${TARGET} > 
crash.target) \
 -  else make --no-print-directory rebuild; fi
 +make --no-print-directory CRASH_TARGET=${TARGET} ${GDB_MAKE_JOBS}; ) \
diff --git 
a/meta-oe/recipes-kernel/crash/crash/remove-unrecognized-gcc-option-m32-for-mips.patch
 
b/meta-oe/recipes-kernel/crash/crash/remove-unrecognized-gcc-option-m32-for-mips.patch
index c24db10..905b4c2 100644
--- 
a/meta-oe/recipes-kernel/crash/crash/remove-unrecognized-gcc-option-m32-for-mips.patch
+++ 
b/meta-oe/recipes-kernel/crash/crash/remove-unrecognized-gcc-option-m32-for-mips.patch
@@ -13,16 +13,16 @@ diff --git a/configure.c b/configure.c
 index cf1973b..71e97b3 100644
 --- a/configure.c
 +++ b/configure.c
-@@ -148,7 +148,7 @@ void add_extra_lib(char *);
+@@ -151,7 +151,7 @@ void add_extra_lib(char *);
  #define TARGET_CFLAGS_PPC64_ON_X86_64  "TARGET_CFLAGS="
  #define TARGET_CFLAGS_MIPS"TARGET_CFLAGS=-D_FILE_OFFSET_BITS=64"
  #define TARGET_CFLAGS_MIPS_ON_X86 "TARGET_CFLAGS=-D_FILE_OFFSET_BITS=64"
 -#define TARGET_CFLAGS_MIPS_ON_X86_64  "TARGET_CFLAGS=-m32 
-D_FILE_OFFSET_BITS=64"
 +#define TARGET_CFLAGS_MIPS_ON_X86_64  "TARGET_CFLAGS=-D_FILE_OFFSET_BITS=64"
+ #define TARGET_CFLAGS_SPARC64 "TARGET_CFLAGS="
  
  #define GDB_TARGET_DEFAULT"GDB_CONF_FLAGS="
- #define GDB_TARGET_ARM_ON_X86 "GDB_CONF_FLAGS=--target=arm-elf-linux"
-@@ -158,7 +158,7 @@ void add_extra_lib(char *);
+@@ -162,7 +162,7 @@ void add_extra_lib(char *);
  #define GDB_TARGET_ARM64_ON_X86_64  
"GDB_CONF_FLAGS=--target=aarch64-elf-linux"   /* TBD */
  #define GDB_TARGET_PPC64_ON_X86_64  
"GDB_CONF_FLAGS=--target=powerpc64le-unknown-linux-gnu"
  #define GDB_TARGET_MIPS_ON_X86 "GDB_CONF_FLAGS=--target=mipsel-elf-linux"
diff --git a/meta-oe/recipes-kernel/crash/crash_7.1.3.bb 
b/meta-oe/recipes-kernel/crash/crash_7.1.5.bb
similarity index 94%
rename from meta-oe/recipes-kernel/crash/crash_7.1.3.bb
rename to meta-oe/recipes-kernel/crash/crash_7.1.5.bb
index 49b187d..ce13b71 100644
--- a/meta-oe/recipes-kernel/crash/crash_7.1.3.bb
+++ b/meta-oe/recipes-kernel/crash/crash_7.1.5.bb
@@ -24,8 +24,8 @@ SRC_URI = 
"https://github.com/crash-utility/${BPN}/archive/${PV}.tar.gz;download
file://remove-unrecognized-gcc-option-m32-for-mips.patch \
"
 
-SRC_URI[md5sum] = "155889a233c5230ef1d387858091d294"
-SRC_URI[sha256sum] = 

Re: [oe] [meta-browser] Browser blacklists

2016-06-17 Thread Ian Coolidge
>
> I ran into this as well and had to spend some time figuring out how to get
> around it.


How'd you get around it?

On Thu, Jun 16, 2016 at 6:32 AM, Davis, Michael 
wrote:

> I ran into this as well and had to spend some time figuring out how to get
> around it.
> Some sort of note in the readme or even commit message about how to get
> around it would have been nice.
>
> On a related side note it would be nice to get krogoth branch/tag before
> this blacklist.
> I saw there isn't one currently and it would give people a working tag
> that isn't as old as jethro.
>
>
> On Thursday, June 16, 2016 11:08:33 AM Martin Jansa wrote:
> > On Thu, Jun 16, 2016 at 09:08:49AM +0200, Gary Thomas wrote:
> > > I notice that both firefox and chromium are currently blacklisted
> > > as "fails to build with gcc-6".  What about those of us that aren't
> > > using gcc-6?  This seems an overly broad blacklisting :-(
> >
> > You can easily unblacklist them in your configuration where you also
> > change the gcc version, but they are broken in default configuration, so
> > they are blacklisted.
> >
> >
> --
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] geis: add a patch to fix incorrect indentation issues and remove -Wno-error=misleading-indentation

2016-06-17 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../geis/fix-indentation-for-gcc6.patch| 14 ++
 .../recipes-support/canonical-multitouch/geis_2.2.17.bb|  6 +++---
 2 files changed, 17 insertions(+), 3 deletions(-)
 create mode 100644 
meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch

diff --git 
a/meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch
 
b/meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch
new file mode 100644
index 000..389e1b3
--- /dev/null
+++ 
b/meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch
@@ -0,0 +1,14 @@
+--- geis-2.2.17/libgeis/geis_subscription.c.orig   2016-06-17 
12:04:21.062938443 -0400
 geis-2.2.17/libgeis/geis_subscription.c2016-06-17 12:05:02.934939172 
-0400
+@@ -237,9 +237,10 @@
+   GeisSize i;
+   for (i = 0; i < bag->sub_store_size; ++i)
+   {
+-if (bag->sub_store[i])
++if (bag->sub_store[i]) {
+   _subscription_unref(bag->sub_store[i]);
+   bag->sub_store[i] = NULL;
++}
+   }
+ }
+ 
diff --git a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb 
b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
index 9b087a8..f71d324 100644
--- a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
+++ b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
@@ -19,13 +19,13 @@ REQUIRED_DISTRO_FEATURES = "x11"
 
 DEPENDS += "grail dbus-glib python3 virtual/libx11 libxext libxi libxcb dbus 
frame"
 
-SRC_URI = 
"https://launchpad.net/${BPN}/trunk/${PV}/+download/${BPN}-${PV}.tar.xz;
+SRC_URI = 
"https://launchpad.net/${BPN}/trunk/${PV}/+download/${BPN}-${PV}.tar.xz\
+   file://fix-indentation-for-gcc6.patch \
+"
 SRC_URI[md5sum] = "2ff9d76a3ea5794516bb02c9d1924faf"
 SRC_URI[sha256sum] = 
"8a60f5683852094038904e690d23cc5a90a980fc52da67f0f28890baa25c70eb"
 
 EXTRA_OECONF = "--disable-integration-tests"
-TARGET_CFLAGS += "-Wno-error=misleading-indentation"
-
 
 FILES_${PN}-bin = "${bindir}"
 RDEPENDS_${PN}-bin = " \
-- 
1.9.1

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-multimedia][PATCH] tvheadend: add a patch to fix issues with gcc 6 and drop the -Wno-error=misleading-indentation

2016-06-17 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../tvheadend/0002-fix-issues-with-gcc6.patch  | 46 ++
 .../recipes-dvb/tvheadend/tvheadend_git.bb |  3 +-
 2 files changed, 47 insertions(+), 2 deletions(-)
 create mode 100644 
meta-multimedia/recipes-dvb/tvheadend/tvheadend/0002-fix-issues-with-gcc6.patch

diff --git 
a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0002-fix-issues-with-gcc6.patch
 
b/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0002-fix-issues-with-gcc6.patch
new file mode 100644
index 000..55b9249
--- /dev/null
+++ 
b/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0002-fix-issues-with-gcc6.patch
@@ -0,0 +1,46 @@
+--- git/src/htsmsg.c.orig  2016-06-17 11:47:53.026921237 -0400
 git/src/htsmsg.c   2016-06-17 11:49:03.086922457 -0400
+@@ -574,13 +574,13 @@
+ case HMF_MAP:
+   printf("MAP) = {\n");
+   htsmsg_print0(>hmf_msg, indent + 1);
+-  for(i = 0; i < indent; i++) printf("\t"); printf("}\n");
++  for(i = 0; i < indent; i++) {printf("\t");} printf("}\n");
+   break;
+ 
+ case HMF_LIST:
+   printf("LIST) = {\n");
+   htsmsg_print0(>hmf_msg, indent + 1);
+-  for(i = 0; i < indent; i++) printf("\t"); printf("}\n");
++  for(i = 0; i < indent; i++) {printf("\t");} printf("}\n");
+   break;
+   
+ case HMF_STR:
+--- git/src/dvb/dvb_tables.c.orig  2016-06-17 11:51:09.142924652 -0400
 git/src/dvb/dvb_tables.c   2016-06-17 11:54:33.962928219 -0400
+@@ -935,10 +935,10 @@
+ onid = (ptr[24] << 8) | ptr[25];
+ 
+ /* Search all muxes on adapter */
+-LIST_FOREACH(tdmi, >tda_muxes, tdmi_adapter_link)
+-  if(tdmi->tdmi_transport_stream_id == tsid && tdmi->tdmi_network_id == 
onid);
+-  break;
+-
++LIST_FOREACH(tdmi, >tda_muxes, tdmi_adapter_link) {
++  if(tdmi->tdmi_transport_stream_id == tsid && tdmi->tdmi_network_id == 
onid)
++  break;
++}
+ if(tdmi == NULL)
+   continue;
+ 
+--- git/src/epggrab/module/eit.c.orig  2016-06-17 11:49:57.726923409 -0400
 git/src/epggrab/module/eit.c   2016-06-17 11:50:14.526923701 -0400
+@@ -214,7 +214,7 @@
+   if (m && m->enabled) cptr = _eit_freesat_conv;
+   else
+ m = epggrab_module_find_by_id("uk_freeview");
+-if (m && m->enabled) cptr = _eit_freesat_conv;
++  if (m && m->enabled) cptr = _eit_freesat_conv;
+ 
+   /* Convert */
+   return dvb_get_string_with_len(dst, dstlen, src, srclen, charset, cptr);
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb 
b/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb
index 9fed042..bd5062c 100644
--- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb
+++ b/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb
@@ -8,14 +8,13 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=9eef91148a9b14ec7f9df333daebc746"
 
 SRC_URI = "git://github.com/tvheadend/tvheadend.git \

file://0001-Move-tvheadend-specific-LD-CFLAGS-into-a-helper-vari.patch \
+   file://0002-fix-issues-with-gcc6.patch \
 "
 SRCREV = "a420c83a0e0d2c31c2c15d0fec6fedc3f5a36dfe"
 PV = "3.3"
 
 S = "${WORKDIR}/git"
 
-TARGET_CFLAGS += "-Wno-error=misleading-indentation"
-
 do_configure() {
 ./configure --prefix=${prefix} \
 --libdir=${libdir} \
-- 
1.9.1

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] geis: add CFLAG to ignore misleading indentations

2016-06-17 Thread Khem Raj

> On Jun 17, 2016, at 6:38 AM, Derek Straka  wrote:
> 
> It didn't seem worthwhile to create a patchset to fix whitespace issues.  I 
> can create the patches if people prefer that to suppressing the error.

Usually yes for OE it doesn't matter, however upstream of these components will 
prefer it, and would be good fix once for all and submit it to upstream
directly

> 
> -Derek
> 
> On Fri, Jun 17, 2016 at 12:17 AM, Khem Raj  > wrote:
> 
> > On Jun 8, 2016, at 6:28 PM, Derek Straka  > > wrote:
> >
> > Signed-off-by: Derek Straka >
> > ---
> > meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb 
> >  | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb 
> >  
> > b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb 
> > 
> > index bc88143..9b087a8 100644
> > --- a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb 
> > 
> > +++ b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb 
> > 
> > @@ -24,6 +24,8 @@ SRC_URI[md5sum] = "2ff9d76a3ea5794516bb02c9d1924faf"
> > SRC_URI[sha256sum] = 
> > "8a60f5683852094038904e690d23cc5a90a980fc52da67f0f28890baa25c70eb"
> >
> > EXTRA_OECONF = "--disable-integration-tests"
> > +TARGET_CFLAGS += "-Wno-error=misleading-indentation”
> 
> why not fix the code
> 
> > +
> 
> >
> > FILES_${PN}-bin = "${bindir}"
> > RDEPENDS_${PN}-bin = " \
> > --
> > 1.9.1
> >
> > --
> > ___
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org 
> > 
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel 
> > 
> 
> 



signature.asc
Description: Message signed with OpenPGP using GPGMail
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCHv2] p7zip: update to version 15.14.1

2016-06-17 Thread Pascal Bach
The copying.txt file contains white space changes and the address of the
Free Software Foundation mentioned in the LGPLv3.1 changed from:
51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
to:
59 Temple Place, Suite 330, Boston, MA  02111-1307
otherwise the license text remains unchanged.

An additional License.txt containing top level license information is now
also covered by LIC_FILES_CHKSUM

Signed-off-by: Pascal Bach 
---
 ...do_not_override_compiler_and_do_not_strip.patch | 25 +++---
 .../p7zip/{p7zip_9.20.1.bb => p7zip_15.14.1.bb}|  9 
 2 files changed, 17 insertions(+), 17 deletions(-)
 rename meta-oe/recipes-extended/p7zip/{p7zip_9.20.1.bb => p7zip_15.14.1.bb} 
(71%)

diff --git 
a/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
 
b/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
index a3b02c5..b0a560f 100644
--- 
a/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
+++ 
b/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
@@ -7,25 +7,24 @@ Upstream-Status: Pending
 Signed-off-by: Raphael Freudiger 
 Reviewed-By: Pascal Bach 
 
-Index: p7zip_9.20.1/makefile.machine
-=
 p7zip_9.20.1/makefile.machine  2011-03-13 12:54:57.0 +0100
-+++ p7zip_9.20.1/makefile.machine  2015-02-03 08:39:44.427696944 +0100
-@@ -4,14 +4,14 @@
+diff -Nurp p7zip_15.14.1_orig/makefile.machine p7zip_15.14.1/makefile.machine
+--- p7zip_15.14.1_orig/makefile.machine2016-03-23 20:37:47.0 
+0100
 p7zip_15.14.1/makefile.machine 2016-06-17 15:33:39.720454477 +0200
+@@ -2,7 +2,7 @@
+ # makefile for Linux (x86, PPC, alpha ...)
+ #
  
- OPTFLAGS=-O
+-OPTFLAGS=-O -s
++OPTFLAGS=-O
  
--ALLFLAGS=${OPTFLAGS} -pipe -s \
-+ALLFLAGS=${OPTFLAGS} -pipe \
+ ALLFLAGS=${OPTFLAGS} -pipe \
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
-   -DNDEBUG -D_REENTRANT -DENV_UNIX \
+@@ -10,8 +10,6 @@ ALLFLAGS=${OPTFLAGS} -pipe \
-D_7ZIP_LARGE_PAGES \
$(LOCAL_FLAGS)
  
--CXX=g++ $(ALLFLAGS)
--CC=gcc $(ALLFLAGS)
-+CXX+=$(ALLFLAGS)
-+CC+=$(ALLFLAGS)
+-CXX=g++
+-CC=gcc
  CC_SHARED=-fPIC
  LINK_SHARED=-fPIC -shared
  
diff --git a/meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb 
b/meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
similarity index 71%
rename from meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb
rename to meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
index b89fc42..8e2e241 100644
--- a/meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb
+++ b/meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
@@ -1,13 +1,14 @@
 SUMMARY = "7-zip is a commandline utility handling 7z archives."
 HOMEPAGE = "http://www.7-zip.org/;
 LICENSE = "LGPL-2.1+ & unRAR"
-LIC_FILES_CHKSUM = 
"file://DOCS/copying.txt;md5=ecfc54c9e37b63ac58900061ce2eab5a \
-
file://DOCS/unRarLicense.txt;md5=9c87ddde469ef94aed153b0951d088de"
+LIC_FILES_CHKSUM = 
"file://DOC/copying.txt;md5=4fbd65380cdd255951079008b364516c \
+
file://DOC/unRarLicense.txt;md5=9c87ddde469ef94aed153b0951d088de \
+
file://DOC/License.txt;md5=8346bfd0a2fa0987e7a3a512adf84ab9"
 
 SRC_URI = 
"http://downloads.sourceforge.net/p7zip/p7zip/${PV}/p7zip_${PV}_src_all.tar.bz2 
\
   file://do_not_override_compiler_and_do_not_strip.patch"
-SRC_URI[md5sum] = "bd6caaea567dc0d995c990c5cc883c89"
-SRC_URI[sha256sum] = 
"49557e7ffca08100f9fc687f4dfc5aea703ca207640c76d9dee7b66f03cb4782"
+SRC_URI[md5sum] = "92cca093312b5a71a7be7dc7d1d32509"
+SRC_URI[sha256sum] = 
"699db4da3621904113e040703220abb1148dfef477b55305e2f14a4f1f8f25d4"
 
 S = "${WORKDIR}/${BPN}_${PV}"
 
-- 
2.1.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] geis: add CFLAG to ignore misleading indentations

2016-06-17 Thread Martin Jansa
On Fri, Jun 17, 2016 at 09:38:51AM -0400, Derek Straka wrote:
> It didn't seem worthwhile to create a patchset to fix whitespace issues.  I
> can create the patches if people prefer that to suppressing the error.

I would prefer fixing the issue, but I'm very grateful for your changes
fixing the build failures (in any way), there are only very few people actually
sending any fixes. And simple work around is still better than even
more PNBLACKLISTs.

Thanks!

> -Derek
> 
> On Fri, Jun 17, 2016 at 12:17 AM, Khem Raj  wrote:
> 
> >
> > > On Jun 8, 2016, at 6:28 PM, Derek Straka  wrote:
> > >
> > > Signed-off-by: Derek Straka 
> > > ---
> > > meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb | 2 ++
> > > 1 file changed, 2 insertions(+)
> > >
> > > diff --git a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> > b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> > > index bc88143..9b087a8 100644
> > > --- a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> > > +++ b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> > > @@ -24,6 +24,8 @@ SRC_URI[md5sum] = "2ff9d76a3ea5794516bb02c9d1924faf"
> > > SRC_URI[sha256sum] =
> > "8a60f5683852094038904e690d23cc5a90a980fc52da67f0f28890baa25c70eb"
> > >
> > > EXTRA_OECONF = "--disable-integration-tests"
> > > +TARGET_CFLAGS += "-Wno-error=misleading-indentation”
> >
> > why not fix the code
> >
> > > +
> >
> > >
> > > FILES_${PN}-bin = "${bindir}"
> > > RDEPENDS_${PN}-bin = " \
> > > --
> > > 1.9.1
> > >
> > > --
> > > ___
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> >
> -- 
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com


signature.asc
Description: Digital signature
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] p7zip: update to version 15.14.1

2016-06-17 Thread Martin Jansa
On Fri, Jun 17, 2016 at 03:53:31PM +0200, Pascal Bach wrote:
> Signed-off-by: Pascal Bach 

What changed in LIC_FILES_CHKSUM files? Describe it in commit message.

> ---
>  ...do_not_override_compiler_and_do_not_strip.patch | 25 
> +++---
>  .../p7zip/{p7zip_9.20.1.bb => p7zip_15.14.1.bb}|  9 
>  2 files changed, 17 insertions(+), 17 deletions(-)
>  rename meta-oe/recipes-extended/p7zip/{p7zip_9.20.1.bb => p7zip_15.14.1.bb} 
> (71%)
> 
> diff --git 
> a/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
>  
> b/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
> index a3b02c5..b0a560f 100644
> --- 
> a/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
> +++ 
> b/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
> @@ -7,25 +7,24 @@ Upstream-Status: Pending
>  Signed-off-by: Raphael Freudiger 
>  Reviewed-By: Pascal Bach 
>  
> -Index: p7zip_9.20.1/makefile.machine
> -=
>  p7zip_9.20.1/makefile.machine2011-03-13 12:54:57.0 +0100
> -+++ p7zip_9.20.1/makefile.machine2015-02-03 08:39:44.427696944 +0100
> -@@ -4,14 +4,14 @@
> +diff -Nurp p7zip_15.14.1_orig/makefile.machine p7zip_15.14.1/makefile.machine
> +--- p7zip_15.14.1_orig/makefile.machine  2016-03-23 20:37:47.0 
> +0100
>  p7zip_15.14.1/makefile.machine   2016-06-17 15:33:39.720454477 +0200
> +@@ -2,7 +2,7 @@
> + # makefile for Linux (x86, PPC, alpha ...)
> + #
>   
> - OPTFLAGS=-O
> +-OPTFLAGS=-O -s
> ++OPTFLAGS=-O
>   
> --ALLFLAGS=${OPTFLAGS} -pipe -s \
> -+ALLFLAGS=${OPTFLAGS} -pipe \
> + ALLFLAGS=${OPTFLAGS} -pipe \
>   -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
> - -DNDEBUG -D_REENTRANT -DENV_UNIX \
> +@@ -10,8 +10,6 @@ ALLFLAGS=${OPTFLAGS} -pipe \
>   -D_7ZIP_LARGE_PAGES \
>   $(LOCAL_FLAGS)
>   
> --CXX=g++ $(ALLFLAGS)
> --CC=gcc $(ALLFLAGS)
> -+CXX+=$(ALLFLAGS)
> -+CC+=$(ALLFLAGS)
> +-CXX=g++
> +-CC=gcc
>   CC_SHARED=-fPIC
>   LINK_SHARED=-fPIC -shared
>   
> diff --git a/meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb 
> b/meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
> similarity index 71%
> rename from meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb
> rename to meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
> index b89fc42..8e2e241 100644
> --- a/meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb
> +++ b/meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
> @@ -1,13 +1,14 @@
>  SUMMARY = "7-zip is a commandline utility handling 7z archives."
>  HOMEPAGE = "http://www.7-zip.org/;
>  LICENSE = "LGPL-2.1+ & unRAR"
> -LIC_FILES_CHKSUM = 
> "file://DOCS/copying.txt;md5=ecfc54c9e37b63ac58900061ce2eab5a \
> -
> file://DOCS/unRarLicense.txt;md5=9c87ddde469ef94aed153b0951d088de"
> +LIC_FILES_CHKSUM = 
> "file://DOC/copying.txt;md5=4fbd65380cdd255951079008b364516c \
> +
> file://DOC/unRarLicense.txt;md5=9c87ddde469ef94aed153b0951d088de \
> +
> file://DOC/License.txt;md5=8346bfd0a2fa0987e7a3a512adf84ab9"
>  
>  SRC_URI = 
> "http://downloads.sourceforge.net/p7zip/p7zip/${PV}/p7zip_${PV}_src_all.tar.bz2
>  \
>file://do_not_override_compiler_and_do_not_strip.patch"
> -SRC_URI[md5sum] = "bd6caaea567dc0d995c990c5cc883c89"
> -SRC_URI[sha256sum] = 
> "49557e7ffca08100f9fc687f4dfc5aea703ca207640c76d9dee7b66f03cb4782"
> +SRC_URI[md5sum] = "92cca093312b5a71a7be7dc7d1d32509"
> +SRC_URI[sha256sum] = 
> "699db4da3621904113e040703220abb1148dfef477b55305e2f14a4f1f8f25d4"
>  
>  S = "${WORKDIR}/${BPN}_${PV}"
>  
> -- 
> 2.1.4
> 
> -- 
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com


signature.asc
Description: Digital signature
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] p7zip: update to version 15.14.1

2016-06-17 Thread Pascal Bach
Signed-off-by: Pascal Bach 
---
 ...do_not_override_compiler_and_do_not_strip.patch | 25 +++---
 .../p7zip/{p7zip_9.20.1.bb => p7zip_15.14.1.bb}|  9 
 2 files changed, 17 insertions(+), 17 deletions(-)
 rename meta-oe/recipes-extended/p7zip/{p7zip_9.20.1.bb => p7zip_15.14.1.bb} 
(71%)

diff --git 
a/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
 
b/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
index a3b02c5..b0a560f 100644
--- 
a/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
+++ 
b/meta-oe/recipes-extended/p7zip/files/do_not_override_compiler_and_do_not_strip.patch
@@ -7,25 +7,24 @@ Upstream-Status: Pending
 Signed-off-by: Raphael Freudiger 
 Reviewed-By: Pascal Bach 
 
-Index: p7zip_9.20.1/makefile.machine
-=
 p7zip_9.20.1/makefile.machine  2011-03-13 12:54:57.0 +0100
-+++ p7zip_9.20.1/makefile.machine  2015-02-03 08:39:44.427696944 +0100
-@@ -4,14 +4,14 @@
+diff -Nurp p7zip_15.14.1_orig/makefile.machine p7zip_15.14.1/makefile.machine
+--- p7zip_15.14.1_orig/makefile.machine2016-03-23 20:37:47.0 
+0100
 p7zip_15.14.1/makefile.machine 2016-06-17 15:33:39.720454477 +0200
+@@ -2,7 +2,7 @@
+ # makefile for Linux (x86, PPC, alpha ...)
+ #
  
- OPTFLAGS=-O
+-OPTFLAGS=-O -s
++OPTFLAGS=-O
  
--ALLFLAGS=${OPTFLAGS} -pipe -s \
-+ALLFLAGS=${OPTFLAGS} -pipe \
+ ALLFLAGS=${OPTFLAGS} -pipe \
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
-   -DNDEBUG -D_REENTRANT -DENV_UNIX \
+@@ -10,8 +10,6 @@ ALLFLAGS=${OPTFLAGS} -pipe \
-D_7ZIP_LARGE_PAGES \
$(LOCAL_FLAGS)
  
--CXX=g++ $(ALLFLAGS)
--CC=gcc $(ALLFLAGS)
-+CXX+=$(ALLFLAGS)
-+CC+=$(ALLFLAGS)
+-CXX=g++
+-CC=gcc
  CC_SHARED=-fPIC
  LINK_SHARED=-fPIC -shared
  
diff --git a/meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb 
b/meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
similarity index 71%
rename from meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb
rename to meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
index b89fc42..8e2e241 100644
--- a/meta-oe/recipes-extended/p7zip/p7zip_9.20.1.bb
+++ b/meta-oe/recipes-extended/p7zip/p7zip_15.14.1.bb
@@ -1,13 +1,14 @@
 SUMMARY = "7-zip is a commandline utility handling 7z archives."
 HOMEPAGE = "http://www.7-zip.org/;
 LICENSE = "LGPL-2.1+ & unRAR"
-LIC_FILES_CHKSUM = 
"file://DOCS/copying.txt;md5=ecfc54c9e37b63ac58900061ce2eab5a \
-
file://DOCS/unRarLicense.txt;md5=9c87ddde469ef94aed153b0951d088de"
+LIC_FILES_CHKSUM = 
"file://DOC/copying.txt;md5=4fbd65380cdd255951079008b364516c \
+
file://DOC/unRarLicense.txt;md5=9c87ddde469ef94aed153b0951d088de \
+
file://DOC/License.txt;md5=8346bfd0a2fa0987e7a3a512adf84ab9"
 
 SRC_URI = 
"http://downloads.sourceforge.net/p7zip/p7zip/${PV}/p7zip_${PV}_src_all.tar.bz2 
\
   file://do_not_override_compiler_and_do_not_strip.patch"
-SRC_URI[md5sum] = "bd6caaea567dc0d995c990c5cc883c89"
-SRC_URI[sha256sum] = 
"49557e7ffca08100f9fc687f4dfc5aea703ca207640c76d9dee7b66f03cb4782"
+SRC_URI[md5sum] = "92cca093312b5a71a7be7dc7d1d32509"
+SRC_URI[sha256sum] = 
"699db4da3621904113e040703220abb1148dfef477b55305e2f14a4f1f8f25d4"
 
 S = "${WORKDIR}/${BPN}_${PV}"
 
-- 
2.1.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] geis: add CFLAG to ignore misleading indentations

2016-06-17 Thread Derek Straka
It didn't seem worthwhile to create a patchset to fix whitespace issues.  I
can create the patches if people prefer that to suppressing the error.

-Derek

On Fri, Jun 17, 2016 at 12:17 AM, Khem Raj  wrote:

>
> > On Jun 8, 2016, at 6:28 PM, Derek Straka  wrote:
> >
> > Signed-off-by: Derek Straka 
> > ---
> > meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> > index bc88143..9b087a8 100644
> > --- a/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> > +++ b/meta-oe/recipes-support/canonical-multitouch/geis_2.2.17.bb
> > @@ -24,6 +24,8 @@ SRC_URI[md5sum] = "2ff9d76a3ea5794516bb02c9d1924faf"
> > SRC_URI[sha256sum] =
> "8a60f5683852094038904e690d23cc5a90a980fc52da67f0f28890baa25c70eb"
> >
> > EXTRA_OECONF = "--disable-integration-tests"
> > +TARGET_CFLAGS += "-Wno-error=misleading-indentation”
>
> why not fix the code
>
> > +
>
> >
> > FILES_${PN}-bin = "${bindir}"
> > RDEPENDS_${PN}-bin = " \
> > --
> > 1.9.1
> >
> > --
> > ___
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel