[oe] [meta-oe][PATCH] ttf-roboto: add recipe

2019-10-18 Thread Diego Rondini
Roboto is an Apache licensed sans-serif typeface family developed by Google as
the system font for its mobile operating system Android, and released in 2011
for Android 4.0 "Ice Cream Sandwich".

Signed-off-by: Diego Rondini 
---
 .../recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb | 14 ++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb

diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb 
b/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb
new file mode 100644
index 0..521caff74
--- /dev/null
+++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb
@@ -0,0 +1,14 @@
+require ttf.inc
+
+SUMMARY = "Roboto fonts"
+HOMEPAGE = "https://fonts.google.com/specimen/Roboto;
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
+
+SRC_URI = 
"https://github.com/google/roboto/releases/download/v${PV}/roboto-android.zip;
+SRC_URI[md5sum] = "3b43a5cb33196ec25e44d5fcb40219e1"
+SRC_URI[sha256sum] = 
"c825453253f590cfe62557733e7173f9a421fff103b00f57d33c4ad28ae53baf"
+
+S = "${WORKDIR}"
+
+FILES_${PN} = "${datadir}/fonts/truetype/*.ttf"
-- 
2.21.0

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


[oe] [meta-oe][rocko][sumo][PATCH] tbb: check the version of the cross gcc instead of host gcc

2018-08-30 Thread Diego Rondini
From: Gregory Vimont 

When cross compiling on linux with gcc, the host gcc was used instead of
the cross gcc to set compilation flags according to gcc version.

Signed-off-by: Gregory Vimont 
Signed-off-by: Khem Raj 
---
The reason of the backport is to fix a crash, details here:
http://lists.openembedded.org/pipermail/openembedded-devel/2018-August/120116.html
---
 meta-oe/recipes-support/tbb/tbb.bb |  1 +
 .../tbb/tbb/0002-linux-Fix-gcc-version-check.patch | 57 ++
 2 files changed, 58 insertions(+)
 create mode 100644 
meta-oe/recipes-support/tbb/tbb/0002-linux-Fix-gcc-version-check.patch

diff --git a/meta-oe/recipes-support/tbb/tbb.bb 
b/meta-oe/recipes-support/tbb/tbb.bb
index bad9481..f870104 100644
--- a/meta-oe/recipes-support/tbb/tbb.bb
+++ b/meta-oe/recipes-support/tbb/tbb.bb
@@ -13,6 +13,7 @@ PV = "${PRDATE}+${SRCPV}"
 SRC_URI = "git://github.com/01org/tbb;branch=${BRANCH} \
file://cross-compile.patch \
file://0001-mallinfo-is-glibc-specific-API-mark-it-so.patch \
+   file://0002-linux-Fix-gcc-version-check.patch \
file://tbb.pc \
 "
 
diff --git 
a/meta-oe/recipes-support/tbb/tbb/0002-linux-Fix-gcc-version-check.patch 
b/meta-oe/recipes-support/tbb/tbb/0002-linux-Fix-gcc-version-check.patch
new file mode 100644
index 000..9824b61
--- /dev/null
+++ b/meta-oe/recipes-support/tbb/tbb/0002-linux-Fix-gcc-version-check.patch
@@ -0,0 +1,57 @@
+From aee098f1bf0511c6b5544de3170a9e8b51673b60 Mon Sep 17 00:00:00 2001
+From: Pierre Le Magourou 
+Date: Tue, 23 Jan 2018 15:25:50 +0100
+Subject: [PATCH] linux.gcc: Fix cross compilation error.
+
+When cross compiling on linux with gcc, the host gcc was used instead of
+the cross gcc to set compilation flags according to gcc version.
+
+When the cross gcc was in version 5.X and the host gcc in version 7.X,
+tbb was compiled with the -flifetime-dse=1 flag that does not exist on
+gcc 5.X.
+---
+ build/linux.gcc.inc | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/build/linux.gcc.inc b/build/linux.gcc.inc
+index 5c1889c..a4d6698 100644
+--- a/build/linux.gcc.inc
 b/build/linux.gcc.inc
+@@ -41,29 +41,29 @@ LINK_FLAGS = -Wl,-rpath-link=. -rdynamic
+ C_FLAGS = $(CPLUS_FLAGS)
+ 
+ # gcc 4.2 and higher support OpenMP
+-ifneq (,$(shell gcc -dumpversion | egrep  "^(4\.[2-9]|[5-9])"))
++ifneq (,$(shell $(CC) -dumpversion | egrep  "^(4\.[2-9]|[5-9])"))
+ OPENMP_FLAG = -fopenmp
+ endif
+ 
+ # gcc 4.8 and later support RTM intrinsics, but require command line switch 
to enable them
+-ifneq (,$(shell gcc -dumpversion | egrep  "^(4\.[8-9]|[5-9])"))
++ifneq (,$(shell $(CC) -dumpversion | egrep  "^(4\.[8-9]|[5-9])"))
+ RTM_KEY = -mrtm
+ endif
+ 
+ # gcc 4.0 and later have -Wextra that is used by some our customers.
+-ifneq (,$(shell gcc -dumpversion | egrep  "^([4-9])"))
++ifneq (,$(shell $(CC) -dumpversion | egrep  "^([4-9])"))
+ TEST_WARNING_KEY += -Wextra
+ endif
+ 
+ # gcc 5.0 and later have -Wsuggest-override option
+ # enable it via a pre-included header in order to limit to C++11 and above
+-ifneq (,$(shell gcc -dumpversion | egrep  "^([5-9])"))
++ifneq (,$(shell $(CC) -dumpversion | egrep  "^([5-9])"))
+ INCLUDE_TEST_HEADERS = -include $(tbb_root)/src/test/harness_preload.h
+ endif
+ 
+ # gcc 6.0 and later have -flifetime-dse option that controls
+ # elimination of stores done outside the object lifetime
+-ifneq (,$(shell gcc -dumpversion | egrep  "^([6-9])"))
++ifneq (,$(shell $(CC) -dumpversion | egrep  "^([6-9])"))
+ # keep pre-contruction stores for zero initialization
+ DSE_KEY = -flifetime-dse=1
+ endif
+-- 
+2.15.1
+
-- 
2.7.4

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


Re: [oe] [meta-oe][PATCH] tbb: check the version of the cross gcc instead of host gcc

2018-08-21 Thread Diego Rondini
Hi all,

I'm hitting an OpenCV crash that is caused by libtbb.
The problem is described here:
https://software.intel.com/en-us/forums/intel-threading-building-blocks/topic/636519
https://software.intel.com/en-us/forums/intel-threading-building-blocks/topic/641654

GCC versions >= 6.x default optimizations are too aggressive for TBB.
TBB disabled those optimizations in release 2017.0:
https://github.com/01org/tbb/blob/615bb971db8784ab6c005a856e8ed3e8cea61d9b/CHANGES#L377
but if the host gcc version is detected, instead of the cross gcc, the
optimization is not disabled, thus uncovering the crash.

My suggestion is to backport this commit:
http://cgit.openembedded.org/meta-openembedded/log/meta-oe/recipes-support/tbb?h=master
in pyro, rocko and sumo.
The commit will allow to properly detect cross gcc version (which is
>= 6.x in all the above releases), and thus deactivate the compiler
optimization causing the crash.

I've tested on rocko, and the backported patch fixes the crash I'm experiencing.

Best regards,
Diego Rondini
Sr. Embedded Engineer

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


[oe] [meta-qt5][PATCH] python-pyqt5: update recipe to 5.10.1

2018-05-10 Thread Diego Rondini
Update recipe to version 5.10.1, removing upstreamed patches in the process.

Signed-off-by: Diego Rondini <diego.rond...@kynetics.com>
---
 ...sip-fix-build-with-accessibility-disabled.patch | 35 --
 recipes-python/pyqt5/files/fix-sm.patch| 17 ---
 ...ython-pyqt5_5.8.2.bb => python-pyqt5_5.10.1.bb} |  8 ++---
 3 files changed, 3 insertions(+), 57 deletions(-)
 delete mode 100644 
recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch
 delete mode 100644 recipes-python/pyqt5/files/fix-sm.patch
 rename recipes-python/pyqt5/{python-pyqt5_5.8.2.bb => python-pyqt5_5.10.1.bb} 
(88%)

diff --git 
a/recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch
 
b/recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch
deleted file mode 100644
index 7e1c7bf..000
--- 
a/recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 8a2f852417414e19d060da66cd7c5cba76e43c7d Mon Sep 17 00:00:00 2001
-From: Diego Rondini <diego.rond...@kynetics.com>
-Date: Wed, 19 Jul 2017 14:17:51 +0200
-Subject: [PATCH] qtabbar.sip: fix build with accessibility disabled
-
-Upstream-Status: Submitted
-
-Signed-off-by: Diego Rondini <diego.rond...@kynetics.com>

- sip/QtWidgets/qtabbar.sip | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/sip/QtWidgets/qtabbar.sip b/sip/QtWidgets/qtabbar.sip
-index ffe2d3b..80ad816 100644
 a/sip/QtWidgets/qtabbar.sip
-+++ b/sip/QtWidgets/qtabbar.sip
-@@ -166,11 +166,15 @@ protected:
- 
- public:
- %If (Qt_5_8_0 -)
-+%If (PyQt_Accessibility)
- QString accessibleTabName(int index) const;
- %End
-+%End
- %If (Qt_5_8_0 -)
-+%If (PyQt_Accessibility)
- void setAccessibleTabName(int index, const QString );
- %End
-+%End
- 
- private:
- QTabBar(const QTabBar &);
--- 
-2.7.4
-
diff --git a/recipes-python/pyqt5/files/fix-sm.patch 
b/recipes-python/pyqt5/files/fix-sm.patch
deleted file mode 100644
index f2936a2..000
--- a/recipes-python/pyqt5/files/fix-sm.patch
+++ /dev/null
@@ -1,17 +0,0 @@
 PyQt5_gpl-5.8.2/sip/QtGui/qguiapplication.sip.orig 2017-05-13 
13:28:42.523392315 -0400
-+++ PyQt5_gpl-5.8.2/sip/QtGui/qguiapplication.sip  2017-05-13 
13:30:08.081207211 -0400
-@@ -270,12 +270,14 @@
- %End
- 
- public:
-+%If (PyQt_SessionManager)
- %If (Qt_5_6_0 -)
- static bool isFallbackSessionManagementEnabled();
- %End
- %If (Qt_5_6_0 -)
- static void setFallbackSessionManagementEnabled(bool);
- %End
-+%End
- 
- signals:
- %If (Qt_5_6_0 -)
diff --git a/recipes-python/pyqt5/python-pyqt5_5.8.2.bb 
b/recipes-python/pyqt5/python-pyqt5_5.10.1.bb
similarity index 88%
rename from recipes-python/pyqt5/python-pyqt5_5.8.2.bb
rename to recipes-python/pyqt5/python-pyqt5_5.10.1.bb
index fdfa120..9a0f849 100644
--- a/recipes-python/pyqt5/python-pyqt5_5.8.2.bb
+++ b/recipes-python/pyqt5/python-pyqt5_5.10.1.bb
@@ -10,11 +10,9 @@ DEPENDS = "sip sip-native qtbase python"
 
 SRC_URI = "\
 ${SOURCEFORGE_MIRROR}/pyqt/PyQt5_gpl-${PV}.tar.gz \
-file://fix-sm.patch \
-file://0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch \
 "
-SRC_URI[md5sum] = "c3048e9d242f3e72fd393630da1d971a"
-SRC_URI[sha256sum] = 
"ebd70515b30bbd6098fee29e6271a6696b1183c5530ee30e6ba9aaab195536e8"
+SRC_URI[md5sum] = "be36c2abaffc9daa8b993f1ca982968f"
+SRC_URI[sha256sum] = 
"9932e971e825ece4ea08f84ad95017837fa8f3f29c6b0496985fa1093661e9ef"
 
 S = "${WORKDIR}/PyQt5_gpl-${PV}"
 
@@ -63,7 +61,7 @@ do_install() {
 oe_runmake install
 }
 
-RDEPENDS_${PN} = "python-core python-sip"
+RDEPENDS_${PN} = "python-core python-sip qtbase"
 
 FILES_${PN} += "${libdir}/${PYTHON_DIR}/site-packages ${datadir}/sip/PyQt5/"
 FILES_${PN}-dbg += "${libdir}/${PYTHON_DIR}/site-packages/*/.debug/"
-- 
2.7.4

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


[oe] [meta-oe][PATCH] sip: update recipe to 4.19.8

2018-04-11 Thread Diego Rondini
Update sip to latest version to allow update of PyQt.

Signed-off-by: Diego Rondini <diego.rond...@kynetics.com>
---
 meta-oe/recipes-devtools/sip/{sip_4.19.2.bb => sip_4.19.8.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/sip/{sip_4.19.2.bb => sip_4.19.8.bb} (92%)

diff --git a/meta-oe/recipes-devtools/sip/sip_4.19.2.bb 
b/meta-oe/recipes-devtools/sip/sip_4.19.8.bb
similarity index 92%
rename from meta-oe/recipes-devtools/sip/sip_4.19.2.bb
rename to meta-oe/recipes-devtools/sip/sip_4.19.8.bb
index 1d837c5..ea944b3 100644
--- a/meta-oe/recipes-devtools/sip/sip_4.19.2.bb
+++ b/meta-oe/recipes-devtools/sip/sip_4.19.8.bb
@@ -9,8 +9,8 @@ inherit python-dir
 DEPENDS = "python"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/project/pyqt/sip/sip-${PV}/sip-${PV}.tar.gz"
-SRC_URI[md5sum] = "4f48e212890ebe584e8d804cfbcfc61e"
-SRC_URI[sha256sum] = 
"432b4aad25254e6997913e33b1ca3cf5fd21d5729a50a3ce2edccbea82c80533"
+SRC_URI[md5sum] = "0625fb20347d4ff1b5da551539be0727"
+SRC_URI[sha256sum] = 
"7eaf7a2ea7d4d38a56dd6d2506574464bddf7cf284c960801679942377c297bc"
 
 BBCLASSEXTEND = "native"
 
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-twisted: remove empty lore subpackage

2017-10-06 Thread Diego Rondini
Currently installing python-twisted fails because it cannot find a
python-twisted-lore package. lore package isn't created because as of twisted
15.3.x lore has been removed, thus no file belongs to it.
Removal reference:
"twisted.lore has now been removed, in preference to Sphinx. (#7892)"
https://github.com/twisted/twisted/blob/trunk/NEWS.rst#twisted-core-1530-2015-08-04

Signed-off-by: Diego Rondini <diego.rond...@kynetics.com>
---
 meta-python/recipes-devtools/python/python-twisted.inc | 10 --
 1 file changed, 10 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python-twisted.inc 
b/meta-python/recipes-devtools/python/python-twisted.inc
index fed629c..4bd4788 100644
--- a/meta-python/recipes-devtools/python/python-twisted.inc
+++ b/meta-python/recipes-devtools/python/python-twisted.inc
@@ -23,7 +23,6 @@ PACKAGES += "\
 ${PN}-test \
 ${PN}-protocols \
 ${PN}-conch \
-${PN}-lore \
 ${PN}-mail \
 ${PN}-names \
 ${PN}-news \
@@ -43,7 +42,6 @@ PACKAGES =+ "\
 RDEPENDS_${PN} = "\
 ${PN}-bin \
 ${PN}-conch \
-${PN}-lore \
 ${PN}-mail \
 ${PN}-names \
 ${PN}-news \
@@ -55,7 +53,6 @@ RDEPENDS_${PN} = "\
 RDEPENDS_${PN}-core = "python-core python-zopeinterface python-contextlib"
 RDEPENDS_${PN}-test = "${PN}"
 RDEPENDS_${PN}-conch = "${PN}-core ${PN}-protocols"
-RDEPENDS_${PN}-lore = "${PN}-core"
 RDEPENDS_${PN}-mail = "${PN}-core ${PN}-protocols"
 RDEPENDS_${PN}-names = "${PN}-core"
 RDEPENDS_${PN}-news = "${PN}-core ${PN}-protocols"
@@ -187,13 +184,6 @@ ${libdir}/${PYTHON_DIR}/site-packages/twisted/_threads/ \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/positioning/ \
 "
 
-FILES_${PN}-lore = " \
-${bindir}/bookify \
-${bindir}/lore \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_lore.py* \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/lore \
-"
-
 FILES_${PN}-mail = " \
 ${bindir}/mailmail \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_mail.py* \
-- 
1.9.1

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


Re: [oe] [meta-oe][Pyro]Update Sip to 4.19.2 from 4.19

2017-09-19 Thread Diego Rondini
Hi Armin,

On Mon, Sep 18, 2017 at 11:14 PM, akuster808 <akuster...@gmail.com> wrote:
>
>
> On 09/11/2017 11:16 AM, Philip Balister wrote:
>> Armin, can you pull commit 229f824568406df354bc857b31989ad778bb that
>> upgrade sip from 4.19 to 4.19.2 into meta-oe/pyro?
> sorry for the late responce.
>
> 4.19.1 added three new abi's or functions
> 4.19.2 was bug fix only.
>
> I suspect 4.19.1 is what fixed QT5 issue and should have been updated
> when QT5 was.
>
> I am still thinking about it.
>

I think that the only current user of sip is python-pyqt5, so my guess
is that upgrading it has no counter-indication, as the only current
known user of sip is broken anyhow.

Bests,
Diego Rondini
Sr. Embedded Engineer

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


[oe] [meta-qt5][PATCH] python-pyqt5: include QtWidgets module

2017-07-20 Thread Diego Rondini
Signed-off-by: Diego Rondini <diego.rond...@kynetics.com>
---
 ...sip-fix-build-with-accessibility-disabled.patch | 35 ++
 recipes-python/pyqt5/python-pyqt5_5.8.2.bb |  5 ++--
 2 files changed, 38 insertions(+), 2 deletions(-)
 create mode 100644 
recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch

diff --git 
a/recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch
 
b/recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch
new file mode 100644
index 000..7e1c7bf
--- /dev/null
+++ 
b/recipes-python/pyqt5/files/0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch
@@ -0,0 +1,35 @@
+From 8a2f852417414e19d060da66cd7c5cba76e43c7d Mon Sep 17 00:00:00 2001
+From: Diego Rondini <diego.rond...@kynetics.com>
+Date: Wed, 19 Jul 2017 14:17:51 +0200
+Subject: [PATCH] qtabbar.sip: fix build with accessibility disabled
+
+Upstream-Status: Submitted
+
+Signed-off-by: Diego Rondini <diego.rond...@kynetics.com>
+---
+ sip/QtWidgets/qtabbar.sip | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/sip/QtWidgets/qtabbar.sip b/sip/QtWidgets/qtabbar.sip
+index ffe2d3b..80ad816 100644
+--- a/sip/QtWidgets/qtabbar.sip
 b/sip/QtWidgets/qtabbar.sip
+@@ -166,11 +166,15 @@ protected:
+ 
+ public:
+ %If (Qt_5_8_0 -)
++%If (PyQt_Accessibility)
+ QString accessibleTabName(int index) const;
+ %End
++%End
+ %If (Qt_5_8_0 -)
++%If (PyQt_Accessibility)
+ void setAccessibleTabName(int index, const QString );
+ %End
++%End
+ 
+ private:
+ QTabBar(const QTabBar &);
+-- 
+2.7.4
+
diff --git a/recipes-python/pyqt5/python-pyqt5_5.8.2.bb 
b/recipes-python/pyqt5/python-pyqt5_5.8.2.bb
index 3fa3d64..fdfa120 100644
--- a/recipes-python/pyqt5/python-pyqt5_5.8.2.bb
+++ b/recipes-python/pyqt5/python-pyqt5_5.8.2.bb
@@ -11,6 +11,7 @@ DEPENDS = "sip sip-native qtbase python"
 SRC_URI = "\
 ${SOURCEFORGE_MIRROR}/pyqt/PyQt5_gpl-${PV}.tar.gz \
 file://fix-sm.patch \
+file://0001-qtabbar.sip-fix-build-with-accessibility-disabled.patch \
 "
 SRC_URI[md5sum] = "c3048e9d242f3e72fd393630da1d971a"
 SRC_URI[sha256sum] = 
"ebd70515b30bbd6098fee29e6271a6696b1183c5530ee30e6ba9aaab195536e8"
@@ -31,8 +32,8 @@ DISABLED_FEATURES = "PyQt_Desktop_OpenGL PyQt_Accessibility 
PyQt_SessionManager"
 
 DISABLED_FEATURES_append_arm = " PyQt_qreal_double"
 
-PYQT_MODULES = "QtCore QtGui QtNetwork"
-PYQT_MODULES_aarch64 = "QtCore QtGui QtNetwork"
+PYQT_MODULES = "QtCore QtGui QtNetwork QtWidgets"
+PYQT_MODULES_aarch64 = "QtCore QtGui QtNetwork QtWidgets"
 
 do_configure_prepend() {
 cd ${S}
-- 
2.7.4

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


[oe] [meta-webserver][PATCH v2] webmin: adjust mysql module default config

2016-02-19 Thread Diego Rondini
Default config of the mysql Webmin module uses paths of a manually installed
MySQL. This commit adjusts paths to the ones used by MariaDB in OE.

Signed-off-by: Diego Rondini <diego...@zoho.com>
---
 .../webmin/files/mysql-config-fix.patch| 50 ++
 .../recipes-webadmin/webmin/webmin_1.750.bb|  1 +
 2 files changed, 51 insertions(+)
 create mode 100644 
meta-webserver/recipes-webadmin/webmin/files/mysql-config-fix.patch

diff --git 
a/meta-webserver/recipes-webadmin/webmin/files/mysql-config-fix.patch 
b/meta-webserver/recipes-webadmin/webmin/files/mysql-config-fix.patch
new file mode 100644
index 000..2cbc627
--- /dev/null
+++ b/meta-webserver/recipes-webadmin/webmin/files/mysql-config-fix.patch
@@ -0,0 +1,50 @@
+From 719206df606acd7a623e8d75da293c25489b7884 Mon Sep 17 00:00:00 2001
+From: Diego Rondini <diego...@zoho.com>
+Date: Thu, 18 Feb 2016 15:44:06 +0100
+Subject: [PATCH] Adjust Mysql config defaults
+
+Upstream-status: Inappropriate [configuration]
+
+Signed-off-by: Diego Rondini <diego...@zoho.com>
+---
+ mysql/config | 18 +-
+ 1 file changed, 9 insertions(+), 9 deletions(-)
+
+diff --git a/mysql/config b/mysql/config
+index e5b6fb3..77bfe69 100644
+--- a/mysql/config
 b/mysql/config
+@@ -1,13 +1,13 @@
+-start_cmd=cd /usr/local/mysql ; (./bin/safe_mysqld || ./bin/mysqld_safe) &
++start_cmd=/usr/bin/mysqld_safe
+ perpage=25
+-mysql=/usr/local/mysql/bin/mysql
+-mysqldump=/usr/local/mysql/bin/mysqldump
+-mysqlimport=/usr/local/mysql/bin/mysqlimport
+-pass=foo
+-mysqlshow=/usr/local/mysql/bin/mysqlshow
++mysql=/usr/bin/mysql
++mysqldump=/usr/bin/mysqldump
++mysqlimport=/usr/bin/mysqlimport
++pass=
++mysqlshow=/usr/bin/mysqlshow
+ login=root
+-mysql_libs=/usr/local/mysql/lib
+-mysqladmin=/usr/local/mysql/bin/mysqladmin
++mysql_libs=/usr/lib
++mysqladmin=/usr/bin/mysqladmin
+ style=0
+ add_mode=1
+ nodbi=0
+@@ -15,7 +15,7 @@ access=*: *
+ blob_mode=0
+ date_subs=0
+ passwd_mode=0
+-mysql_data=/usr/local/mysql/var
++mysql_data=/var/lib/mysql
+ max_dbs=50
+ my_cnf=/etc/my.cnf
+ max_text=1000
+-- 
+2.5.0
+
diff --git a/meta-webserver/recipes-webadmin/webmin/webmin_1.750.bb 
b/meta-webserver/recipes-webadmin/webmin/webmin_1.750.bb
index 46478f0..34052a1 100644
--- a/meta-webserver/recipes-webadmin/webmin/webmin_1.750.bb
+++ b/meta-webserver/recipes-webadmin/webmin/webmin_1.750.bb
@@ -17,6 +17,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/webadmin/webmin-${PV}.tar.gz 
\
file://net-lib.pl.patch \
file://media-tomb.patch \
file://remove-python2.3.patch \
+   file://mysql-config-fix.patch \
 "
 
 SRC_URI[md5sum] = "4007c390323d840f26c2e0f43c5c81a3"
-- 
1.9.1


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


[oe] [meta-oe][PATCH] glmark2: update to version 2014.03

2014-05-08 Thread Diego Rondini
Update glmark2 receipe to upstream version 2014.03.

The configure step has changed and instead of using --enable-stuff syntax, 
now the syntax is --with-flavors=flavor1,flavor2.
Thanks to Paul Eggleton for the help on how to deal with that:
https://lists.yoctoproject.org/pipermail/yocto/2014-April/019328.html

Signed-off-by: Diego Rondini diego...@zoho.com
---
 .../{glmark2_2012.12.bb = glmark2_2014.03.bb} |   19 +++
 1 file changed, 15 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-benchmark/glmark2/{glmark2_2012.12.bb = 
glmark2_2014.03.bb} (52%)

diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb 
b/meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb
similarity index 52%
rename from meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
rename to meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb
index 031e3b3..3ff0449 100644
--- a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
+++ b/meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb
@@ -12,12 +12,23 @@ DEPENDS = libpng12 jpeg
 
 SRC_URI = https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz;
 
-SRC_URI[md5sum] = 4f306664aa3886fa0cf93853603603f8
-SRC_URI[sha256sum] = 
bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47
+SRC_URI[md5sum] = 739859cf57d4c8a23452c43e84f66e56
+SRC_URI[sha256sum] = 
bded41aaf918ce062d9b81e42cc5be943e6a80bc4ff9d046983b96102c3df6b5
 
 inherit waf pkgconfig
 
 PACKAGECONFIG ?= gl gles2
 
-PACKAGECONFIG[gl] = --enable-gl,,virtual/libgl
-PACKAGECONFIG[gles2] = --enable-glesv2,,virtual/libgles2
+PACKAGECONFIG[gl] = ,,virtual/libgl
+PACKAGECONFIG[gles2] = ,,virtual/libgles2
+
+python __anonymous() {
+packageconfig = (d.getVar(PACKAGECONFIG, True) or ).split()
+flavors = []
+if gles2 in packageconfig:
+flavors.append(x11-glesv2)
+if gl in packageconfig:
+flavors.append(x11-gl)
+if flavors:
+d.appendVar(EXTRA_OECONF,  --with-flavors=%s % ,.join(flavors))
+}
-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv3 0/3] Update some python modules to latest upstream versions

2014-03-27 Thread Diego Rondini
This patch-set updates python-zopeinterface, python-twisted and python-autobahn 
to their latest upstream versions.

Changes in v3:
  - detailed commit messages
  - dropped PR where present because of PV increase

Changes in v2:
  - fixed missing Signed off-by

The following changes since commit 7dfa6be8c5d9b093ae79c403c685c6b8ed6216dd:

  recipes-graphics/lxdm: autotools and config updates (2014-03-23 21:53:58 
+0100)

are available in the git repository at:

  git://github.com/diegorondini/meta-oe master
  https://github.com/diegorondini/meta-oe/tree/master

Diego Rondini (3):
  python-zopeinterface: upgrade to version 4.1.1
  python-twisted: upgrade to version 13.2.0
  python-autobahn: upgrade to version 0.8.6

 ...autobahn_0.5.14.bb = python-autobahn_0.8.6.bb} |4 ++--
 ...-twisted_10.2.0.bb = python-twisted_13.2.0.bb} |   17 +
 ...face_3.5.1.bb = python-zopeinterface_4.1.1.bb} |5 ++---
 3 files changed, 9 insertions(+), 17 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-autobahn_0.5.14.bb = 
python-autobahn_0.8.6.bb} (87%)
 rename meta-oe/recipes-devtools/python/{python-twisted_10.2.0.bb = 
python-twisted_13.2.0.bb} (94%)
 rename meta-oe/recipes-devtools/python/{python-zopeinterface_3.5.1.bb = 
python-zopeinterface_4.1.1.bb} (83%)

-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv3 3/3] python-autobahn: upgrade to version 0.8.6

2014-03-27 Thread Diego Rondini
Changes:
* upgraded python-autobahn to latest upstream
* updated license checksum because upstream increased copyright year from 2013 
to 2014

Signed-off-by: Diego Rondini diego...@zoho.com
---
 ...autobahn_0.5.14.bb = python-autobahn_0.8.6.bb} |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-autobahn_0.5.14.bb = 
python-autobahn_0.8.6.bb} (87%)

diff --git a/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb 
b/meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
similarity index 87%
rename from meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb
rename to meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
index 0208c8b..a1e8c5f 100644
--- a/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb
+++ b/meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
@@ -5,10 +5,10 @@ HOMEPAGE = http://autobahn.ws/python;
 SECTION = console/network
 
 LICENSE = Apache-2.0
-LIC_FILES_CHKSUM =  
file://autobahn/__init__.py;beginline=1;endline=17;md5=81964ceb3ab93bfb5e8cfbcd26f3af9c
+LIC_FILES_CHKSUM =  
file://autobahn/__init__.py;beginline=1;endline=17;md5=1fdeccf6e5b70cda64cc1345597c18e3
 
 SRC_URI = 
https://pypi.python.org/packages/source/a/autobahn/autobahn-${PV}.zip;
-SRC_URI[md5sum] = e2c80ba3e46428b32837537609d4d582
+SRC_URI[md5sum] = 160429e7fb043940e79aa7f4ebbab57a
 
 S = ${WORKDIR}/autobahn-${PV}
 
-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv3 1/3] python-zopeinterface: upgrade to version 4.1.1

2014-03-27 Thread Diego Rondini
Changes:
* upgraded python-zopeinterface to latest upstream
* dropped PR because of PV increase

Signed-off-by: Diego Rondini diego...@zoho.com
---
 ...face_3.5.1.bb = python-zopeinterface_4.1.1.bb} |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-zopeinterface_3.5.1.bb = 
python-zopeinterface_4.1.1.bb} (83%)

diff --git a/meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb 
b/meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
similarity index 83%
rename from meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb
rename to meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
index d73a5be..4151f58 100644
--- a/meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb
+++ b/meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
@@ -3,11 +3,10 @@ SECTION = console/network
 
 LICENSE = ZPL-2.1
 LIC_FILES_CHKSUM = 
file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423ec128974bd9d46
-PR = r1
 
 SRC_URI = 
http://pypi.python.org/packages/source/z/zope.interface/zope.interface-${PV}.tar.gz;
-SRC_URI[md5sum] = 685fc532550abb07cca6190c9cd2b901
-SRC_URI[sha256sum] = 
b81d898532c47f73475c2d0c23580e289eed25923d007eca8e62750c0998bba0
+SRC_URI[md5sum] = edcd5f719c5eb2e18894c4d06e29b6c6
+SRC_URI[sha256sum] = 
91cba7b7cd7cb82f6f4e023fe77f94dc3df4ae5287fd55def2148dc232d0c7da
 
 S = ${WORKDIR}/zope.interface-${PV}
 
-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv3 2/3] python-twisted: upgrade to version 13.2.0

2014-03-27 Thread Diego Rondini
Changes:
* upgraded python-twisted to latest upstream
* dropped PR because of PV increase
* updated LICENSE checksum because new contributors have been added to the file
* dropped bin package because resulting package was empty:
  - file _c_urlarg has been removed with this commit:
https://twistedmatrix.com/trac/changeset/31167/trunk/twisted/protocols
  - file cBanana was not packaged even in previous version, upstream removed it 
ages ago.
https://twistedmatrix.com/trac/changeset/19014/trunk/twisted/spread
* the newly introduced zsh completion file has been added to the zsh package

Signed-off-by: Diego Rondini diego...@zoho.com
---
 ...-twisted_10.2.0.bb = python-twisted_13.2.0.bb} |   17 +
 1 file changed, 5 insertions(+), 12 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-twisted_10.2.0.bb = 
python-twisted_13.2.0.bb} (94%)

diff --git a/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb 
b/meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
similarity index 94%
rename from meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb
rename to meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
index d585bfa..80d64a0 100644
--- a/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb
+++ b/meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
@@ -6,12 +6,11 @@ SECTION = console/network
 
 #twisted/topfiles/NEWS:655: - Relicensed: Now under the MIT license, rather 
than LGPL.
 LICENSE = MIT
-LIC_FILES_CHKSUM = file://LICENSE;md5=c3159ad36d96a939fcd8f2c2c9b9d08a
-PR = r3
+LIC_FILES_CHKSUM = file://LICENSE;md5=5602d7228daf59a16f0f1b2640c46bca
 
-SRC_URI = 
http://tmrc.mit.edu/mirror/twisted/Twisted/10.2/Twisted-${PV}.tar.bz2 
-SRC_URI[md5sum] = 73da62c793269eade8121da336b01ba5
-SRC_URI[sha256sum] = 
562ed61c18aa72da99c23fb19c2c101d178995eb3a78ab3c09560a613e180c84
+SRC_URI = 
https://pypi.python.org/packages/source/T/Twisted/Twisted-${PV}.tar.bz2;
+SRC_URI[md5sum] = 83fe6c0c911cc1602dbffb036be0ba79
+SRC_URI[sha256sum] = 
095175638c019ac7c0604f4c291724a16ff1acd062e181b01293bf4dcbc62cf3
 
 S = ${WORKDIR}/Twisted-${PV}
 
@@ -26,7 +25,6 @@ PACKAGES += \
 ${PN}-zsh \
 ${PN}-test \
 ${PN}-protocols \
-${PN}-bin \
 ${PN}-conch \
 ${PN}-lore \
 ${PN}-mail \
@@ -42,7 +40,6 @@ PACKAGES += \
 
 RDEPENDS_${PN} = python-core python-zopeinterface
 RDEPENDS_${PN} += \
-${PN}-bin \
 ${PN}-conch \
 ${PN}-lore \
 ${PN}-mail \
@@ -70,11 +67,7 @@ FILES_${PN}-protocols =  \
 FILES_${PN}-zsh =  \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zsh \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.* \
-
-
-FILES_${PN}-bin =  \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/_c_urlarg.so \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/cBanana.so \
+
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/twisted-completion.zsh \
 
 
 FILES_${PN}-conch =  \
-- 
1.7.9.5


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


[oe] [meta-oe][PATCH 0/3] Update some python modules to latest upstream versions

2014-03-26 Thread Diego Rondini
This patch-set updates python-zopeinterface, python-twisted and python-autobahn 
to their latest upstream versions.

The following changes since commit 7dfa6be8c5d9b093ae79c403c685c6b8ed6216dd:

  recipes-graphics/lxdm: autotools and config updates (2014-03-23 21:53:58 
+0100)

are available in the git repository at:

  git://github.com/diegorondini/meta-oe master
  https://github.com/diegorondini/meta-oe/tree/master

Diego Rondini (3):
  python-zopeinterface: upgrade to version 4.1.1
  python-twisted: upgrade to version 13.2.0
  python-autobahn: upgrade to version 0.8.6

 ...autobahn_0.5.14.bb = python-autobahn_0.8.6.bb} |4 ++--
 ...-twisted_10.2.0.bb = python-twisted_13.2.0.bb} |   16 +---
 ...face_3.5.1.bb = python-zopeinterface_4.1.1.bb} |4 ++--
 3 files changed, 9 insertions(+), 15 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-autobahn_0.5.14.bb = 
python-autobahn_0.8.6.bb} (87%)
 rename meta-oe/recipes-devtools/python/{python-twisted_10.2.0.bb = 
python-twisted_13.2.0.bb} (94%)
 rename meta-oe/recipes-devtools/python/{python-zopeinterface_3.5.1.bb = 
python-zopeinterface_4.1.1.bb} (84%)

-- 
1.7.9.5


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


[oe] [meta-oe][PATCH 2/3] python-twisted: upgrade to version 13.2.0

2014-03-26 Thread Diego Rondini
---
 ...-twisted_10.2.0.bb = python-twisted_13.2.0.bb} |   16 +---
 1 file changed, 5 insertions(+), 11 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-twisted_10.2.0.bb = 
python-twisted_13.2.0.bb} (94%)

diff --git a/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb 
b/meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
similarity index 94%
rename from meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb
rename to meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
index d585bfa..00be867 100644
--- a/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb
+++ b/meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
@@ -6,12 +6,12 @@ SECTION = console/network
 
 #twisted/topfiles/NEWS:655: - Relicensed: Now under the MIT license, rather 
than LGPL.
 LICENSE = MIT
-LIC_FILES_CHKSUM = file://LICENSE;md5=c3159ad36d96a939fcd8f2c2c9b9d08a
+LIC_FILES_CHKSUM = file://LICENSE;md5=5602d7228daf59a16f0f1b2640c46bca
 PR = r3
 
-SRC_URI = 
http://tmrc.mit.edu/mirror/twisted/Twisted/10.2/Twisted-${PV}.tar.bz2 
-SRC_URI[md5sum] = 73da62c793269eade8121da336b01ba5
-SRC_URI[sha256sum] = 
562ed61c18aa72da99c23fb19c2c101d178995eb3a78ab3c09560a613e180c84
+SRC_URI = 
https://pypi.python.org/packages/source/T/Twisted/Twisted-${PV}.tar.bz2;
+SRC_URI[md5sum] = 83fe6c0c911cc1602dbffb036be0ba79
+SRC_URI[sha256sum] = 
095175638c019ac7c0604f4c291724a16ff1acd062e181b01293bf4dcbc62cf3
 
 S = ${WORKDIR}/Twisted-${PV}
 
@@ -26,7 +26,6 @@ PACKAGES += \
 ${PN}-zsh \
 ${PN}-test \
 ${PN}-protocols \
-${PN}-bin \
 ${PN}-conch \
 ${PN}-lore \
 ${PN}-mail \
@@ -42,7 +41,6 @@ PACKAGES += \
 
 RDEPENDS_${PN} = python-core python-zopeinterface
 RDEPENDS_${PN} += \
-${PN}-bin \
 ${PN}-conch \
 ${PN}-lore \
 ${PN}-mail \
@@ -70,11 +68,7 @@ FILES_${PN}-protocols =  \
 FILES_${PN}-zsh =  \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zsh \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.* \
-
-
-FILES_${PN}-bin =  \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/_c_urlarg.so \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/cBanana.so \
+
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/twisted-completion.zsh \
 
 
 FILES_${PN}-conch =  \
-- 
1.7.9.5


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


[oe] [meta-oe][PATCH 1/3] python-zopeinterface: upgrade to version 4.1.1

2014-03-26 Thread Diego Rondini
---
 ...face_3.5.1.bb = python-zopeinterface_4.1.1.bb} |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-zopeinterface_3.5.1.bb = 
python-zopeinterface_4.1.1.bb} (84%)

diff --git a/meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb 
b/meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
similarity index 84%
rename from meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb
rename to meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
index d73a5be..4982ed7 100644
--- a/meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb
+++ b/meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = 
file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423
 PR = r1
 
 SRC_URI = 
http://pypi.python.org/packages/source/z/zope.interface/zope.interface-${PV}.tar.gz;
-SRC_URI[md5sum] = 685fc532550abb07cca6190c9cd2b901
-SRC_URI[sha256sum] = 
b81d898532c47f73475c2d0c23580e289eed25923d007eca8e62750c0998bba0
+SRC_URI[md5sum] = edcd5f719c5eb2e18894c4d06e29b6c6
+SRC_URI[sha256sum] = 
91cba7b7cd7cb82f6f4e023fe77f94dc3df4ae5287fd55def2148dc232d0c7da
 
 S = ${WORKDIR}/zope.interface-${PV}
 
-- 
1.7.9.5


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


[oe] [meta-oe][PATCH 3/3] python-autobahn: upgrade to version 0.8.6

2014-03-26 Thread Diego Rondini
---
 ...autobahn_0.5.14.bb = python-autobahn_0.8.6.bb} |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-autobahn_0.5.14.bb = 
python-autobahn_0.8.6.bb} (87%)

diff --git a/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb 
b/meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
similarity index 87%
rename from meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb
rename to meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
index 0208c8b..a1e8c5f 100644
--- a/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb
+++ b/meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
@@ -5,10 +5,10 @@ HOMEPAGE = http://autobahn.ws/python;
 SECTION = console/network
 
 LICENSE = Apache-2.0
-LIC_FILES_CHKSUM =  
file://autobahn/__init__.py;beginline=1;endline=17;md5=81964ceb3ab93bfb5e8cfbcd26f3af9c
+LIC_FILES_CHKSUM =  
file://autobahn/__init__.py;beginline=1;endline=17;md5=1fdeccf6e5b70cda64cc1345597c18e3
 
 SRC_URI = 
https://pypi.python.org/packages/source/a/autobahn/autobahn-${PV}.zip;
-SRC_URI[md5sum] = e2c80ba3e46428b32837537609d4d582
+SRC_URI[md5sum] = 160429e7fb043940e79aa7f4ebbab57a
 
 S = ${WORKDIR}/autobahn-${PV}
 
-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv2 0/3] Update some python modules to latest upstream versions

2014-03-26 Thread Diego Rondini
This patch-set updates python-zopeinterface, python-twisted and python-autobahn 
to their latest upstream versions.

Changes in v2:
  - fixed missing Signed off-by

The following changes since commit 7dfa6be8c5d9b093ae79c403c685c6b8ed6216dd:

  recipes-graphics/lxdm: autotools and config updates (2014-03-23 21:53:58 
+0100)

are available in the git repository at:

  git://github.com/diegorondini/meta-oe master
  https://github.com/diegorondini/meta-oe/tree/master

Diego Rondini (3):
  python-zopeinterface: upgrade to version 4.1.1
  python-twisted: upgrade to version 13.2.0
  python-autobahn: upgrade to version 0.8.6

 ...autobahn_0.5.14.bb = python-autobahn_0.8.6.bb} |4 ++--
 ...-twisted_10.2.0.bb = python-twisted_13.2.0.bb} |   16 +---
 ...face_3.5.1.bb = python-zopeinterface_4.1.1.bb} |4 ++--
 3 files changed, 9 insertions(+), 15 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-autobahn_0.5.14.bb = 
python-autobahn_0.8.6.bb} (87%)
 rename meta-oe/recipes-devtools/python/{python-twisted_10.2.0.bb = 
python-twisted_13.2.0.bb} (94%)
 rename meta-oe/recipes-devtools/python/{python-zopeinterface_3.5.1.bb = 
python-zopeinterface_4.1.1.bb} (84%)

-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv2 3/3] python-autobahn: upgrade to version 0.8.6

2014-03-26 Thread Diego Rondini
Signed-off-by: Diego Rondini diego...@zoho.com
---
 ...autobahn_0.5.14.bb = python-autobahn_0.8.6.bb} |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-autobahn_0.5.14.bb = 
python-autobahn_0.8.6.bb} (87%)

diff --git a/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb 
b/meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
similarity index 87%
rename from meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb
rename to meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
index 0208c8b..a1e8c5f 100644
--- a/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb
+++ b/meta-oe/recipes-devtools/python/python-autobahn_0.8.6.bb
@@ -5,10 +5,10 @@ HOMEPAGE = http://autobahn.ws/python;
 SECTION = console/network
 
 LICENSE = Apache-2.0
-LIC_FILES_CHKSUM =  
file://autobahn/__init__.py;beginline=1;endline=17;md5=81964ceb3ab93bfb5e8cfbcd26f3af9c
+LIC_FILES_CHKSUM =  
file://autobahn/__init__.py;beginline=1;endline=17;md5=1fdeccf6e5b70cda64cc1345597c18e3
 
 SRC_URI = 
https://pypi.python.org/packages/source/a/autobahn/autobahn-${PV}.zip;
-SRC_URI[md5sum] = e2c80ba3e46428b32837537609d4d582
+SRC_URI[md5sum] = 160429e7fb043940e79aa7f4ebbab57a
 
 S = ${WORKDIR}/autobahn-${PV}
 
-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv2 2/3] python-twisted: upgrade to version 13.2.0

2014-03-26 Thread Diego Rondini
Signed-off-by: Diego Rondini diego...@zoho.com
---
 ...-twisted_10.2.0.bb = python-twisted_13.2.0.bb} |   16 +---
 1 file changed, 5 insertions(+), 11 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-twisted_10.2.0.bb = 
python-twisted_13.2.0.bb} (94%)

diff --git a/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb 
b/meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
similarity index 94%
rename from meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb
rename to meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
index d585bfa..00be867 100644
--- a/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb
+++ b/meta-oe/recipes-devtools/python/python-twisted_13.2.0.bb
@@ -6,12 +6,12 @@ SECTION = console/network
 
 #twisted/topfiles/NEWS:655: - Relicensed: Now under the MIT license, rather 
than LGPL.
 LICENSE = MIT
-LIC_FILES_CHKSUM = file://LICENSE;md5=c3159ad36d96a939fcd8f2c2c9b9d08a
+LIC_FILES_CHKSUM = file://LICENSE;md5=5602d7228daf59a16f0f1b2640c46bca
 PR = r3
 
-SRC_URI = 
http://tmrc.mit.edu/mirror/twisted/Twisted/10.2/Twisted-${PV}.tar.bz2 
-SRC_URI[md5sum] = 73da62c793269eade8121da336b01ba5
-SRC_URI[sha256sum] = 
562ed61c18aa72da99c23fb19c2c101d178995eb3a78ab3c09560a613e180c84
+SRC_URI = 
https://pypi.python.org/packages/source/T/Twisted/Twisted-${PV}.tar.bz2;
+SRC_URI[md5sum] = 83fe6c0c911cc1602dbffb036be0ba79
+SRC_URI[sha256sum] = 
095175638c019ac7c0604f4c291724a16ff1acd062e181b01293bf4dcbc62cf3
 
 S = ${WORKDIR}/Twisted-${PV}
 
@@ -26,7 +26,6 @@ PACKAGES += \
 ${PN}-zsh \
 ${PN}-test \
 ${PN}-protocols \
-${PN}-bin \
 ${PN}-conch \
 ${PN}-lore \
 ${PN}-mail \
@@ -42,7 +41,6 @@ PACKAGES += \
 
 RDEPENDS_${PN} = python-core python-zopeinterface
 RDEPENDS_${PN} += \
-${PN}-bin \
 ${PN}-conch \
 ${PN}-lore \
 ${PN}-mail \
@@ -70,11 +68,7 @@ FILES_${PN}-protocols =  \
 FILES_${PN}-zsh =  \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zsh \
 ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.* \
-
-
-FILES_${PN}-bin =  \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/_c_urlarg.so \
-${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/cBanana.so \
+
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/twisted-completion.zsh \
 
 
 FILES_${PN}-conch =  \
-- 
1.7.9.5


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


[oe] [meta-oe][PATCHv2 1/3] python-zopeinterface: upgrade to version 4.1.1

2014-03-26 Thread Diego Rondini
Signed-off-by: Diego Rondini diego...@zoho.com
---
 ...face_3.5.1.bb = python-zopeinterface_4.1.1.bb} |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-zopeinterface_3.5.1.bb = 
python-zopeinterface_4.1.1.bb} (84%)

diff --git a/meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb 
b/meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
similarity index 84%
rename from meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb
rename to meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
index d73a5be..4982ed7 100644
--- a/meta-oe/recipes-devtools/python/python-zopeinterface_3.5.1.bb
+++ b/meta-oe/recipes-devtools/python/python-zopeinterface_4.1.1.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = 
file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423
 PR = r1
 
 SRC_URI = 
http://pypi.python.org/packages/source/z/zope.interface/zope.interface-${PV}.tar.gz;
-SRC_URI[md5sum] = 685fc532550abb07cca6190c9cd2b901
-SRC_URI[sha256sum] = 
b81d898532c47f73475c2d0c23580e289eed25923d007eca8e62750c0998bba0
+SRC_URI[md5sum] = edcd5f719c5eb2e18894c4d06e29b6c6
+SRC_URI[sha256sum] = 
91cba7b7cd7cb82f6f4e023fe77f94dc3df4ae5287fd55def2148dc232d0c7da
 
 S = ${WORKDIR}/zope.interface-${PV}
 
-- 
1.7.9.5


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


[oe] [meta-oe][PATCH] glmark2: Add recipe for glmark2

2013-06-18 Thread Diego Rondini
Add a recipe for glmark2, which is an OpenGL 2.0 / OpenGL ES 2.0 benchmark.

Signed-off-by: Diego Rondini diego...@zoho.com
---
 .../recipes-benchmark/glmark2/glmark2_2012.12.bb   |   35 
 1 file changed, 35 insertions(+)
 create mode 100644 meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb

diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb 
b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
new file mode 100644
index 000..b5d483c
--- /dev/null
+++ b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
@@ -0,0 +1,35 @@
+SUMMARY = OpenGL (ES) 2.0 benchmark
+DESCRIPTION = glmark2 is a benchmark for OpenGL (ES) 2.0. \
+It uses only the subset of the OpenGL 2.0 API that is compatible with OpenGL 
ES 2.0.
+HOMEPAGE = https://launchpad.net/glmark2;
+BUGTRACKER = https://bugs.launchpad.net/glmark2;
+
+LICENSE = GPLv3+  SGIv1
+LIC_FILES_CHKSUM = file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
+
file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552
+
+DEPENDS = libpng12
+
+SRC_URI = https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz;
+
+SRC_URI[md5sum] = 4f306664aa3886fa0cf93853603603f8
+SRC_URI[sha256sum] = 
bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47
+
+inherit pkgconfig
+
+PACKAGECONFIG ?= gl gles2
+
+PACKAGECONFIG[gl] = --enable-gl,,virtual/libgl
+PACKAGECONFIG[gles2] = --enable-glesv2,,virtual/libgles2
+
+do_configure() {
+   ./waf configure --prefix=${prefix} ${EXTRA_OECONF}
+}
+
+do_compile() {
+   ./waf build ${PARALLEL_MAKE}
+}
+
+do_install() {
+   ./waf install --destdir=${D}
+}
-- 
1.7.9.5


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