[oe] [meta-qt5][PATCH v2] qtchooser: add new recipe

2016-05-09 Thread Li Xin
qtchooser is a wrapper used to select between Qt binary versions.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../0001-Makefile-install-the-man-dir.patch| 35 ++
 recipes-qt/qtchooser/qtchooser_git.bb  | 30 +++
 2 files changed, 65 insertions(+)
 create mode 100644 
recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch
 create mode 100644 recipes-qt/qtchooser/qtchooser_git.bb

diff --git 
a/recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch 
b/recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch
new file mode 100644
index 000..8e8e1c6
--- /dev/null
+++ b/recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch
@@ -0,0 +1,35 @@
+From 3f142e100cc3dd69b816ce79152760c823cb86e9 Mon Sep 17 00:00:00 2001
+From: Li Xin <lixin.f...@cn.fujitsu.com>
+Date: Fri, 29 Apr 2016 12:41:34 +0900
+Subject: [PATCH] Makefile: install the man dir
+
+upstream-status: backported
+
+Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
+---
+ Makefile | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/Makefile b/Makefile
+index 20b9100..1fd8cd3 100644
+--- a/Makefile
 b/Makefile
+@@ -1,5 +1,6 @@
+ prefix = /usr
+ bindir = $(prefix)/bin
++MKDIR  = mkdir -p
+ TOOLS = assistant \
+   designer \
+   lconvert \
+@@ -56,6 +57,8 @@ install:
+   case `uname -s` in Darwin) \
+   for tool in $(MACTOOLS); do ln -sf qtchooser 
"$(INSTALL_ROOT)$(bindir)/$$tool"; done \
+   ;; esac
++  $(MKDIR) $(INSTALL_ROOT)$(prefix)/share/man/man1
++  install -m 644 -p doc/qtchooser.1 
$(INSTALL_ROOT)$(prefix)/share/man/man1
+ 
+ uninstall:
+   cd src/qtchooser && $(MAKE) uninstall
+-- 
+1.8.4.2
+
diff --git a/recipes-qt/qtchooser/qtchooser_git.bb 
b/recipes-qt/qtchooser/qtchooser_git.bb
new file mode 100644
index 000..68b1c80
--- /dev/null
+++ b/recipes-qt/qtchooser/qtchooser_git.bb
@@ -0,0 +1,30 @@
+DESCRIPTION = "Wrapper to select between Qt development binary versions"
+HOMEPAGE = "http://macieira.org/qtchooser;
+LICENSE = "LGPL-2.1 & Digia-Qt-LGPL-Exception-1.1 | GPL-3.0"
+SRC_URI = "git://code.qt.io/qt/qtchooser.git;branch=master \
+   file://0001-Makefile-install-the-man-dir.patch"
+
+LIC_FILES_CHKSUM = " \
+file://LGPL_EXCEPTION.txt;md5=0145c4d1b6f96a661c2c139dfb268fb6 \
+file://LICENSE.GPL;md5=d32239bcb673463ab874e80d47fae504 \
+file://LICENSE.LGPL;md5=4193e7f1d47a858f6b7c0f1ee66161de \
+"
+S = "${WORKDIR}/git"
+SRCREV = "4717841185d34bbe450e3b24445f2d35e3325a6a"
+PV = "39+git${SRCREV}"
+
+inherit pkgconfig
+
+do_compile() {
+oe_runmake
+}
+
+do_install() {
+oe_runmake install INSTALL_ROOT=${D}
+#install configure file
+install -d ${D}${sysconfdir}/xdg/qtchooser/
+install -m 0644 
${S}/tests/auto/qtchooser/testdata/config2/qtchooser/*.conf \
+   ${D}${sysconfdir}/xdg/qtchooser/
+install -m 0644 
${S}/tests/auto/qtchooser/testdata/default/qtchooser/default.conf \
+   ${D}${sysconfdir}/xdg/qtchooser/
+}
-- 
1.8.4.2



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


[oe] [meta-qt5][PATCH] qtchooser: add new recipe

2016-04-28 Thread Li Xin
qtchooser is a wrapper used to select between Qt binary versions.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../0001-Makefile-install-the-man-dir.patch| 35 ++
 recipes-qt/qtchooser/qtchooser_39.bb   | 24 +++
 2 files changed, 59 insertions(+)
 create mode 100644 
recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch
 create mode 100644 recipes-qt/qtchooser/qtchooser_39.bb

diff --git 
a/recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch 
b/recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch
new file mode 100644
index 000..8e8e1c6
--- /dev/null
+++ b/recipes-qt/qtchooser/qtchooser/0001-Makefile-install-the-man-dir.patch
@@ -0,0 +1,35 @@
+From 3f142e100cc3dd69b816ce79152760c823cb86e9 Mon Sep 17 00:00:00 2001
+From: Li Xin <lixin.f...@cn.fujitsu.com>
+Date: Fri, 29 Apr 2016 12:41:34 +0900
+Subject: [PATCH] Makefile: install the man dir
+
+upstream-status: backported
+
+Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
+---
+ Makefile | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/Makefile b/Makefile
+index 20b9100..1fd8cd3 100644
+--- a/Makefile
 b/Makefile
+@@ -1,5 +1,6 @@
+ prefix = /usr
+ bindir = $(prefix)/bin
++MKDIR  = mkdir -p
+ TOOLS = assistant \
+   designer \
+   lconvert \
+@@ -56,6 +57,8 @@ install:
+   case `uname -s` in Darwin) \
+   for tool in $(MACTOOLS); do ln -sf qtchooser 
"$(INSTALL_ROOT)$(bindir)/$$tool"; done \
+   ;; esac
++  $(MKDIR) $(INSTALL_ROOT)$(prefix)/share/man/man1
++  install -m 644 -p doc/qtchooser.1 
$(INSTALL_ROOT)$(prefix)/share/man/man1
+ 
+ uninstall:
+   cd src/qtchooser && $(MAKE) uninstall
+-- 
+1.8.4.2
+
diff --git a/recipes-qt/qtchooser/qtchooser_39.bb 
b/recipes-qt/qtchooser/qtchooser_39.bb
new file mode 100644
index 000..7fceb9c
--- /dev/null
+++ b/recipes-qt/qtchooser/qtchooser_39.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "Wrapper to select between Qt development binary versions"
+HOMEPAGE = "http://macieira.org/qtchooser;
+LICENSE = "LGPLv2 | GPLv3"
+SRC_URI = "http://macieira.org/qtchooser/${BP}-g4717841.tar.gz \
+   file://0001-Makefile-install-the-man-dir.patch"
+SRC_URI[md5sum] = "fcf1b5e8373147e48ce72b9c1ffe3d10"
+SRC_URI[sha256sum] = 
"4681d0561bf96599bf9bf5eb25103d07ee8f045f31576dc2e72b8529587a67c6"
+
+LIC_FILES_CHKSUM = " \
+file://LGPL_EXCEPTION.txt;md5=0145c4d1b6f96a661c2c139dfb268fb6 \
+file://LICENSE.GPL;md5=d32239bcb673463ab874e80d47fae504 \
+file://LICENSE.LGPL;md5=4193e7f1d47a858f6b7c0f1ee66161de \
+"
+S = "${WORKDIR}/${BP}-g4717841"
+
+inherit pkgconfig
+
+do_compile() {
+oe_runmake
+}
+
+do_install() {
+oe_runmake install INSTALL_ROOT=${D}
+}
-- 
1.8.4.2



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


[oe] [meta-qt5][PATCH] qtquick1: fix rootfs creation errors

2016-04-28 Thread Li Xin
The error is as following:
1) Can't install libqt5declarative-plugins-***: no package
   provides libQt5Declarative.so.5(Qt_5_PRIVATE_API)

2) ERROR: Nothing RPROVIDES 'libqt5declarative-tools'

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 recipes-qt/qt5/qtquick1_git.bb | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/recipes-qt/qt5/qtquick1_git.bb b/recipes-qt/qt5/qtquick1_git.bb
index 61b02a1..ec4c18c 100644
--- a/recipes-qt/qt5/qtquick1_git.bb
+++ b/recipes-qt/qt5/qtquick1_git.bb
@@ -24,3 +24,14 @@ do_configure_prepend() {
 }
 
 SRCREV = "563ce3888f3c04abcc96ba236b20c7a822bc88e2"
+
+PROVIDES += "qtquick1"
+RPROVIDES_libqt5declarative5 += "qtquick1"
+RREPLACES_libqt5declarative5 += "qtquick1"
+RCONFLICTS_libqt5declarative5 += "qtquick1"
+
+PACKAGES += "libqt5declarative5 \
+ libqt5declarative-tools \
+ libqt5declarative-qmlplugins \
+ libqt5declarative-plugins \
+ "
-- 
1.8.4.2



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


Re: [oe] [meta-oe][PATCH] ltrace: Error Fix for ARM

2016-04-28 Thread Li, Xin


>-Original Message-
>From: openembedded-devel-boun...@lists.openembedded.org
>[mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
>Martin Jansa
>Sent: Wednesday, April 27, 2016 4:35 PM
>To: openembedded-devel@lists.openembedded.org
>Subject: Re: [oe] [meta-oe][PATCH] ltrace: Error Fix for ARM
>
>On Fri, Apr 15, 2016 at 04:06:49AM +0300, Li Xin wrote:
>> 1) The error is as following:
>>  root # ltrace ls
>>  __libc_start_main(0xb6fbc018, 1, 0xbed8fdc4,
>0xb6fd0b88PTRACE_SINGLESTEP: Input/output error
>>  2747 couldn't continue when handling __libc_start_main (0xb6fbbde0) at
>0xb6fbbde0
>>The master branch fix it.
>>
>> 2) remove unused patch:
>>  --0001-ltrace-fix-gcc-5-logical-not-parentheses.patch
>>  --ltrace-0.7.2-unused-typedef.patch
>
>Now I'm seeing this failure:
>
>| ../../../../git/sysdeps/linux-gnu/arm/fetch.c: In function 'arch_elf_init':
>| ../../../../git/sysdeps/linux-gnu/arm/fetch.c:101:8: error: 'data' may be 
>used
>uninitialized in this function [-Werror=maybe-uninitialized]
>| if (elf_read_next_uleb128(data, , ) < 0
>| ^
>| cc1: all warnings being treated as errors
>| make[4]: *** [fetch.lo] Error 1
>| make[4]: *** Waiting for unfinished jobs
>| make[4]: Leaving directory
>`.../ltrace/1_7.3+gitAUTOINC+01b10e191e-r0/build/sysdeps/linux-gnu/arm'
>
>Possibly caused by using -Os, can you retest with -Os?

OK, And can you tell me how to test with -Os?

Regards & Thanks.


>
>> Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
>> ---
>>  ...-ltrace-fix-gcc-5-logical-not-parentheses.patch | 38 -
>>  .../ltrace/ltrace-0.7.2-unused-typedef.patch   | 49 
>> --
>>  meta-oe/recipes-devtools/ltrace/ltrace_git.bb  |  6 +--
>>  3 files changed, 2 insertions(+), 91 deletions(-)  delete mode 100644
>> meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical-n
>> ot-parentheses.patch  delete mode 100644
>> meta-oe/recipes-devtools/ltrace/ltrace/ltrace-0.7.2-unused-typedef.pat
>> ch
>>
>> diff --git
>> a/meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical
>> -not-parentheses.patch
>> b/meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical
>> -not-parentheses.patch
>> deleted file mode 100644
>> index 681c43d..000
>> ---
>> a/meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical
>> -not-parentheses.patch
>> +++ /dev/null
>> @@ -1,38 +0,0 @@
>> -From 876fe5680d77800426f8c4c5680a235732d722e6 Mon Sep 17 00:00:00
>> 2001
>> -From: Kai Kang <kai.k...@windriver.com>
>> -Date: Mon, 24 Aug 2015 17:37:54 +0800
>> -Subject: [PATCH] ltrace: fix gcc 5 logical not parentheses
>> -
>> -Upstream-Status: Pending
>> -
>> -Build ltrace with gcc 5.2, it fails with:
>> -
>> -error: logical not is only applied to the left hand side of
>> comparison -[-Werror=logical-not-parentheses]
>> -   if (!need_data(data, offset, SIZE / 8) < 0)  \
>> - ^
>> -
>> -Function need_data just return 0 on success and -1 if fail. So it is
>> ok -to just test if (need_data(data, offset, SIZE / 8) < 0).
>> -
>> -Signed-off-by: Kai Kang <kai.k...@windriver.com>
>> 
>> - ltrace-elf.c | 2 +-
>> - 1 file changed, 1 insertion(+), 1 deletion(-)
>> -
>> -diff --git a/ltrace-elf.c b/ltrace-elf.c -index c571d2a..7fe830f
>> 100644
>>  a/ltrace-elf.c
>> -+++ b/ltrace-elf.c
>> -@@ -218,7 +218,7 @@ need_data(Elf_Data *data, GElf_Xword offset,
>GElf_Xword size)
>> -int \
>> -NAME(Elf_Data *data, GElf_Xword offset, uint##SIZE##_t *retp)   \
>> -{   \
>> --   if (!need_data(data, offset, SIZE / 8) < 0) \
>> -+   if (need_data(data, offset, SIZE / 8) < 0)  \
>> -return -1;  \
>> -\
>> -if (data->d_buf == NULL) /* NODATA section */ { \
>> ---
>> -1.9.1
>> -
>> diff --git
>> a/meta-oe/recipes-devtools/ltrace/ltrace/ltrace-0.7.2-unused-typedef.p
>> atch
>> b/meta-oe/recipes-devtools/ltrace/ltrace/ltrace-0.7.2-unused-typedef.p
>> atch
>> deleted file mode 100644
>> index 8f3c0ec..000
>> ---
>> a/meta-oe/recipes-devtools/l

[oe] [meta-oe][PATCH 2/2] mariadb: Fix rootfs creation errors

2016-04-26 Thread Li Xin
error: file /usr/share/doc/README from install of mariadb-leftovers-5.5.46-*
conflicts with file from package dmidecode-doc-2.12-*

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-support/mysql/mariadb.inc | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/mysql/mariadb.inc 
b/meta-oe/recipes-support/mysql/mariadb.inc
index 6a55476..4801ffe 100644
--- a/meta-oe/recipes-support/mysql/mariadb.inc
+++ b/meta-oe/recipes-support/mysql/mariadb.inc
@@ -145,7 +145,10 @@ do_install() {
 fi
 install -d ${D}${bindir}
 install -m 755 ${WORKDIR}/mysql-systemd-start ${D}${bindir}
-
+install -d ${D}${datadir}/doc/${PN}
+if [ -f ${D}${datadir}/doc/README ]; then
+mv ${D}${datadir}/doc/README ${D}${datadir}/doc/${PN}/
+fi
 }
 
 PACKAGES = "${PN}-dbg ${PN} \
-- 
1.8.4.2



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


[oe] [meta-networking][PATCH 1/2] rp-pppoe: Fix rootfs creation errors

2016-04-26 Thread Li Xin
error: file /usr/share/doc/README from install of rp-pppoe-doc-3.11-*
conflicts with file from package dmidecode-doc-2.12*

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.12.bb | 4 
 1 file changed, 4 insertions(+)

diff --git a/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.12.bb 
b/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.12.bb
index d5f4a20..e1ca17f 100644
--- a/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.12.bb
+++ b/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.12.bb
@@ -29,6 +29,10 @@ do_install_append() {
 install -m 0644 ${WORKDIR}/pppoe-server.service 
${D}${systemd_unitdir}/system
 sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' 
${D}${systemd_unitdir}/system/pppoe-server.service
 sed -i -e 's#@SBINDIR@#${sbindir}#g' 
${D}${systemd_unitdir}/system/pppoe-server.service
+install -d ${D}${datadir}/doc/${PN}
+if [ -f ${D}${datadir}/doc/README ]; then
+mv ${D}${datadir}/doc/README ${D}${datadir}/doc/${PN}/
+fi
 }
 
 do_install() {
-- 
1.8.4.2



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


[oe] [meta-oe]PATCH] mozjs_17.0.0.bb: Fix do_srpm error

2016-04-26 Thread Li Xin
The function do_sourceclean() will lead to do_srpm failed, so use
do_unpack instead.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb 
b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb
index be4b50b..7d66978 100644
--- a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb
+++ b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb
@@ -52,17 +52,11 @@ do_configure() {
 }
 
 # patch.bbclass will try to apply the patches already present and fail, so 
clean them out
-do_sourceclean() {
-(
-cd ${WORKDIR}/${BPN}${PV}/patches
-for i in $(cat series | awk '{print $1}') ; do
-rm -f $i
-done
-rm -f series
-)
+do_unpack() {
+tar -xvf ${DL_DIR}/mozjs17.0.0.tar.gz -C ${WORKDIR}/
+rm -rf ${WORKDIR}/${BPN}${PV}/patches
 }
 
-addtask sourceclean before do_patch after do_unpack
 
 PACKAGES =+ "lib${PN}"
 FILES_lib${PN} += "${libdir}/lib*.so"
-- 
1.8.4.2



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


[oe] [meta-oe][PATCH] ltrace: Error Fix for ARM

2016-04-14 Thread Li Xin
1) The error is as following:
 root # ltrace ls
 __libc_start_main(0xb6fbc018, 1, 0xbed8fdc4, 0xb6fd0b88PTRACE_SINGLESTEP: 
Input/output error
 2747 couldn't continue when handling __libc_start_main (0xb6fbbde0) at 
0xb6fbbde0
   The master branch fix it.

2) remove unused patch:
 --0001-ltrace-fix-gcc-5-logical-not-parentheses.patch
 --ltrace-0.7.2-unused-typedef.patch

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 ...-ltrace-fix-gcc-5-logical-not-parentheses.patch | 38 -
 .../ltrace/ltrace-0.7.2-unused-typedef.patch   | 49 --
 meta-oe/recipes-devtools/ltrace/ltrace_git.bb  |  6 +--
 3 files changed, 2 insertions(+), 91 deletions(-)
 delete mode 100644 
meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical-not-parentheses.patch
 delete mode 100644 
meta-oe/recipes-devtools/ltrace/ltrace/ltrace-0.7.2-unused-typedef.patch

diff --git 
a/meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical-not-parentheses.patch
 
b/meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical-not-parentheses.patch
deleted file mode 100644
index 681c43d..000
--- 
a/meta-oe/recipes-devtools/ltrace/ltrace/0001-ltrace-fix-gcc-5-logical-not-parentheses.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 876fe5680d77800426f8c4c5680a235732d722e6 Mon Sep 17 00:00:00 2001
-From: Kai Kang <kai.k...@windriver.com>
-Date: Mon, 24 Aug 2015 17:37:54 +0800
-Subject: [PATCH] ltrace: fix gcc 5 logical not parentheses
-
-Upstream-Status: Pending
-
-Build ltrace with gcc 5.2, it fails with:
-
-error: logical not is only applied to the left hand side of comparison
-[-Werror=logical-not-parentheses]
-   if (!need_data(data, offset, SIZE / 8) < 0)  \
- ^
-
-Function need_data just return 0 on success and -1 if fail. So it is ok
-to just test if (need_data(data, offset, SIZE / 8) < 0).
-
-Signed-off-by: Kai Kang <kai.k...@windriver.com>

- ltrace-elf.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/ltrace-elf.c b/ltrace-elf.c
-index c571d2a..7fe830f 100644
 a/ltrace-elf.c
-+++ b/ltrace-elf.c
-@@ -218,7 +218,7 @@ need_data(Elf_Data *data, GElf_Xword offset, GElf_Xword 
size)
-   int \
-   NAME(Elf_Data *data, GElf_Xword offset, uint##SIZE##_t *retp)   \
-   {   \
--  if (!need_data(data, offset, SIZE / 8) < 0) \
-+  if (need_data(data, offset, SIZE / 8) < 0)  \
-   return -1;  \
-   \
-   if (data->d_buf == NULL) /* NODATA section */ { \
--- 
-1.9.1
-
diff --git 
a/meta-oe/recipes-devtools/ltrace/ltrace/ltrace-0.7.2-unused-typedef.patch 
b/meta-oe/recipes-devtools/ltrace/ltrace/ltrace-0.7.2-unused-typedef.patch
deleted file mode 100644
index 8f3c0ec..000
--- a/meta-oe/recipes-devtools/ltrace/ltrace/ltrace-0.7.2-unused-typedef.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-diff --git a/value.c b/value.c
-index d18db17..b98298e 100644
 a/value.c
-+++ b/value.c
-@@ -1,6 +1,6 @@
- /*
-  * This file is part of ltrace.
-- * Copyright (C) 2011,2012 Petr Machata, Red Hat Inc.
-+ * Copyright (C) 2011,2012,2013 Petr Machata, Red Hat Inc.
-  *
-  * This program is free software; you can redistribute it and/or
-  * modify it under the terms of the GNU General Public License as
-@@ -282,9 +282,9 @@ value_init_deref(struct value *ret_val, struct value *valp)
-   if (value_extract_word(valp, , NULL) < 0)
-   return -1;
- 
--  /* We need "long" to be long enough to hold platform
-+  /* We need "long" to be long enough to hold target
-* pointers.  */
--  typedef char assert__long_enough_long[-(sizeof(l) < sizeof(void *))];
-+  assert(sizeof(l) >= sizeof(arch_addr_t));
- 
-   value_common_init(ret_val, valp->inferior, valp,
- valp->type->u.ptr_info.info, 0);
-diff --git a/lens_default.c b/lens_default.c
-index ed3d0e1..5d00814 100644
 a/lens_default.c
-+++ b/lens_default.c
-@@ -1,6 +1,6 @@
- /*
-  * This file is part of ltrace.
-- * Copyright (C) 2011,2012 Petr Machata, Red Hat Inc.
-+ * Copyright (C) 2011,2012,2013 Petr Machata, Red Hat Inc.
-  * Copyright (C) 1998,2004,2007,2008,2009 Juan Cespedes
-  * Copyright (C) 2006 Ian Wienand
-  * Copyright (C) 2006 Steve Fink
-@@ -342,9 +342,9 @@ format_array(FILE *stream, struct value *value, struct 
value_dict *arguments,
-struct expr_node *length, size_t maxlen, int before,
-const char *open, const char *close, const char *delim)
- {
--  /* We need "long" to be long enough to cover the whole address
--   * space.  */
--  typedef char ass

[oe] [meta-oe][PATCH] networkmanager: Warning Fix

2016-01-21 Thread Li Xin
WARNING: QA Issue: networkmanager rdepends on libnewt, but it isn't a build 
dependency? [build-deps]

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb 
b/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb
index 1ddb66f..72b4e46 100644
--- a/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb
+++ b/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb
@@ -56,6 +56,7 @@ PACKAGECONFIG[wifi] = 
"--enable-wifi=yes,--enable-wifi=no,wireless-tools,wpa-sup
 PACKAGECONFIG[ifupdown] = "--enable-ifupdown,--disable-ifupdown"
 PACKAGECONFIG[netconfig] = "--with-netconfig=yes,--with-netconfig=no"
 PACKAGECONFIG[qt4-x11-free] = "--enable-qt,--disable-qt,qt4-x11-free"
+PACKAGECONFIG[libnewt] = "--with-nmtui=yes,--with-nmtui=no,libnewt"
 
 PACKAGES =+ "libnmutil libnmglib libnmglib-vpn ${PN}-tests 
${PN}-bash-completion \
   ${PN}-nmtui ${PN}-nmtui-doc \
-- 
1.8.4.2



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


[oe] [meta-oe][PATCH] networkmanager: add PACKAGECONFIG for qt4-x11-free

2016-01-20 Thread Li Xin
Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb 
b/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb
index c2b00ed..1ddb66f 100644
--- a/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb
+++ b/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.6.bb
@@ -55,6 +55,7 @@ PACKAGECONFIG[gnutls] = "--with-crypto=gnutls,,gnutls 
libgcrypt"
 PACKAGECONFIG[wifi] = 
"--enable-wifi=yes,--enable-wifi=no,wireless-tools,wpa-supplicant 
wireless-tools"
 PACKAGECONFIG[ifupdown] = "--enable-ifupdown,--disable-ifupdown"
 PACKAGECONFIG[netconfig] = "--with-netconfig=yes,--with-netconfig=no"
+PACKAGECONFIG[qt4-x11-free] = "--enable-qt,--disable-qt,qt4-x11-free"
 
 PACKAGES =+ "libnmutil libnmglib libnmglib-vpn ${PN}-tests 
${PN}-bash-completion \
   ${PN}-nmtui ${PN}-nmtui-doc \
-- 
1.8.4.2



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


[oe] [meta-oe][PATCH v2] xterm: 308 -> 320

2016-01-06 Thread Li Xin
Upgrade xterm from 308 to 320.

1) Modify LIC_FILES_CHKSUM,since the date in it has been changed, But the 
LICENSE has not been changed.
2) Fix WARNING: QA Issue: xterm rdepends on libxinerama, but it isn't a build 
dependency? [build-deps]
 
Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} (75%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb 
b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
similarity index 75%
rename from meta-oe/recipes-graphics/xorg-app/xterm_308.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_320.bb
index 9198ca2..ae9aa76 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
@@ -2,12 +2,12 @@ require recipes-graphics/xorg-app/xorg-app-common.inc
 SUMMARY = "xterm is the standard terminal emulator for the X Window System"
 DEPENDS = "libxaw xproto xextproto libxext libxau libxpm ncurses"
 
-LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=540cf18ccc16bc3c5fea40d2ab5d8d51"
+LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=ee6435019d00b884cde8d7ba2b318ff0"
 
 SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz;
 
-SRC_URI[md5sum] = "1ec76c1a79a70de4f82c24c527ef4626"
-SRC_URI[sha256sum] = 
"c5bf7377a5bf35e34b7e3a4ab6c848fbc89e8901dd98f8b237662a72bdbfe372"
+SRC_URI[md5sum] = "0d7f0e6390d132ae59876b3870e5783d"
+SRC_URI[sha256sum] = 
"a60dbb574334c081425fa30f011cd9f571e3be7a91e2a84e252461798bce24a7"
 
 EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
  --x-libraries=${STAGING_LIBDIR} \
@@ -25,6 +25,6 @@ do_configure() {
 }
 
 FILES_${PN} += " /usr/lib/X11"
-
+RDEPENDS_${PN} += "libxinerama"
 PACKAGECONFIG ?= ""
 PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig"
-- 
1.9.1



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


[oe] [meta-python][jethro][PATCH 2/4] python-pyasn1: Error fix for recipes depend on python-pyasn1

2016-01-04 Thread Li Xin
If you bitbake recipes which depends on python-pyasn1 such as
python-cryptography. And also your network is not very well.
Error will occur as following:
   Download error on https://pypi.python.org/simple/pyasn1/:
   [Errno -5] No address associated with hostname -- Some packages may not be 
found!
Couldn't find index page for 'pyasn1' (maybe misspelled?)
No local packages or download links found for pyasn1
So add do_compile_append() to fix it.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-pyasn1_0.1.7.bb | 9 +
 1 file changed, 9 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-pyasn1_0.1.7.bb 
b/meta-python/recipes-devtools/python/python-pyasn1_0.1.7.bb
index 0fe6909..5259b1c 100644
--- a/meta-python/recipes-devtools/python/python-pyasn1_0.1.7.bb
+++ b/meta-python/recipes-devtools/python/python-pyasn1_0.1.7.bb
@@ -14,3 +14,12 @@ S = "${WORKDIR}/pyasn1-${PV}"
 inherit setuptools
 
 RDEPENDS_${PN} += "python-lang python-shell"
+
+do_compile_append() {
+export BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS}
+${PYTHON} setup.py -q bdist_egg --dist-dir ./
+}
+
+do_install_append() {
+install -m 0644 ${S}/*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/
+}
-- 
1.8.4.2



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


[oe] [meta-python][jethro][PATCH 1/4] python-enum34: Error Fix for recipes depend on python-enum34

2016-01-04 Thread Li Xin
If you bitbake recipes which depends on python-enum34 such as
python-cryptography. And also your network is not very well.
Error will occur as following:
   Download error on https://pypi.python.org/simple/enum34/:
   [Errno -5] No address associated with hostname -- Some packages may not be 
found!
Couldn't find index page for 'enum34' (maybe misspelled?)
No local packages or download links found for enum34
So add do_compile_append() to fix it.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../python-enum34/0001-setup.py-Bug-Fix.patch  | 31 ++
 .../recipes-devtools/python/python-enum34_1.0.4.bb | 11 
 2 files changed, 42 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python-enum34/0001-setup.py-Bug-Fix.patch

diff --git 
a/meta-python/recipes-devtools/python/python-enum34/0001-setup.py-Bug-Fix.patch 
b/meta-python/recipes-devtools/python/python-enum34/0001-setup.py-Bug-Fix.patch
new file mode 100644
index 000..2cffee7
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python-enum34/0001-setup.py-Bug-Fix.patch
@@ -0,0 +1,31 @@
+From bfb7ac12ea7b6e821487fdf86a11c95cfbaf9a57 Mon Sep 17 00:00:00 2001
+From: Li Xin <lixin.f...@cn.fujitsu.com>
+Date: Thu, 17 Dec 2015 17:20:29 +0900
+Subject: [PATCH] setup.py: Bug Fix
+
+|   warnings.warn(msg)
+| usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
+|or: setup.py --help [cmd1 cmd2 ...]
+|or: setup.py --help-commands
+|or: setup.py cmd --help
+|
+| error: invalid command 'bdist_egg'
+
+Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
+---
+ setup.py | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/setup.py b/setup.py
+index ecb4944..88d78c0 100644
+--- a/setup.py
 b/setup.py
+@@ -1,4 +1,5 @@
+ import os
++import setuptools
+ import sys
+ from distutils.core import setup
+ 
+-- 
+1.8.4.2
+
diff --git a/meta-python/recipes-devtools/python/python-enum34_1.0.4.bb 
b/meta-python/recipes-devtools/python/python-enum34_1.0.4.bb
index 2ef5df1..1512845 100644
--- a/meta-python/recipes-devtools/python/python-enum34_1.0.4.bb
+++ b/meta-python/recipes-devtools/python/python-enum34_1.0.4.bb
@@ -6,3 +6,14 @@ SRC_URI[md5sum] = "ac80f432ac9373e7d162834b264034b6"
 SRC_URI[sha256sum] = 
"d3c19f26a6a34629c18c775f59dfc5dd595764c722b57a2da56ebfb69b94e447"
 
 inherit pypi
+
+SRC_URI += "file://0001-setup.py-Bug-Fix.patch"
+
+do_compile_append() {
+export BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS}
+${PYTHON} setup.py -q bdist_egg --dist-dir ./
+}
+
+do_install_append() {
+install -m 0644 ${S}/*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/
+}
-- 
1.8.4.2



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


[oe] [meta-python][jethro][PATCH 3/4] python-six: Error fix for recipes depend on python-six

2016-01-04 Thread Li Xin
If you bitbake recipes which depends on python-six such as
python-cryptography. And also your network is not very well.
Error will occur as following:
   Download error on https://pypi.python.org/simple/six/:
   [Errno -5] No address associated with hostname -- Some packages may not be 
found!
Couldn't find index page for 'six' (maybe misspelled?)
No local packages or download links found for six
So add do_compile_append() to fix it.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-six_1.9.0.bb | 8 
 1 file changed, 8 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-six_1.9.0.bb 
b/meta-python/recipes-devtools/python/python-six_1.9.0.bb
index aa96dc9..c6575f3 100644
--- a/meta-python/recipes-devtools/python/python-six_1.9.0.bb
+++ b/meta-python/recipes-devtools/python/python-six_1.9.0.bb
@@ -6,3 +6,11 @@ SRC_URI[md5sum] = "476881ef4012262dfc8adc645ee786c4"
 SRC_URI[sha256sum] = 
"e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5"
 
 inherit pypi
+
+do_compile_append() {
+export BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS}
+${PYTHON} setup.py -q bdist_egg --dist-dir ./
+}
+do_install_append() {
+install -m 0644 ${S}/*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/
+}
-- 
1.8.4.2



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


[oe] [meta-python][jethro][PATCH 4/4] python-cryptography: Error fix

2016-01-04 Thread Li Xin
python-cryptography depends on python-enum34 python-six python-pyasn1,
And will download modules enum34 six pyasn1 in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/enum34/:
  [Errno -5] No address associated with hostname -- Some packages may not be 
found!
  Couldn't find index page for 'enum34' (maybe misspelled?)

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-cryptography_0.8.1.bb   | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-cryptography_0.8.1.bb 
b/meta-python/recipes-devtools/python/python-cryptography_0.8.1.bb
index 41e4acd..d6ebbb7 100644
--- a/meta-python/recipes-devtools/python/python-cryptography_0.8.1.bb
+++ b/meta-python/recipes-devtools/python/python-cryptography_0.8.1.bb
@@ -38,6 +38,20 @@ RDEPENDS_${PN}-ptest = "\
 
 inherit ptest
 
+do_compile_prepend() {
+install -d ${S}/.eggs
+if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/enum34*.egg ]; then
+cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/enum34*.egg 
${S}/.eggs/
+fi
+
+if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pyasn1*.egg ]; then
+cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pyasn1*.egg 
${S}/.eggs/
+fi
+
+if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/six*.egg ]; then
+cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/six*.egg ${S}/.eggs/
+fi
+}
 do_install_ptest() {
 install -d ${D}${PTEST_PATH}/tests
 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
-- 
1.8.4.2



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


[oe] [meta-oe][PATCH v2] engine-pkcs11: 0.1.8 -> 0.2.0

2016-01-04 Thread Li Xin
Upgrade engine-pkcs11 from 0.1.8 to 0.2.0.

1) Modify LIC_FILES_CHKSUM,since the LICENSE file has changed,and the LICENSE 
has also changed.
2) Fix error: QA Issue: engine-pkcs11: Files/directories were installed but not 
shipped in any package:
   /usr/lib/openssl/engines/libpkcs11.la
   /usr/lib/openssl/engines/libpkcs11.so

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../{engine-pkcs11_0.1.8.bb => engine-pkcs11_0.2.0.bb} | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-support/engine-pkcs11/{engine-pkcs11_0.1.8.bb => 
engine-pkcs11_0.2.0.bb} (64%)

diff --git a/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb 
b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb
similarity index 64%
rename from meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb
rename to meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb
index a511cfb..f2a2258 100644
--- a/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb
+++ b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb
@@ -6,11 +6,11 @@ call by openssl to a PKCS cards and software for using smart 
cards in PKCS"
 HOMEPAGE = "https://github.com/OpenSC/engine_pkcs11;
 SECTION = "Development/Libraries"
 LICENSE = "LGPLv2.1+"
-LIC_FILES_CHKSUM = "file://doc/README;md5=d2ab6bf8854463fa6bf98f5bb6dfc47c"
+LIC_FILES_CHKSUM = 
"file://src/engine_pkcs11.h;startline=1;endline=26;md5=973a19f8a6105de047f2adfbbfc04c33"
 DEPENDS = "openssl libp11"
 
-SRC_URI = "git://github.com/OpenSC/engine_pkcs11.git"
-SRCREV = "bb775c32dba8cc4b4381a53da7ab5d7b22b7921d"
+SRC_URI = "git://github.com/OpenSC/engine_pkcs11.git;protocol=http"
+SRCREV = "6909d6761c8820e1750fa0bf4fa8532c82f34e35"
 
 S = "${WORKDIR}/git"
 
@@ -22,8 +22,8 @@ EXTRA_OECONF = "\
 "
 
 do_install_append () {
-rm -f ${D}${libdir}/openssl/engines/engine_pkcs11.la
+rm -f ${D}${libdir}/openssl/engines/libpkcs11.la
 }
 
-FILES_${PN} += "${libdir}/openssl/engines/engine_pkcs11.so*"
+FILES_${PN} += "${libdir}/openssl/engines/libpkcs11.so*"
 FILES_${PN}-dbg += "${libdir}/openssl/engines/.debug/*"
-- 
1.9.1



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


[oe] [meta-oe][PATCH] dialog: 1.2-20150528 -> 1.2-20150920

2016-01-03 Thread Li Xin
From: Li Xin <lixin2015.f...@cn.fujitsu.com>

Upgrade dialog from 1.2-20150528 to 1.2-20150920.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../dialog/{dialog_1.2-20150528.bb => dialog_1.2-20150920.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-extended/dialog/{dialog_1.2-20150528.bb => 
dialog_1.2-20150920.bb} (86%)

diff --git a/meta-oe/recipes-extended/dialog/dialog_1.2-20150528.bb 
b/meta-oe/recipes-extended/dialog/dialog_1.2-20150920.bb
similarity index 86%
rename from meta-oe/recipes-extended/dialog/dialog_1.2-20150528.bb
rename to meta-oe/recipes-extended/dialog/dialog_1.2-20150920.bb
index 4fb938e..6fef9d6 100644
--- a/meta-oe/recipes-extended/dialog/dialog_1.2-20150528.bb
+++ b/meta-oe/recipes-extended/dialog/dialog_1.2-20150920.bb
@@ -8,8 +8,8 @@ DEPENDS = "ncurses"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
 
-SRC_URI[md5sum] = "593615fb448e001e5b81420473a7354b"
-SRC_URI[sha256sum] = 
"a8cd7a66bdb41e53a3145cbb0eb370c5ce7300fe0e9ad6d3e8d3b9e16ff16418"
+SRC_URI[md5sum] = "2b7c002b0a88ce1e0014af34b6b1ebdc"
+SRC_URI[sha256sum] = 
"c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05"
 
 SRC_URI = "ftp://invisible-island.net/dialog/dialog-${PV}.tgz \
   "
-- 
1.9.1



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


[oe] [meta-oe][PATCH] mailcap: 2.1.44 -> 2.1.45

2016-01-03 Thread Li Xin
Upgrade mailcap from 2.1.44 to 2.1.45.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../mailcap/{mailcap_2.1.44.bb => mailcap_2.1.45.bb}  | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/mailcap/{mailcap_2.1.44.bb => 
mailcap_2.1.45.bb} (83%)

diff --git a/meta-oe/recipes-support/mailcap/mailcap_2.1.44.bb 
b/meta-oe/recipes-support/mailcap/mailcap_2.1.45.bb
similarity index 83%
rename from meta-oe/recipes-support/mailcap/mailcap_2.1.44.bb
rename to meta-oe/recipes-support/mailcap/mailcap_2.1.45.bb
index 4b9ddb2..911360f 100644
--- a/meta-oe/recipes-support/mailcap/mailcap_2.1.44.bb
+++ b/meta-oe/recipes-support/mailcap/mailcap_2.1.45.bb
@@ -12,12 +12,12 @@ by several applications e.g. to determine MIME types for 
filenames."
 
 SECTION = "System Environment/Base"
 
-SRC_URI = 
"https://git.fedorahosted.org/cgit/${BPN}.git/snapshot/${BPN}-r2-1-44.tar.gz;
-SRC_URI[md5sum] = "e7de2a5dfaa126d5e0a081af7d908906"
-SRC_URI[sha256sum] = 
"644da071f918a33e11d1f8db8334010dd325108209d302f800816f4a177ee2e6"
+SRC_URI = 
"https://git.fedorahosted.org/cgit/${BPN}.git/snapshot/${BPN}-r2-1-45.tar.gz;
+SRC_URI[md5sum] = "2320a77b2fc82078c9d6a59b29234bc8"
+SRC_URI[sha256sum] = 
"a73e2f93625475014066f414873cb9f0a4b1189942d94fade9a03e59be3745b7"
 LICENSE = "PD & MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=100fcfb84512ccc03ffc7d89ac391305"
-S = "${WORKDIR}/${BPN}-r2-1-44"
+S = "${WORKDIR}/${BPN}-r2-1-45"
 do_install() {
 oe_runmake install DESTDIR=${D} sysconfdir=${sysconfdir} mandir=${mandir}
 }
-- 
1.9.1



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


[oe] [meta-oe][PATCH] openwsman: 2.6.0 -> 2.6.2

2016-01-03 Thread Li Xin
Upgrade openwsman from 2.6.0 to 2.6.2.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../openwsman/{openwsman_2.6.0.bb => openwsman_2.6.2.bb}| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-extended/openwsman/{openwsman_2.6.0.bb => 
openwsman_2.6.2.bb} (94%)

diff --git a/meta-oe/recipes-extended/openwsman/openwsman_2.6.0.bb 
b/meta-oe/recipes-extended/openwsman/openwsman_2.6.2.bb
similarity index 94%
rename from meta-oe/recipes-extended/openwsman/openwsman_2.6.0.bb
rename to meta-oe/recipes-extended/openwsman/openwsman_2.6.2.bb
index d89f3c0..bdb7ced 100644
--- a/meta-oe/recipes-extended/openwsman/openwsman_2.6.0.bb
+++ b/meta-oe/recipes-extended/openwsman/openwsman_2.6.2.bb
@@ -12,10 +12,10 @@ SECTION = "Applications/System"
 
 DEPENDS = "curl libxml2 openssl libpam"
 
-SRCREV = "f523bf1390c7ea23946bb9159978a4d7c198f1ba"
-PV = "2.6.0"
+SRCREV = "ed7a119e036c53078d70fd85936d94dc9b9b98be"
+PV = "2.6.2"
 
-SRC_URI = "git://github.com/Openwsman/openwsman.git \
+SRC_URI = "git://github.com/Openwsman/openwsman.git;protocol=http \
file://libssl-is-required-if-eventint-supported.patch \
file://openwsmand.service"
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH] engine-pkcs11: 0.1.8 -> 0.2.0

2016-01-03 Thread Li Xin
Upgrade engine-pkcs11 from 0.1.8 to 0.2.0.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../{engine-pkcs11_0.1.8.bb => engine-pkcs11_0.2.0.bb}| 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/engine-pkcs11/{engine-pkcs11_0.1.8.bb => 
engine-pkcs11_0.2.0.bb} (73%)

diff --git a/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb 
b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb
similarity index 73%
rename from meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb
rename to meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb
index a511cfb..c941cec 100644
--- a/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb
+++ b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb
@@ -6,11 +6,11 @@ call by openssl to a PKCS cards and software for using smart 
cards in PKCS"
 HOMEPAGE = "https://github.com/OpenSC/engine_pkcs11;
 SECTION = "Development/Libraries"
 LICENSE = "LGPLv2.1+"
-LIC_FILES_CHKSUM = "file://doc/README;md5=d2ab6bf8854463fa6bf98f5bb6dfc47c"
+LIC_FILES_CHKSUM = "file://README.md;md5=10308084406d7fede4d932b0cf4e4fa9"
 DEPENDS = "openssl libp11"
 
-SRC_URI = "git://github.com/OpenSC/engine_pkcs11.git"
-SRCREV = "bb775c32dba8cc4b4381a53da7ab5d7b22b7921d"
+SRC_URI = "git://github.com/OpenSC/engine_pkcs11.git;protocol=http"
+SRCREV = "6909d6761c8820e1750fa0bf4fa8532c82f34e35"
 
 S = "${WORKDIR}/git"
 
@@ -25,5 +25,5 @@ do_install_append () {
 rm -f ${D}${libdir}/openssl/engines/engine_pkcs11.la
 }
 
-FILES_${PN} += "${libdir}/openssl/engines/engine_pkcs11.so*"
+FILES_${PN} += "${libdir}/openssl/engines/*"
 FILES_${PN}-dbg += "${libdir}/openssl/engines/.debug/*"
-- 
1.9.1



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


[oe] [meta-oe][PATCH] sblim-sfcb: 1.4.8 -> 1.4.9

2016-01-03 Thread Li Xin
Upgrade sblim-sfcb from 1.4.8 to 1.4.9.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../sblim-sfcb-1.3.15-fix-provider-debugging.patch| 0
 .../sblim-sfcb-1.3.16-maxMsgLen.patch | 0
 .../sblim-sfcb-1.3.16-multilib-man-cfg.patch  | 0
 .../sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch  | 0
 .../sblim-sfcb-1.4.5-service.patch| 0
 .../sblim-sfcb-1.4.8-default-ecdh-curve-name.patch| 0
 .../sblim-sfcb-1.4.9-fix-ftbfs.patch  | 0
 .../sblim-sfcb/{sblim-sfcb_1.4.8.bb => sblim-sfcb_1.4.9.bb}   | 4 ++--
 8 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb-1.4.8 => 
sblim-sfcb-1.4.9}/sblim-sfcb-1.3.15-fix-provider-debugging.patch (100%)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb-1.4.8 => 
sblim-sfcb-1.4.9}/sblim-sfcb-1.3.16-maxMsgLen.patch (100%)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb-1.4.8 => 
sblim-sfcb-1.4.9}/sblim-sfcb-1.3.16-multilib-man-cfg.patch (100%)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb-1.4.8 => 
sblim-sfcb-1.4.9}/sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch (100%)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb-1.4.8 => 
sblim-sfcb-1.4.9}/sblim-sfcb-1.4.5-service.patch (100%)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb-1.4.8 => 
sblim-sfcb-1.4.9}/sblim-sfcb-1.4.8-default-ecdh-curve-name.patch (100%)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb-1.4.8 => 
sblim-sfcb-1.4.9}/sblim-sfcb-1.4.9-fix-ftbfs.patch (100%)
 rename meta-oe/recipes-extended/sblim-sfcb/{sblim-sfcb_1.4.8.bb => 
sblim-sfcb_1.4.9.bb} (95%)

diff --git 
a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.15-fix-provider-debugging.patch
 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.15-fix-provider-debugging.patch
similarity index 100%
rename from 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.15-fix-provider-debugging.patch
rename to 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.15-fix-provider-debugging.patch
diff --git 
a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.16-maxMsgLen.patch
 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.16-maxMsgLen.patch
similarity index 100%
rename from 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.16-maxMsgLen.patch
rename to 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.16-maxMsgLen.patch
diff --git 
a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.16-multilib-man-cfg.patch
 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.16-multilib-man-cfg.patch
similarity index 100%
rename from 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.16-multilib-man-cfg.patch
rename to 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.16-multilib-man-cfg.patch
diff --git 
a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch
 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch
similarity index 100%
rename from 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch
rename to 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch
diff --git 
a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.4.5-service.patch
 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.4.5-service.patch
similarity index 100%
rename from 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.4.5-service.patch
rename to 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.4.5-service.patch
diff --git 
a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.4.8-default-ecdh-curve-name.patch
 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.4.8-default-ecdh-curve-name.patch
similarity index 100%
rename from 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.4.8-default-ecdh-curve-name.patch
rename to 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.4.8-default-ecdh-curve-name.patch
diff --git 
a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.4.9-fix-ftbfs.patch
 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.4.9-fix-ftbfs.patch
similarity index 100%
rename from 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.8/sblim-sfcb-1.4.9-fix-ftbfs.patch
rename to 
meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/sblim-sfcb-1.4.9-fix-ftbfs.patch
diff --git a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.8.bb 
b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb
similar

[oe] [meta-oe][PATCH] nodejs: 0.12.7 -> 0.12.9

2016-01-03 Thread Li Xin
Upgrade nodejs from 0.12.7 to 0.12.9.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../recipes-devtools/nodejs/{nodejs_0.12.7.bb => nodejs_0.12.9.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/nodejs/{nodejs_0.12.7.bb => nodejs_0.12.9.bb} 
(95%)

diff --git a/meta-oe/recipes-devtools/nodejs/nodejs_0.12.7.bb 
b/meta-oe/recipes-devtools/nodejs/nodejs_0.12.9.bb
similarity index 95%
rename from meta-oe/recipes-devtools/nodejs/nodejs_0.12.7.bb
rename to meta-oe/recipes-devtools/nodejs/nodejs_0.12.9.bb
index 41eb5ee..ddea668 100644
--- a/meta-oe/recipes-devtools/nodejs/nodejs_0.12.7.bb
+++ b/meta-oe/recipes-devtools/nodejs/nodejs_0.12.9.bb
@@ -9,8 +9,8 @@ SRC_URI = "http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz \
 file://enable-armv5e-build.patch \
 file://no-registry.patch \
 "
-SRC_URI[md5sum] = "5523ec4347d7fe6b0f6dda1d1c7799d5"
-SRC_URI[sha256sum] = 
"b23d64df051c9c969b0c583f802d5d71de342e53067127a5061415be7e12f39d"
+SRC_URI[md5sum] = "d404d9b81128c1e28cfbda8adcf0a7c3"
+SRC_URI[sha256sum] = 
"35daad301191e5f8dd7e5d2fbb711d081b82d1837d59837b8ee224c256cfe5e4"
 
 S = "${WORKDIR}/node-v${PV}"
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH v2] dialog: 1.2-20150528 -> 1.2-20150920

2016-01-03 Thread Li Xin
Upgrade dialog from 1.2-20150528 to 1.2-20150920.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../dialog/{dialog_1.2-20150528.bb => dialog_1.2-20150920.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-extended/dialog/{dialog_1.2-20150528.bb => 
dialog_1.2-20150920.bb} (86%)

diff --git a/meta-oe/recipes-extended/dialog/dialog_1.2-20150528.bb 
b/meta-oe/recipes-extended/dialog/dialog_1.2-20150920.bb
similarity index 86%
rename from meta-oe/recipes-extended/dialog/dialog_1.2-20150528.bb
rename to meta-oe/recipes-extended/dialog/dialog_1.2-20150920.bb
index 4fb938e..6fef9d6 100644
--- a/meta-oe/recipes-extended/dialog/dialog_1.2-20150528.bb
+++ b/meta-oe/recipes-extended/dialog/dialog_1.2-20150920.bb
@@ -8,8 +8,8 @@ DEPENDS = "ncurses"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
 
-SRC_URI[md5sum] = "593615fb448e001e5b81420473a7354b"
-SRC_URI[sha256sum] = 
"a8cd7a66bdb41e53a3145cbb0eb370c5ce7300fe0e9ad6d3e8d3b9e16ff16418"
+SRC_URI[md5sum] = "2b7c002b0a88ce1e0014af34b6b1ebdc"
+SRC_URI[sha256sum] = 
"c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05"
 
 SRC_URI = "ftp://invisible-island.net/dialog/dialog-${PV}.tgz \
   "
-- 
1.9.1



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


[oe] [meta-oe][PATCH] dfu-util: 0.7 -> 0.8

2016-01-03 Thread Li Xin
Upgrade dfu-util from 0.7 to 0.8.

Modify SRC_URI,since the original one can‘t be opened.
Modify 0001-configure.ac-Don-t-check-for-usbpath.patch,since the datas has been 
changed.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../dfu-util/{dfu-util-native_0.7.bb => dfu-util-native_0.8.bb}   | 0
 .../dfu-util/0001-configure.ac-Don-t-check-for-usbpath.patch  | 6 +++---
 .../recipes-support/dfu-util/{dfu-util_0.7.bb => dfu-util_0.8.bb} | 8 +++-
 3 files changed, 6 insertions(+), 8 deletions(-)
 rename meta-oe/recipes-support/dfu-util/{dfu-util-native_0.7.bb => 
dfu-util-native_0.8.bb} (100%)
 rename meta-oe/recipes-support/dfu-util/{dfu-util_0.7.bb => dfu-util_0.8.bb} 
(54%)

diff --git a/meta-oe/recipes-support/dfu-util/dfu-util-native_0.7.bb 
b/meta-oe/recipes-support/dfu-util/dfu-util-native_0.8.bb
similarity index 100%
rename from meta-oe/recipes-support/dfu-util/dfu-util-native_0.7.bb
rename to meta-oe/recipes-support/dfu-util/dfu-util-native_0.8.bb
diff --git 
a/meta-oe/recipes-support/dfu-util/dfu-util/0001-configure.ac-Don-t-check-for-usbpath.patch
 
b/meta-oe/recipes-support/dfu-util/dfu-util/0001-configure.ac-Don-t-check-for-usbpath.patch
index a583c33..0d48a76 100644
--- 
a/meta-oe/recipes-support/dfu-util/dfu-util/0001-configure.ac-Don-t-check-for-usbpath.patch
+++ 
b/meta-oe/recipes-support/dfu-util/dfu-util/0001-configure.ac-Don-t-check-for-usbpath.patch
@@ -5,7 +5,7 @@ Subject: [PATCH 1/2] configure.ac: Don't check for usbpath
 
 * otherwise it fails to build with -lusb
   | main.o: In function `resolve_device_path':
-  | dfu-util/0.7-r0/dfu-util-0.7/src/main.c:371: undefined reference to 
`usb_path2devnum'
+  | dfu-util/0.8-r0/dfu-util-0.8/src/main.c:371: undefined reference to 
`usb_path2devnum'
   | collect2: error: ld returned 1 exit status
 
 Signed-off-by: Martin Jansa <martin.ja...@gmail.com>
@@ -17,7 +17,7 @@ diff --git a/configure.ac b/configure.ac
 index 700b556..fb58473 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -22,14 +22,13 @@ AS_IF([test x$native_libusb = xno], [
+@@ -20,14 +20,13 @@ AS_IF([test x$native_libusb = xno], [
  PKG_CHECK_MODULES([USB], [libusb-1.0 >= 1.0.0],,
  AC_MSG_ERROR([*** Required libusb-1.0 >= 1.0.0 not installed ***]))
  ])
@@ -28,7 +28,7 @@ index 700b556..fb58473 100644
  
  # Checks for header files.
  AC_HEADER_STDC
--AC_CHECK_HEADERS([usbpath.h windows.h])
+-AC_CHECK_HEADERS([usbpath.h windows.h sysexits.h])
 +AC_CHECK_HEADERS([windows.h])
  
  # Checks for typedefs, structures, and compiler characteristics.
diff --git a/meta-oe/recipes-support/dfu-util/dfu-util_0.7.bb 
b/meta-oe/recipes-support/dfu-util/dfu-util_0.8.bb
similarity index 54%
rename from meta-oe/recipes-support/dfu-util/dfu-util_0.7.bb
rename to meta-oe/recipes-support/dfu-util/dfu-util_0.8.bb
index 7f06f8f..51d00c6 100644
--- a/meta-oe/recipes-support/dfu-util/dfu-util_0.7.bb
+++ b/meta-oe/recipes-support/dfu-util/dfu-util_0.8.bb
@@ -4,16 +4,14 @@ AUTHOR = "Harald Welte <lafo...@openmoko.org>"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 
-S = "${WORKDIR}/git"
 
-SRC_URI = "git://gitorious.org/dfu-util/dfu-util.git \
+SRC_URI = "http://dfu-util.gnumonks.org/releases/${PN}-${PV}.tar.gz \
 file://0001-configure.ac-Don-t-check-for-usbpath.patch \
 "
-SRCREV="a0a3668e0571a9b007f7d62b01e7dcfd7754ce50"
 
 inherit autotools pkgconfig
 
 DEPENDS = "libusb1"
 
-SRC_URI[md5sum] = "1de724551604bce1962960b7a301cc08"
-SRC_URI[sha256sum] = 
"5d253f924fd29bc13054b664bba9aa86b865299971195969478253c1775b7e56"
+SRC_URI[md5sum] = "fc6daf6b0ee57d7e40ffa3e8111023d1"
+SRC_URI[sha256sum] = 
"55cbde9be12a212bd84bce9d1e63941d9a16139ed0d4912401367eba1502f058"
-- 
1.9.1



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


[oe] [meta-oe][PATCH] zabbix: 2.4.5 -> 2.4.7

2016-01-03 Thread Li Xin
Upgrade zabbix from 2.4.5 to 2.4.7.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../recipes-connectivity/zabbix/{zabbix_2.4.5.bb => zabbix_2.4.7.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-connectivity/zabbix/{zabbix_2.4.5.bb => 
zabbix_2.4.7.bb} (95%)

diff --git a/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.5.bb 
b/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb
similarity index 95%
rename from meta-oe/recipes-connectivity/zabbix/zabbix_2.4.5.bb
rename to meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb
index f8314c6..e55c377 100644
--- a/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.5.bb
+++ b/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb
@@ -27,8 +27,8 @@ SRC_URI = 
"http://jaist.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stab
file://0001-Fix-configure.ac.patch \
file://zabbix-agent.service"
 
-SRC_URI[md5sum] = "a82eb0d55d3ca947e10a4a55238f4388"
-SRC_URI[sha256sum] = 
"4e2cf1e4893a45d83379a05e2debabddf16beab324c93e84adc0bb57716fb957"
+SRC_URI[md5sum] = "9f8aeb11d8415585f41c3f2f22566b78"
+SRC_URI[sha256sum] = 
"d2c47b8f5b9b91f18010d54c45de55845d979014a8b3fe4bef64e0b08f8b00da"
 
 inherit autotools-brokensep linux-kernel-base pkgconfig systemd useradd
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH] lemon: 3.5.4 -> 3.7.3

2016-01-03 Thread Li Xin
Upgrade lemon from 3.5.4 to 3.7.3.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb | 7 ---
 meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb | 7 +++
 2 files changed, 7 insertions(+), 7 deletions(-)
 delete mode 100644 meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb
 create mode 100644 meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb

diff --git a/meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb 
b/meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb
deleted file mode 100644
index 7df47d4..000
--- a/meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-require lemon.inc
-
-LIC_FILES_CHKSUM = 
"file://lemon.c;endline=8;md5=c7551a78fa3fdecd96d1ad6761d205ee"
-
-SRC_URI[md5sum] = "f17da840eed792e896c3408d0ce97718"
-SRC_URI[sha256sum] = 
"47daba209bd3bcffa1c5fcd5fdfc4f524eae619b4fa855aeeb1bbbc8bd2bb04f"
-
diff --git a/meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb 
b/meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb
new file mode 100644
index 000..354db17
--- /dev/null
+++ b/meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb
@@ -0,0 +1,7 @@
+require lemon.inc
+
+LIC_FILES_CHKSUM = 
"file://lemon.c;endline=8;md5=c7551a78fa3fdecd96d1ad6761d205ee"
+
+SRC_URI[md5sum] = "5437978aae90350cf984993091e0d695"
+SRC_URI[sha256sum] = 
"dbf352e8fbb74829f5e7a88f9f6ceeb80a709537f668c36e4b6cdfb271309ef6"
+
-- 
1.9.1



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


[oe] [meta-oe][PATCH] xterm: 308 -> 320

2016-01-03 Thread Li Xin
Upgrade xterm from 308 to 320.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} (77%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb 
b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
similarity index 77%
rename from meta-oe/recipes-graphics/xorg-app/xterm_308.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_320.bb
index 9198ca2..c8140d1 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
@@ -2,12 +2,12 @@ require recipes-graphics/xorg-app/xorg-app-common.inc
 SUMMARY = "xterm is the standard terminal emulator for the X Window System"
 DEPENDS = "libxaw xproto xextproto libxext libxau libxpm ncurses"
 
-LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=540cf18ccc16bc3c5fea40d2ab5d8d51"
+LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=ee6435019d00b884cde8d7ba2b318ff0"
 
 SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz;
 
-SRC_URI[md5sum] = "1ec76c1a79a70de4f82c24c527ef4626"
-SRC_URI[sha256sum] = 
"c5bf7377a5bf35e34b7e3a4ab6c848fbc89e8901dd98f8b237662a72bdbfe372"
+SRC_URI[md5sum] = "0d7f0e6390d132ae59876b3870e5783d"
+SRC_URI[sha256sum] = 
"a60dbb574334c081425fa30f011cd9f571e3be7a91e2a84e252461798bce24a7"
 
 EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
  --x-libraries=${STAGING_LIBDIR} \
-- 
1.9.1



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


[oe] [meta-oe][PATCH] postgresql: 9.4.4 -> 9.4.5

2016-01-03 Thread Li Xin
Upgrade postgresql from 9.4.4 to 9.4.5.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../postgresql/{postgresql_9.4.4.bb => postgresql_9.4.5.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/postgresql/{postgresql_9.4.4.bb => 
postgresql_9.4.5.bb} (61%)

diff --git a/meta-oe/recipes-support/postgresql/postgresql_9.4.4.bb 
b/meta-oe/recipes-support/postgresql/postgresql_9.4.5.bb
similarity index 61%
rename from meta-oe/recipes-support/postgresql/postgresql_9.4.4.bb
rename to meta-oe/recipes-support/postgresql/postgresql_9.4.5.bb
index 266206b..54b660e 100644
--- a/meta-oe/recipes-support/postgresql/postgresql_9.4.4.bb
+++ b/meta-oe/recipes-support/postgresql/postgresql_9.4.5.bb
@@ -9,6 +9,6 @@ SRC_URI += "\
 file://not-check-libperl.patch \
 "
 
-SRC_URI[md5sum] = "1fe952c44ed26d7e6a335cf991a9c1c6"
-SRC_URI[sha256sum] = 
"538ed99688d6fdbec6fd166d1779cf4588bf2f16c52304e5ef29f904c43b0013"
+SRC_URI[md5sum] = "8b2e3472a8dc786649b4d02d02e039a0"
+SRC_URI[sha256sum] = 
"b87c50c66b6ea42a9712b5f6284794fabad0616e6ae420cf0f10523be6d94a39"
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH] libp11: 0.2.8 -> 0.3.0

2016-01-03 Thread Li Xin
Upgrade libp11 from 0.2.8 to 0.3.0.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-support/libp11/{libp11_0.2.8.bb => libp11_0.3.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/libp11/{libp11_0.2.8.bb => libp11_0.3.0.bb} 
(81%)

diff --git a/meta-oe/recipes-support/libp11/libp11_0.2.8.bb 
b/meta-oe/recipes-support/libp11/libp11_0.3.0.bb
similarity index 81%
rename from meta-oe/recipes-support/libp11/libp11_0.2.8.bb
rename to meta-oe/recipes-support/libp11/libp11_0.3.0.bb
index 5801484..d97bfc6 100644
--- a/meta-oe/recipes-support/libp11/libp11_0.2.8.bb
+++ b/meta-oe/recipes-support/libp11/libp11_0.3.0.bb
@@ -8,8 +8,8 @@ LICENSE = "LGPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29"
 DEPENDS = "libtool openssl"
 
-SRC_URI = "git://github.com/OpenSC/libp11.git"
-SRCREV = "7d56d89fcad6440d108bbbccfb1ebd958e7eb740"
+SRC_URI = "git://github.com/OpenSC/libp11.git;protocol=http"
+SRCREV = "6f71240991aa831f6fc2cc5431faf6ebec627ed2"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH] lua: 5.3.1 -> 5.3.2

2016-01-03 Thread Li Xin
Upgrade lua from 5.3.1 to 5.3.2.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-devtools/lua/{lua_5.3.1.bb => lua_5.3.2.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/lua/{lua_5.3.1.bb => lua_5.3.2.bb} (90%)

diff --git a/meta-oe/recipes-devtools/lua/lua_5.3.1.bb 
b/meta-oe/recipes-devtools/lua/lua_5.3.2.bb
similarity index 90%
rename from meta-oe/recipes-devtools/lua/lua_5.3.1.bb
rename to meta-oe/recipes-devtools/lua/lua_5.3.2.bb
index a0c993c..3fe8c3f 100644
--- a/meta-oe/recipes-devtools/lua/lua_5.3.1.bb
+++ b/meta-oe/recipes-devtools/lua/lua_5.3.2.bb
@@ -11,8 +11,8 @@ SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz \
file://lua.pc \
 "
 
-SRC_URI[md5sum] = "797adacada8d85761c079390ff1d9961"
-SRC_URI[sha256sum] = 
"072767aad6cc2e62044a66e8562f51770d941e972dc1e4068ba719cd8bffac17"
+SRC_URI[md5sum] = "33278c2ab5ee3c1a875be8d55c1ca2a1"
+SRC_URI[sha256sum] = 
"c740c7bb23a936944e1cc63b7c3c5351a8976d7867c5252c8854f7b2af9da68f"
 
 inherit pkgconfig binconfig
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH] python-simplejson: 2.2.1 -> 3.8.1

2016-01-03 Thread Li Xin
Upgrade python-simplejson from 2.2.1 to 3.8.1.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../{python-simplejson_2.2.1.bb => python-simplejson_3.8.1.bb}  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-simplejson_2.2.1.bb => 
python-simplejson_3.8.1.bb} (68%)

diff --git a/meta-oe/recipes-devtools/python/python-simplejson_2.2.1.bb 
b/meta-oe/recipes-devtools/python/python-simplejson_3.8.1.bb
similarity index 68%
rename from meta-oe/recipes-devtools/python/python-simplejson_2.2.1.bb
rename to meta-oe/recipes-devtools/python/python-simplejson_3.8.1.bb
index 7e42a7c..96c0aef 100644
--- a/meta-oe/recipes-devtools/python/python-simplejson_2.2.1.bb
+++ b/meta-oe/recipes-devtools/python/python-simplejson_3.8.1.bb
@@ -3,14 +3,14 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson;
 SECTION = "devel/python"
 
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=8a9f8dcfcd28c34daa443e5b1d29813b"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e"
 PR = "r1"
 
 SRCNAME = "simplejson"
 
 SRC_URI = 
"http://cheeseshop.python.org/packages/source/s/simplejson/${SRCNAME}-${PV}.tar.gz;
-SRC_URI[md5sum] = "070c6467462bd63306f1756b01df6d70"
-SRC_URI[sha256sum] = 
"e85c5ae24dd9827113893c1dd2c799528195057388096f0fc45ad4b32b378c26"
+SRC_URI[md5sum] = "b8441f1053edd9dc335ded8c7f98a974"
+SRC_URI[sha256sum] = 
"428ac8f3219c78fb04ce05895d5dff9bd813c05a9a7922c53dc879cd32a12493"
 
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH v2] python-simplejson: 2.2.1 -> 3.8.1

2016-01-03 Thread Li Xin
Upgrade python-simplejson from 2.2.1 to 3.8.1.

Modify LIC_FILES_CHKSUM,but the LICENSE has not been changed.
References: https://pypi.python.org/pypi/simplejson

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../{python-simplejson_2.2.1.bb => python-simplejson_3.8.1.bb}  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-simplejson_2.2.1.bb => 
python-simplejson_3.8.1.bb} (68%)

diff --git a/meta-oe/recipes-devtools/python/python-simplejson_2.2.1.bb 
b/meta-oe/recipes-devtools/python/python-simplejson_3.8.1.bb
similarity index 68%
rename from meta-oe/recipes-devtools/python/python-simplejson_2.2.1.bb
rename to meta-oe/recipes-devtools/python/python-simplejson_3.8.1.bb
index 7e42a7c..96c0aef 100644
--- a/meta-oe/recipes-devtools/python/python-simplejson_2.2.1.bb
+++ b/meta-oe/recipes-devtools/python/python-simplejson_3.8.1.bb
@@ -3,14 +3,14 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson;
 SECTION = "devel/python"
 
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=8a9f8dcfcd28c34daa443e5b1d29813b"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e"
 PR = "r1"
 
 SRCNAME = "simplejson"
 
 SRC_URI = 
"http://cheeseshop.python.org/packages/source/s/simplejson/${SRCNAME}-${PV}.tar.gz;
-SRC_URI[md5sum] = "070c6467462bd63306f1756b01df6d70"
-SRC_URI[sha256sum] = 
"e85c5ae24dd9827113893c1dd2c799528195057388096f0fc45ad4b32b378c26"
+SRC_URI[md5sum] = "b8441f1053edd9dc335ded8c7f98a974"
+SRC_URI[sha256sum] = 
"428ac8f3219c78fb04ce05895d5dff9bd813c05a9a7922c53dc879cd32a12493"
 
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH v3] xterm: 308 -> 320

2016-01-03 Thread Li Xin
Upgrade xterm from 308 to 320.

Modify LIC_FILES_CHKSUM,since the date in it has been changed, But the LICENSE 
has not been changed.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} (77%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb 
b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
similarity index 77%
rename from meta-oe/recipes-graphics/xorg-app/xterm_308.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_320.bb
index 9198ca2..c8140d1 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
@@ -2,12 +2,12 @@ require recipes-graphics/xorg-app/xorg-app-common.inc
 SUMMARY = "xterm is the standard terminal emulator for the X Window System"
 DEPENDS = "libxaw xproto xextproto libxext libxau libxpm ncurses"
 
-LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=540cf18ccc16bc3c5fea40d2ab5d8d51"
+LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=ee6435019d00b884cde8d7ba2b318ff0"
 
 SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz;
 
-SRC_URI[md5sum] = "1ec76c1a79a70de4f82c24c527ef4626"
-SRC_URI[sha256sum] = 
"c5bf7377a5bf35e34b7e3a4ab6c848fbc89e8901dd98f8b237662a72bdbfe372"
+SRC_URI[md5sum] = "0d7f0e6390d132ae59876b3870e5783d"
+SRC_URI[sha256sum] = 
"a60dbb574334c081425fa30f011cd9f571e3be7a91e2a84e252461798bce24a7"
 
 EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
  --x-libraries=${STAGING_LIBDIR} \
-- 
1.9.1



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


[oe] [meta][PATCH v2] lemon: 3.5.4 -> 3.7.3

2016-01-03 Thread Li Xin
Upgrade lemon from 3.5.4 to 3.7.3.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-devtools/lemon/{lemon_3.5.4.bb => lemon_3.7.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/lemon/{lemon_3.5.4.bb => lemon_3.7.3.bb} (42%)

diff --git a/meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb 
b/meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb
similarity index 42%
rename from meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb
rename to meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb
index 7df47d4..354db17 100644
--- a/meta-oe/recipes-devtools/lemon/lemon_3.5.4.bb
+++ b/meta-oe/recipes-devtools/lemon/lemon_3.7.3.bb
@@ -2,6 +2,6 @@ require lemon.inc
 
 LIC_FILES_CHKSUM = 
"file://lemon.c;endline=8;md5=c7551a78fa3fdecd96d1ad6761d205ee"
 
-SRC_URI[md5sum] = "f17da840eed792e896c3408d0ce97718"
-SRC_URI[sha256sum] = 
"47daba209bd3bcffa1c5fcd5fdfc4f524eae619b4fa855aeeb1bbbc8bd2bb04f"
+SRC_URI[md5sum] = "5437978aae90350cf984993091e0d695"
+SRC_URI[sha256sum] = 
"dbf352e8fbb74829f5e7a88f9f6ceeb80a709537f668c36e4b6cdfb271309ef6"
 
-- 
1.9.1



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


[oe] [meta-oe][PATCH v2] xterm: 308 -> 320

2016-01-03 Thread Li Xin
Upgrade xterm from 308 to 320.

Modify LIC_FILES_CHKSUM,since the license file has changed.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xterm_308.bb => xterm_320.bb} (77%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb 
b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
similarity index 77%
rename from meta-oe/recipes-graphics/xorg-app/xterm_308.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_320.bb
index 9198ca2..c8140d1 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_308.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_320.bb
@@ -2,12 +2,12 @@ require recipes-graphics/xorg-app/xorg-app-common.inc
 SUMMARY = "xterm is the standard terminal emulator for the X Window System"
 DEPENDS = "libxaw xproto xextproto libxext libxau libxpm ncurses"
 
-LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=540cf18ccc16bc3c5fea40d2ab5d8d51"
+LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=ee6435019d00b884cde8d7ba2b318ff0"
 
 SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz;
 
-SRC_URI[md5sum] = "1ec76c1a79a70de4f82c24c527ef4626"
-SRC_URI[sha256sum] = 
"c5bf7377a5bf35e34b7e3a4ab6c848fbc89e8901dd98f8b237662a72bdbfe372"
+SRC_URI[md5sum] = "0d7f0e6390d132ae59876b3870e5783d"
+SRC_URI[sha256sum] = 
"a60dbb574334c081425fa30f011cd9f571e3be7a91e2a84e252461798bce24a7"
 
 EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
  --x-libraries=${STAGING_LIBDIR} \
-- 
1.9.1



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


[oe] [meta-python][PATCH] python-vcversioner: Error Fix for recipes depend on python-vcversioner.

2015-12-30 Thread Li Xin
If you bitbake recipes which depends on python-vcversioner such as
python-jsonschema. And also your network is not very well.
Error will occur as following:
   Download error on https://pypi.python.org/simple/vcversioner/:
   [Errno -5] No address associated with hostname -- Some packages may not be 
found!
Couldn't find index page for 'vcversioner' (maybe misspelled?)
No local packages or download links found for vcversioner
So add do_compile_append() to fix it.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-vcversioner_2.14.0.0.bb   | 9 +
 1 file changed, 9 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-vcversioner_2.14.0.0.bb 
b/meta-python/recipes-devtools/python/python-vcversioner_2.14.0.0.bb
index f7cd9bb..152034b 100644
--- a/meta-python/recipes-devtools/python/python-vcversioner_2.14.0.0.bb
+++ b/meta-python/recipes-devtools/python/python-vcversioner_2.14.0.0.bb
@@ -12,3 +12,12 @@ S = "${WORKDIR}/vcversioner-${PV}"
 
 inherit setuptools
 
+
+do_compile_append() {
+export BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS}
+${PYTHON} setup.py -q bdist_egg --dist-dir ./
+}
+
+do_install_append() {
+install -m 0644 ${S}/vcversioner*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/
+}
-- 
1.8.4.2



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


[oe] [meta-oe][dizzy][PATCH] networkmanager: add DEPENDS libgudev to avoid build errors.

2015-12-15 Thread Li Xin
configure: error: Package requirements (gudev-1.0 >= 165) were not met:
No package 'gudev-1.0' found

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.8.10.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.8.10.bb 
b/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.8.10.bb
index 8d37c98..2effeb3 100644
--- a/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.8.10.bb
+++ b/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.8.10.bb
@@ -4,7 +4,7 @@ SECTION = "net/misc"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=cbbffd568227ada506640fe950a4823b"
 
-DEPENDS = "libnl dbus dbus-glib udev wireless-tools nss util-linux ppp"
+DEPENDS = "libnl dbus dbus-glib udev wireless-tools nss util-linux ppp 
libgudev"
 
 inherit gnome gettext systemd
 
-- 
1.8.4.2



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


[oe] [meta-perl][PATCH] libnet-dns-perl: remove it from PNBLACKLIST

2015-12-14 Thread Li Xin
Since errors will not occur anymore.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-perl/recipes-perl/libnet/libnet-dns-perl_0.81.bb | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-perl_0.81.bb 
b/meta-perl/recipes-perl/libnet/libnet-dns-perl_0.81.bb
index 312a812..9dc4268 100644
--- a/meta-perl/recipes-perl/libnet/libnet-dns-perl_0.81.bb
+++ b/meta-perl/recipes-perl/libnet/libnet-dns-perl_0.81.bb
@@ -23,6 +23,3 @@ do_compile() {
cpan_do_compile
 }
 BBCLASSEXTEND = "native"
-
-# Bareword "Errno::EINVAL" not allowed while "strict subs" in use at 
/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/lib/perl/5.22.0/IO/Socket.pm
 line 135.
-PNBLACKLIST[libnet-dns-perl] ?= "BROKEN: Fails to build since some changes in 
perl recipe"
-- 
1.8.4.2



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


[oe] [meta-oe][PATCH] sessreg: add a patch to avoid build errors.

2015-12-07 Thread Li Xin
Do not build man dir since it is always build failed.
This is not a good way,but can remove sessreg form PNBLACKLIST.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../sessreg/0001-Makefile.am-Error-Fix.patch   | 33 ++
 meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb |  7 +
 2 files changed, 34 insertions(+), 6 deletions(-)
 create mode 100644 
meta-oe/recipes-graphics/xorg-app/sessreg/0001-Makefile.am-Error-Fix.patch

diff --git 
a/meta-oe/recipes-graphics/xorg-app/sessreg/0001-Makefile.am-Error-Fix.patch 
b/meta-oe/recipes-graphics/xorg-app/sessreg/0001-Makefile.am-Error-Fix.patch
new file mode 100644
index 000..2072853
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-app/sessreg/0001-Makefile.am-Error-Fix.patch
@@ -0,0 +1,33 @@
+From 088bb4cef2c93bef312b076a8c7a3c798cbf2f19 Mon Sep 17 00:00:00 2001
+From: daicy <da...@cn.fujitsu.com>
+Date: Tue, 8 Dec 2015 11:45:01 +0900
+Subject: [PATCH] Makefile.am: Error Fix
+
+Do not compile man dir since error always occur.
+ | sed: file filenames.sed line 3: unterminated `s' command
+ | make[2]: *** [sessreg.1] Error 1
+It is not a good way.But can remove it from PNBLACKLIST.
+
+Upstream-Status: pending
+
+Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
+---
+ Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index cddffd0..94f7048 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -18,7 +18,7 @@
+ #  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+ #  PERFORMANCE OF THIS SOFTWARE.
+ 
+-SUBDIRS = man
++#SUBDIRS = man
+ bin_PROGRAMS = sessreg
+ 
+ AM_CFLAGS = $(CWARNFLAGS) $(SESSREG_CFLAGS)
+-- 
+1.8.4.2
+
diff --git a/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb 
b/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb
index 2ae25b3..2e25b7d 100644
--- a/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb
+++ b/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb
@@ -3,11 +3,6 @@ require recipes-graphics/xorg-app/xorg-app-common.inc
 SUMMARY = "a simple program for managing utmp/wtmp entries"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d938a70c8280c265a1ccd2954365d185"
-
+SRC_URI += "file://0001-Makefile.am-Error-Fix.patch"
 SRC_URI[md5sum] = "e238c89dabc566e1835e1ecb61b605b9"
 SRC_URI[sha256sum] = 
"551177657835e0902b5eee7b19713035beaa1581bbd3c6506baa553e751e017c"
-
-# | sed: file filenames.sed line 3: unterminated `s' command
-# | make[2]: *** [sessreg.1] Error 1
-# | make[2]: Leaving directory 
`/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/sessreg/1.1.0-r0/build/man'
-PNBLACKLIST[sessreg] ?= "BROKEN: fails to generate man pages"
-- 
1.8.4.2



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


[oe] [meta-networking][PATCH] opensaf: remove unused service file

2015-11-01 Thread Li xin
From: Li Xin <lixin.f...@cn.fujitsu.com>

Upstream ships systemd service file plmcboot.service and plmcd.service now,
so we don't need this anymore.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../recipes-daemons/opensaf/opensaf/plmcboot.service  | 13 -
 .../recipes-daemons/opensaf/opensaf/plmcd.service | 15 ---
 meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb  |  6 +-
 3 files changed, 1 insertion(+), 33 deletions(-)
 delete mode 100644 
meta-networking/recipes-daemons/opensaf/opensaf/plmcboot.service
 delete mode 100644 
meta-networking/recipes-daemons/opensaf/opensaf/plmcd.service

diff --git a/meta-networking/recipes-daemons/opensaf/opensaf/plmcboot.service 
b/meta-networking/recipes-daemons/opensaf/opensaf/plmcboot.service
deleted file mode 100644
index 76ec73a..000
--- a/meta-networking/recipes-daemons/opensaf/opensaf/plmcboot.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=PLMCBOOT Program
-After=network.target
-ConditionPathExists=@SYSCONFDIR@/plmcd.conf
-
-[Service]
-Type=oneshot
-ExecStart=@SBINDIR@/plmcd -c @SYSCONFDIR@/plmcd.conf -s
-ExecStop=@SBINDIR@/plmcd -c @SYSCONFDIR@/plmcd.conf -x
-RemainAfterExit=yes
-
-[Install]
-WantedBy=multi-user.target
diff --git a/meta-networking/recipes-daemons/opensaf/opensaf/plmcd.service 
b/meta-networking/recipes-daemons/opensaf/opensaf/plmcd.service
deleted file mode 100644
index 1d48e77..000
--- a/meta-networking/recipes-daemons/opensaf/opensaf/plmcd.service
+++ /dev/null
@@ -1,15 +0,0 @@
-[Unit]
-Description=Plmcd Daemon
-Requires=plmcboot.service
-After=network.target plmcboot.service
-ConditionPathExists=@SYSCONFDIR@/plmcd.conf
-
-[Service]
-Type=forking
-ExecStart=@SBINDIR@/plmcd -c @SYSCONFDIR@/plmcd.conf
-ExecStartPost=/bin/touch /var/lock/subsys/plmcd
-ExecStopPost=/bin/rm -rf /var/lock/subsys/plmcd
-PIDFile=/var/run/plmcd.pid
-
-[Install]
-WantedBy=multi-user.target
diff --git a/meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb 
b/meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb
index 28f4c00..9084524 100644
--- a/meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb
+++ b/meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb
@@ -15,8 +15,6 @@ inherit autotools useradd systemd pkgconfig
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/releases/${BPN}-${PV}.tar.gz \
file://install-samples-from-srcdir.patch \
-   file://plmcd.service \
-   file://plmcboot.service \
file://0001-plmcd-error-fix.patch \
file://Revert_imma_client_node_replyPending_to_unsigned_char.patch \
file://Fix_GCC_5.1.0_compiler_warning.patch \
@@ -65,8 +63,6 @@ do_install_append() {
 install -d ${D}${systemd_unitdir}/system
 install -m 0644 
${B}/osaf/services/infrastructure/nid/config/opensafd.service \
 ${D}${systemd_unitdir}/system
-install -m 644 ${WORKDIR}/plmc*.service ${D}/${systemd_unitdir}/system
-sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' 
${D}${systemd_unitdir}/system/plmc*.service
-sed -i -e 's#@SBINDIR@#${sbindir}#g' 
${D}${systemd_unitdir}/system/plmc*.service
+install -m 0644 ${B}/contrib/plmc/config/*.service 
${D}/${systemd_unitdir}/system
 
 }
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH] net-snmp: Modify snmpd.service

2015-10-25 Thread Li xin
From: Li Xin <lixin.f...@cn.fujitsu.com>

Add "-a" parameter in snmpd.service,it is needed to address logs.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-networking/recipes-protocols/net-snmp/net-snmp/snmpd.service | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp/snmpd.service 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/snmpd.service
index 3b336a0..447683f 100644
--- a/meta-networking/recipes-protocols/net-snmp/net-snmp/snmpd.service
+++ b/meta-networking/recipes-protocols/net-snmp/net-snmp/snmpd.service
@@ -6,7 +6,7 @@ After=syslog.target network.target
 Type=notify
 Environment=OPTIONS="-Ls0-6d"
 EnvironmentFile=-/etc/default/snmpd
-ExecStart=/usr/sbin/snmpd $OPTIONS -f
+ExecStart=/usr/sbin/snmpd $OPTIONS -a -f
 ExecReload=/bin/kill -HUP $MAINPID
 
 [Install]
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] lmsensors-config: add configuration file sensord

2015-10-19 Thread Li xin
From: Li Xin <lixin.f...@cn.fujitsu.com>

It is needed to start sensord.service.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../recipes-support/lm_sensors/lmsensors-config/sensord  | 16 
 .../recipes-support/lm_sensors/lmsensors-config_1.0.bb   |  5 +++--
 2 files changed, 19 insertions(+), 2 deletions(-)
 create mode 100644 meta-oe/recipes-support/lm_sensors/lmsensors-config/sensord

diff --git a/meta-oe/recipes-support/lm_sensors/lmsensors-config/sensord 
b/meta-oe/recipes-support/lm_sensors/lmsensors-config/sensord
new file mode 100644
index 000..a58362e
--- /dev/null
+++ b/meta-oe/recipes-support/lm_sensors/lmsensors-config/sensord
@@ -0,0 +1,16 @@
+# configuration for hardware sensors monitoring daemon
+# in intervals use suffix "m" for minutes, "s" for seconds, "h" for hours
+# 0 means turning facility off
+
+# interval between scanning alarms
+INTERVAL=1m
+
+# interval between logging
+LOG_INTERVAL=20m
+
+# interval between RRD logging
+# RRD_INTERVAL=1m
+
+# RRD db location
+# RRD_LOGFILE=/var/log/sensors.rrd
+
diff --git a/meta-oe/recipes-support/lm_sensors/lmsensors-config_1.0.bb 
b/meta-oe/recipes-support/lm_sensors/lmsensors-config_1.0.bb
index df834a3..4f632cb 100644
--- a/meta-oe/recipes-support/lm_sensors/lmsensors-config_1.0.bb
+++ b/meta-oe/recipes-support/lm_sensors/lmsensors-config_1.0.bb
@@ -10,6 +10,7 @@ SRC_URI = "file://fancontrol \
file://sensord.cgi \
file://sensord.conf \
file://sensors.conf \
+   file://sensord \
 "
 S = "${WORKDIR}"
 
@@ -17,9 +18,9 @@ RDEPENDS_${PN}-dev = ""
 
 do_install() {
 # Install fancontrol configuration file
-install -d ${D}${sysconfdir}
+install -d ${D}${sysconfdir}/sysconfig
 install -m 0644 ${WORKDIR}/fancontrol ${D}${sysconfdir}
-
+install -m 0644 ${WORKDIR}/sensord ${D}${sysconfdir}/sysconfig
 # Install libsensors configuration file
 install -d ${D}${sysconfdir}/sensors.d
 install -m 0644 ${WORKDIR}/sensors.conf ${D}${sysconfdir}/sensors.d
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] lmsensors: remove unused service file

2015-10-19 Thread Li xin
From: Li Xin <lixin.f...@cn.fujitsu.com>

* Upstream ships a systemd service file sensord.service now,
  so we don't need this anymore.
* Install lm_sensors.service and fancontrol.service to support systemd systems.
  lm_sensors.service: Initialize hardware monitoring sensors.
  fancontrol.service: Start fan control, if configured.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 meta-oe/recipes-support/lm_sensors/lmsensors/sensord.service | 11 ---
 meta-oe/recipes-support/lm_sensors/lmsensors_3.4.0.bb|  9 ++---
 2 files changed, 2 insertions(+), 18 deletions(-)
 delete mode 100644 meta-oe/recipes-support/lm_sensors/lmsensors/sensord.service

diff --git a/meta-oe/recipes-support/lm_sensors/lmsensors/sensord.service 
b/meta-oe/recipes-support/lm_sensors/lmsensors/sensord.service
deleted file mode 100644
index 4836d8f..000
--- a/meta-oe/recipes-support/lm_sensors/lmsensors/sensord.service
+++ /dev/null
@@ -1,11 +0,0 @@
-[Unit]
-Description=Sensor Information Logging
-
-[Service]
-Type=forking
-EnvironmentFile=-@SYSCONFDIR@/sensord.conf
-PIDFile=@LOCALSTATEDIR@/run/sensord.pid
-ExecStart=@SBINDIR@/sensord $SENSORD_ARGS
-
-[Install]
-WantedBy=multi-user.target
diff --git a/meta-oe/recipes-support/lm_sensors/lmsensors_3.4.0.bb 
b/meta-oe/recipes-support/lm_sensors/lmsensors_3.4.0.bb
index 66e8923..a483fb3 100644
--- a/meta-oe/recipes-support/lm_sensors/lmsensors_3.4.0.bb
+++ b/meta-oe/recipes-support/lm_sensors/lmsensors_3.4.0.bb
@@ -10,7 +10,6 @@ DEPENDS = "sysfsutils virtual/libiconv bison-native 
flex-native rrdtool"
 SRC_URI = 
"http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${PV}.tar.bz2 \
file://fancontrol.init \
file://sensord.init \
-   file://sensord.service \
 "
 SRC_URI[md5sum] = "c03675ae9d43d60322110c679416901a"
 SRC_URI[sha256sum] = 
"e0579016081a262dd23eafe1d22b41ebde78921e73a1dcef71e05e424340061f"
@@ -26,7 +25,7 @@ INITSCRIPT_PARAMS_${PN}-fancontrol = "defaults 66"
 INITSCRIPT_PARAMS_${PN}-sensord = "defaults 67"
 
 SYSTEMD_PACKAGES = "${PN}-sensord"
-SYSTEMD_SERVICE_${PN}-sensord = "sensord.service"
+SYSTEMD_SERVICE_${PN}-sensord = "sensord.service lm_sensors.service 
fancontrol.service"
 SYSTEMD_AUTO_ENABLE = "disable"
 
 S = "${WORKDIR}/lm_sensors-${PV}"
@@ -58,11 +57,7 @@ do_install() {
 # Insall sensord service script
 if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
 install -d ${D}${systemd_unitdir}/system
-install -m 0644 ${WORKDIR}/sensord.service 
${D}${systemd_unitdir}/system
-
-sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' 
${D}${systemd_unitdir}/system/sensord.service
-sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' 
${D}${systemd_unitdir}/system/sensord.service
-sed -i -e 's#@SBINDIR@#${sbindir}#g' 
${D}${systemd_unitdir}/system/sensord.service
+install -m 0644 ${S}/prog/init/*.service ${D}${systemd_unitdir}/system
 fi
 }
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] iptraf: add new recipe

2015-10-08 Thread Li xin
From: Li Xin <lixin.f...@cn.fujitsu.com>

IPTraf is a console-based network statistics utility for Linux.

Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
---
 .../0001-src-Fix-error-in-cross-compile.patch  | 138 +
 meta-oe/recipes-devtools/iptraf/iptraf_3.0.0.bb|  33 +
 2 files changed, 171 insertions(+)
 create mode 100644 
meta-oe/recipes-devtools/iptraf/iptraf/0001-src-Fix-error-in-cross-compile.patch
 create mode 100644 meta-oe/recipes-devtools/iptraf/iptraf_3.0.0.bb

diff --git 
a/meta-oe/recipes-devtools/iptraf/iptraf/0001-src-Fix-error-in-cross-compile.patch
 
b/meta-oe/recipes-devtools/iptraf/iptraf/0001-src-Fix-error-in-cross-compile.patch
new file mode 100644
index 000..291ed31
--- /dev/null
+++ 
b/meta-oe/recipes-devtools/iptraf/iptraf/0001-src-Fix-error-in-cross-compile.patch
@@ -0,0 +1,138 @@
+From 27910ea19260b7f7a3f9c0465addd1dea80cf3bd Mon Sep 17 00:00:00 2001
+From: Li Xin <lixin.f...@cn.fujitsu.com>
+Date: Thu, 8 Oct 2015 15:11:17 +0900
+Subject: [PATCH] src: Fix error in cross-compile
+
+The errors are like this:
+tcptable.h:26:25: fatal error: linux/if_tr.h: No such file or directory
+ld: cannot find -ltextbox
+
+Upstream-Status: pending
+
+Signed-off-by: Li Xin <lixin.f...@cn.fujitsu.com>
+---
+ src/Makefile | 2 +-
+ src/hostmon.c| 2 +-
+ src/install.sh   | 4 ++--
+ src/othptab.c| 2 +-
+ src/packet.c | 2 +-
+ src/tcptable.h   | 2 +-
+ src/tr.c | 2 +-
+ support/Makefile | 3 +--
+ 8 files changed, 9 insertions(+), 10 deletions(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index 2043c2d..0f77bea 100644
+--- a/src/Makefile
 b/src/Makefile
+@@ -39,7 +39,7 @@ LDOPTS   = #-static
+ # you may want to change this to point to your ncurses include directory
+ # if the ncurses include files are not in the default location.
+ 
+-INCLUDEDIR= -I/usr/include/ncurses -I../support
++INCLUDEDIR=  -I../support
+ 
+ # You can uncomment this one to disable the backspace key in input fields.
+ # This means you must use the Del key or Ctrl+H combination to erase the
+diff --git a/src/hostmon.c b/src/hostmon.c
+index 14df2c8..6571562 100644
+--- a/src/hostmon.c
 b/src/hostmon.c
+@@ -31,7 +31,7 @@ details.
+ #include 
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #include 
+ #include 
+diff --git a/src/install.sh b/src/install.sh
+index d2fd360..36d3516 100755
+--- a/src/install.sh
 b/src/install.sh
+@@ -23,9 +23,9 @@ echo
+ echo "*** Installing executable programs and preparing work directories"
+ echo
+ echo ">>> Installing iptraf in $TARGET"
+-$INSTALL -m 0700 -o root -g root -s iptraf $TARGET
++$INSTALL -m 0700 -o root -g root  iptraf $TARGET
+ echo ">>> Installing rvnamed in $TARGET"
+-$INSTALL -m 0700 -o root -g root -s rvnamed $TARGET
++$INSTALL -m 0700 -o root -g root  rvnamed $TARGET
+ 
+ if [ ! -d $WORKDIR ]; then
+ echo ">>> Creating IPTraf work directory $WORKDIR"
+diff --git a/src/othptab.c b/src/othptab.c
+index 97771d1..a8bb536 100644
+--- a/src/othptab.c
 b/src/othptab.c
+@@ -18,7 +18,7 @@ details.
+ 
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #include 
+ #include "arphdr.h"
+diff --git a/src/packet.c b/src/packet.c
+index 33fdf2a..1e2b81b 100644
+--- a/src/packet.c
 b/src/packet.c
+@@ -36,7 +36,7 @@ details.
+ #include 
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #include 
+ #include 
+diff --git a/src/tcptable.h b/src/tcptable.h
+index 3e17793..d1380b5 100644
+--- a/src/tcptable.h
 b/src/tcptable.h
+@@ -23,7 +23,7 @@
+ #include 
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #include 
+ #include 
+diff --git a/src/tr.c b/src/tr.c
+index 40c9e63..11f8045 100644
+--- a/src/tr.c
 b/src/tr.c
+@@ -7,7 +7,7 @@
+  */
+ 
+ #include 
+-#include 
++#include 
+ #include 
+ 
+ unsigned int get_tr_ip_offset(unsigned char *pkt)
+diff --git a/support/Makefile b/support/Makefile
+index 114bfc3..c962c09 100644
+--- a/support/Makefile
 b/support/Makefile
+@@ -1,4 +1,3 @@
+-INCLUDEDIR= -I/usr/include/ncurses
+ 
+ OBJS  = input.o menurt.o listbox.o winops.o labels.o \
+   msgboxes.o txbox.o
+@@ -12,7 +11,7 @@ libtextbox.a: $(OBJS)
+ # gcc -shared -o libtextbox.so $(OBJS)
+ 
+ %.o: %.c *.h
+-  gcc -O2 -g -Wall -fPIC $(INCLUDEDIR) -c -o $*.o $<
++  ${CC} -O2 -g -Wall -fPIC  -c -o $*.o $<
+ 
+ clean:
+   rm -rf *.o *~ libtextbox.a libtextbox.so
+-- 
+1.8.4.2
+
diff --git a/meta-oe/recipes-devtools/iptraf/iptraf_3.0.0.bb 
b/meta-oe/recipes-devtools/iptraf/iptraf_3.0.0.bb
new file mode 100644
index 000..7b8f0db
--- /dev/null
+++ b/meta-oe/recipes-devtools/iptraf/iptraf_3.0.0.bb
@@ -0,0 +1,33 @@
+DESCRIPTION = "IPTraf is a console-based network statistics utility for Linux. 
\
+It gathers a variety of figures such as TCP connection packet and byte

Re: [oe] [meta-networking][PATCH] postfix: Add Linux 4.0 Support

2015-08-28 Thread Li, Xin
Hi, Martin,

Please remove this commit from master-next 
http://cgit.openembedded.org/meta-openembedded/commit/?h=master-nextid=0de0c33eb5233f6aa673664570bd40c57c10d826
 ,
Since I will upgrade postfix to 3.0.2, and this patch is not needed anymore.

Regards,
Li

-Original Message-
From: Li, Xin/李 欣
Sent: Wednesday, August 26, 2015 6:21 PM
To: openembedded-devel@lists.openembedded.org
Cc: gyu...@freemail.hu; Li, Xin/李 欣
Subject: [oe][meta-networking][PATCH] postfix: Add Linux 4.0 Support

Modify makedefs.patch to make it compilable on 4.0 kernel.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-daemons/postfix/files/makedefs.patch  | 15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/meta-networking/recipes-daemons/postfix/files/makedefs.patch
b/meta-networking/recipes-daemons/postfix/files/makedefs.patch
index 98d5f7e..c537441 100644
--- a/meta-networking/recipes-daemons/postfix/files/makedefs.patch
+++ b/meta-networking/recipes-daemons/postfix/files/makedefs.patch
@@ -1,4 +1,4 @@
-From 4f49e2ce420fb3c17415937530493158ef312733 Mon Sep 17 00:00:00 2001
+From 44cb626e218bf68647994e94b598d5f45d473411 Mon Sep 17 00:00:00 2001
 From: Li xin lixin.f...@cn.fujitsu.com
 Date: Fri, 19 Jun 2015 16:45:54 +0900
 Subject: [PATCH] 1)remove RANLIB, SYSLIBS, AR and get them from env.
@@ -14,11 +14,11 @@ Upstreamstatus: Inappropriate [embedded specific]

 Signed-off-by: Yao Zhao yao.z...@windriver.com
 ---
- makedefs | 27 +++
- 1 file changed, 11 insertions(+), 16 deletions(-)
+ makedefs | 29 -
+ 1 file changed, 12 insertions(+), 17 deletions(-)

 diff --git a/makedefs b/makedefs
-index 8b84e47..893fb0d 100644
+index 8b84e47..5c12206 100644
 --- a/makedefs
 +++ b/makedefs
 @@ -170,9 +170,6 @@ echo # pie=$pie
@@ -80,7 +80,12 @@ index 8b84e47..893fb0d 100644
  rm -f makedefs.test makedefs.test.[co]
  fi;;
   esac
-@@ -504,12 +499,12 @@ EOF
+@@ -500,16 +495,16 @@ EOF
+  : ${SHLIB_ENV=LD_LIBRARY_PATH=`pwd`/lib}
+  : ${PLUGIN_LD=${CC-gcc} -shared}
+  ;;
+-Linux.3*)SYSTYPE=LINUX3
++Linux.3*|Linux.4*) SYSTYPE=LINUX3
   case $CCARGS in
*-DNO_DB*) ;;
*-DHAS_DB*) ;;
--
1.8.4.2

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


[oe] [meta-networking][PATCH] postfix: 3.0.1 - 3.0.2

2015-08-28 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-daemons/postfix/{postfix_3.0.1.bb = postfix_3.0.2.bb}   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-networking/recipes-daemons/postfix/{postfix_3.0.1.bb = 
postfix_3.0.2.bb} (12%)

diff --git a/meta-networking/recipes-daemons/postfix/postfix_3.0.1.bb 
b/meta-networking/recipes-daemons/postfix/postfix_3.0.2.bb
similarity index 12%
rename from meta-networking/recipes-daemons/postfix/postfix_3.0.1.bb
rename to meta-networking/recipes-daemons/postfix/postfix_3.0.2.bb
index 04b81c8..c722658 100644
--- a/meta-networking/recipes-daemons/postfix/postfix_3.0.1.bb
+++ b/meta-networking/recipes-daemons/postfix/postfix_3.0.2.bb
@@ -1,5 +1,4 @@
 require postfix.inc
 
-
-SRC_URI[md5sum] = 3ec1416e7d4fba9566297c8fcf7a348c
-SRC_URI[sha256sum] = 
cd2bd6447fe3368bb1a39f482f8dd1eec87c63067a0eb75f9aec8e4eadd21328
+SRC_URI[md5sum] = d1dc2c23011c222129db3d91aa4f312a
+SRC_URI[sha256sum] = 
68256314202f5f0f24022d64f7ac664d28fa1394d07c84a37c3fc7a2d040be80
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] networkmanager: disable service by default and WARNING Fix

2015-08-27 Thread Li xin
* Disable NetworkManager.service by default,otherwise,the
  Root file system using the method of NFS mount can't boot successfully.
  Also it is disabled on Fedora.

* WARNING Fix:
  WARNING: QA Issue: networkmanager: Files/directories were installed but not 
shipped in any package:
  /run
  /run/NetworkManager
  Please set FILES such that these items are packaged. Alternatively if they 
are unneeded,
  avoid installing them or delete them within do_install. [installed-vs-shipped]

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.4.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.4.bb 
b/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.4.bb
index 62debe9..4e2ca28 100644
--- a/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.4.bb
+++ b/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.4.bb
@@ -58,6 +58,7 @@ FILES_${PN} +=  \
 ${datadir}/dbus-1 \
 ${base_libdir}/udev/* \
 ${systemd_unitdir}/system \
+/run \
 
 
 RRECOMMENDS_${PN} += iptables dnsmasq
@@ -84,3 +85,4 @@ FILES_${PN}-tests =  \
 FILES_${PN}-bash-completion = ${datadir}/bash-completion
 
 SYSTEMD_SERVICE_${PN} = NetworkManager.service
+SYSTEMD_AUTO_ENABLE = disable
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH] postfix: Add Linux 4.0 Support

2015-08-26 Thread Li xin
Modify makedefs.patch to make it compilable on 4.0 kernel.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-daemons/postfix/files/makedefs.patch  | 15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/meta-networking/recipes-daemons/postfix/files/makedefs.patch 
b/meta-networking/recipes-daemons/postfix/files/makedefs.patch
index 98d5f7e..c537441 100644
--- a/meta-networking/recipes-daemons/postfix/files/makedefs.patch
+++ b/meta-networking/recipes-daemons/postfix/files/makedefs.patch
@@ -1,4 +1,4 @@
-From 4f49e2ce420fb3c17415937530493158ef312733 Mon Sep 17 00:00:00 2001
+From 44cb626e218bf68647994e94b598d5f45d473411 Mon Sep 17 00:00:00 2001
 From: Li xin lixin.f...@cn.fujitsu.com
 Date: Fri, 19 Jun 2015 16:45:54 +0900
 Subject: [PATCH] 1)remove RANLIB, SYSLIBS, AR and get them from env.
@@ -14,11 +14,11 @@ Upstreamstatus: Inappropriate [embedded specific]
 
 Signed-off-by: Yao Zhao yao.z...@windriver.com
 ---
- makedefs | 27 +++
- 1 file changed, 11 insertions(+), 16 deletions(-)
+ makedefs | 29 -
+ 1 file changed, 12 insertions(+), 17 deletions(-)
 
 diff --git a/makedefs b/makedefs
-index 8b84e47..893fb0d 100644
+index 8b84e47..5c12206 100644
 --- a/makedefs
 +++ b/makedefs
 @@ -170,9 +170,6 @@ echo # pie=$pie
@@ -80,7 +80,12 @@ index 8b84e47..893fb0d 100644
   rm -f makedefs.test makedefs.test.[co]
   fi;;
esac
-@@ -504,12 +499,12 @@ EOF
+@@ -500,16 +495,16 @@ EOF
+   : ${SHLIB_ENV=LD_LIBRARY_PATH=`pwd`/lib}
+   : ${PLUGIN_LD=${CC-gcc} -shared}
+   ;;
+-Linux.3*) SYSTYPE=LINUX3
++Linux.3*|Linux.4*) SYSTYPE=LINUX3
case $CCARGS in
 *-DNO_DB*) ;;
 *-DHAS_DB*) ;;
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH] net-snmp: upgrade 5.7.2.1 - 5.7.3

2015-08-21 Thread Li xin
* Dropped backported patches
  --ifmib.patch
  --0001-Added-checks-for-printing-variables-with-wrong-types.patch
  --0001-Fix-CVE-2014-2285.patch
  --net-snmp-5.7.2-fix-mib-timeout-values.patch

* Update patches
  --dont-return-incompletely-parsed-varbinds.patch
  --systemd-support.patch

* Add a new patch to avoid build Errors.
  --0001-config_os_headers-Error-Fix.patch

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-protocols/net-snmp/files/ifmib.patch   |  66 ---
 ...s-for-printing-variables-with-wrong-types.patch | 455 -
 .../net-snmp/net-snmp/0001-Fix-CVE-2014-2285.patch |  49 ---
 .../0001-config_os_headers-Error-Fix.patch |  37 ++
 .../dont-return-incompletely-parsed-varbinds.patch |  55 +--
 .../net-snmp-5.7.2-fix-mib-timeout-values.patch|  56 ---
 .../net-snmp/net-snmp/systemd-support.patch| 178 
 .../{net-snmp_5.7.2.1.bb = net-snmp_5.7.3.bb} |  12 +-
 8 files changed, 176 insertions(+), 732 deletions(-)
 delete mode 100644 meta-networking/recipes-protocols/net-snmp/files/ifmib.patch
 delete mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Added-checks-for-printing-variables-with-wrong-types.patch
 delete mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Fix-CVE-2014-2285.patch
 create mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/0001-config_os_headers-Error-Fix.patch
 delete mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/net-snmp-5.7.2-fix-mib-timeout-values.patch
 rename meta-networking/recipes-protocols/net-snmp/{net-snmp_5.7.2.1.bb = 
net-snmp_5.7.3.bb} (93%)

diff --git a/meta-networking/recipes-protocols/net-snmp/files/ifmib.patch 
b/meta-networking/recipes-protocols/net-snmp/files/ifmib.patch
deleted file mode 100644
index 859c52c..000
--- a/meta-networking/recipes-protocols/net-snmp/files/ifmib.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-Signed-off-by: Jack Mitchell j...@embed.me.uk
-Upstream-Status: Pending
-Bug-Report: http://sourceforge.net/p/net-snmp/bugs/2449/
-
-diff --git a/agent/mibgroup/if-mib/data_access/interface_linux.c 
b/agent/mibgroup/if-mib/data_access/interface_linux.c
-index 3419811..d6eb91a 100644
 a/agent/mibgroup/if-mib/data_access/interface_linux.c
-+++ b/agent/mibgroup/if-mib/data_access/interface_linux.c
-@@ -18,7 +18,31 @@ netsnmp_feature_require(interface_ioctl_flags_set)
- 
- #ifdef HAVE_PCI_LOOKUP_NAME
- #include pci/pci.h
-+#include setjmp.h
- static struct pci_access *pci_access;
-+
-+/* Avoid letting libpci call exit(1) when no PCI bus is available. */
-+static int do_longjmp =0;
-+static jmp_buf err_buf;
-+static void
-+netsnmp_pci_error(char *msg, ...)
-+{
-+va_list args;
-+char *buf;
-+int buflen;
-+
-+va_start(args, msg);
-+buflen = strlen(pcilib: )+strlen(msg)+2;
-+buf = malloc(buflen);
-+snprintf(buf, buflen, pcilib: %s\n, msg);
-+snmp_vlog(LOG_ERR, buf, args);
-+free(buf);
-+va_end(args);
-+if (do_longjmp)
-+  longjmp(err_buf, 1);
-+else
-+  exit(1);
-+}
- #endif
- 
- #ifdef HAVE_LINUX_ETHTOOL_H
-@@ -147,10 +171,22 @@ netsnmp_arch_interface_init(void)
- 
- #ifdef HAVE_PCI_LOOKUP_NAME
- pci_access = pci_alloc();
--if (pci_access)
-+if (!pci_access) {
-+  snmp_log(LOG_ERR, pcilib: pci_alloc failed\n);
-+  return;
-+}
-+
-+pci_access-error = netsnmp_pci_error;
-+
-+do_longjmp = 1;
-+if (setjmp(err_buf)) {
-+pci_cleanup(pci_access);
-+  snmp_log(LOG_ERR, pcilib: pci_init failed\n);
-+pci_access = NULL;
-+}
-+else if (pci_access)
-   pci_init(pci_access);
--else
--  snmp_log(LOG_ERR, Unable to create pci access method\n);
-+do_longjmp = 0;
- #endif
- }
- 
diff --git 
a/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Added-checks-for-printing-variables-with-wrong-types.patch
 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Added-checks-for-printing-variables-with-wrong-types.patch
deleted file mode 100644
index 30374cf..000
--- 
a/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Added-checks-for-printing-variables-with-wrong-types.patch
+++ /dev/null
@@ -1,455 +0,0 @@
-From 7f4a7b891332899cea26e95be0337aae01648742 Mon Sep 17 00:00:00 2001
-From: Jan Safranek jsafra...@users.sourceforge.net
-Date: Thu, 31 Jul 2014 13:46:49 +0200
-Subject: [PATCH] Added checks for printing variables with wrong types.
-
-Upstream-Status: Backport
-
-When -OQ command line argument is used, variable formatter preffers the type
-of the varible parsed from a MIB file instead of checking type of the variable
-as parsed from SNMP message.
-
-This can lead to crashes when incoming packets contains a variable with
-NULL type, while the MIB says the variable should be non-NULL, like Integer.
-The formatter then tries to interpret the NULL (from packet) as Integer (from
-MIB file).
-
-Signed-off-by: Jan Safranek jsafra...@users.sourceforge.net

- snmplib/mib.c |  270

[oe] [meta-networking][PATCH] drbd: upgrade 8.4.4 - 8.9.3

2015-08-20 Thread Li xin
* Change recipe name from drbd to drbd-utils,since
  after 8.4.5, the drbd userland tools had been moved to
  their own repository at http://git.linbit.com/drbd-utils.git
  (tarball at http://oss.linbit.com/drbd)

* Add 0001-Makefile.in-don-t-compile-documentation.patch to
  avoid build Errors.

* Dropped drbd.service,since it is provided by Upstream.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 ...1-Makefile.in-don-t-compile-documentation.patch | 38 ++
 .../drbd/{drbd_8.4.4.bb = drbd-utils_8.9.3.bb}| 35 +++-
 .../recipes-support/drbd/drbd/drbd.service | 12 ---
 3 files changed, 49 insertions(+), 36 deletions(-)
 create mode 100644 
meta-networking/recipes-support/drbd/drbd-utils/0001-Makefile.in-don-t-compile-documentation.patch
 rename meta-networking/recipes-support/drbd/{drbd_8.4.4.bb = 
drbd-utils_8.9.3.bb} (51%)
 delete mode 100644 meta-networking/recipes-support/drbd/drbd/drbd.service

diff --git 
a/meta-networking/recipes-support/drbd/drbd-utils/0001-Makefile.in-don-t-compile-documentation.patch
 
b/meta-networking/recipes-support/drbd/drbd-utils/0001-Makefile.in-don-t-compile-documentation.patch
new file mode 100644
index 000..1de4a86
--- /dev/null
+++ 
b/meta-networking/recipes-support/drbd/drbd-utils/0001-Makefile.in-don-t-compile-documentation.patch
@@ -0,0 +1,38 @@
+From feccf89f08a455460668cf286151662e4c1557b3 Mon Sep 17 00:00:00 2001
+From: Li xin lixin.f...@cn.fujitsu.com
+Date: Thu, 20 Aug 2015 15:32:30 +0900
+Subject: [PATCH] Makefile.in: don't compile documentation
+
+The documentation file is not suitable for cross-compile,
+Errors will occur:
+| /bin/sh: ../../user/v9/drbdsetup: /lib/ld-linux-x86-64.so.2: bad ELF 
interpreter: No such file or directory
+| ../../user/v9/drbdsetup xml-help disk-options  
drbdsetup_xml-help_disk-options.xml
+| /bin/sh: ../../user/v9/drbdsetup: /lib/ld-linux-x86-64.so.2: bad ELF 
interpreter: No such file or directory
+| /bin/sh: ../../user/v9/drbdsetup: /lib/ld-linux-x86-64.so.2: bad ELF 
interpreter: No such file or directory
+| make[1]: *** [drbdsetup_xml-help_new-resource.xml] Error 126
+
+so we do not compile it.
+
+Upstream-Status: pending
+
+Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
+---
+ Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index 5365a2c..d5967d8 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -45,7 +45,7 @@ WITH_84_SUPPORT = @WITH_84_SUPPORT@
+ # and not in e.g. dash. I'm too lazy to fix it to be compatible.
+ SHELL=/bin/bash
+ 
+-SUBDIRS = user/shared user/v9 user/v84 user/v83 scripts documentation/v83 
documentation/v84 documentation/v9
++SUBDIRS = user/shared user/v9 user/v84 user/v83 scripts
+ 
+ REL_VERSION := $(shell $(SED) -ne '/^AC_INIT/{s/^[^,]*, *\([^,]*\) 
*,.*/\1/;p;q}' configure.ac)
+ ifdef FORCE
+-- 
+1.8.4.2
+
diff --git a/meta-networking/recipes-support/drbd/drbd_8.4.4.bb 
b/meta-networking/recipes-support/drbd/drbd-utils_8.9.3.bb
similarity index 51%
rename from meta-networking/recipes-support/drbd/drbd_8.4.4.bb
rename to meta-networking/recipes-support/drbd/drbd-utils_8.9.3.bb
index 7458707..66b94dd 100644
--- a/meta-networking/recipes-support/drbd/drbd_8.4.4.bb
+++ b/meta-networking/recipes-support/drbd/drbd-utils_8.9.3.bb
@@ -8,46 +8,33 @@ SECTION = admin
 LICENSE = GPLv2+
 LIC_FILES_CHKSUM = file://COPYING;md5=5574c6965ae5f583e55880e397fbb018
 
-SRC_URI = http://oss.linbit.com/${BPN}/8.4/${BPN}-${PV}.tar.gz \
-   file://drbd.service \
+SRC_URI = http://oss.linbit.com/drbd/${BP}.tar.gz \
+   file://0001-Makefile.in-don-t-compile-documentation.patch \
   
-SRC_URI[md5sum] = b51815343c1a9151e2936b3b97520388
-SRC_URI[sha256sum] = 
a056219c5c23b079c3354179f7a1b9f55d47e573a4cd3178f2ef4c15604288f0
+SRC_URI[md5sum] = 09c9c33c041e1f4f85dd359f9e0b0f24
+SRC_URI[sha256sum] = 
011050578c153bf4fef86e03749304ff9f333b7af3512c5c395e0e870a0445bd
 
 SYSTEMD_SERVICE_${PN} = drbd.service
 SYSTEMD_AUTO_ENABLE = disable
 
 inherit autotools-brokensep systemd
 
-EXTRA_OECONF = --with-utils  \
---without-km  \
+EXTRA_OECONF =  \
 --with-initdir=/etc/init.d\
 --without-pacemaker   \
 --without-rgmanager   \
 --without-bashcompletion  \
 --with-distro debian  \
+--with-initscripttype=both\
+--with-systemdunitdir=${systemd_unitdir}/system \

 
-do_configure (){
-oe_runconf
-}
-
-do_install_append() {
-if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
-install -d ${D}/${systemd_unitdir}/system
-install -m 644 ${WORKDIR}/drbd.service ${D}/${systemd_unitdir}/system
-install -d ${D}/${libexecdir}
-install -m 755 ${D}/${sysconfdir}/init.d/drbd 
${D}/${libexecdir}/drbd-helper
-
-sed -i -e 's,@LIBEXECDIR

[oe] [meta-oe][PATCH] libjs-sizzle: upgrade 1.9.3 - 1.10.18

2015-08-19 Thread Li xin
* Modify SRC_URI to avoid do_fetch failed.
* Modify LICENSE file,and the LICENSE has been changed.
* Replace the hardcoded strings /usr/share

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 ...bjs-sizzle_1.9.3.bb = libjs-sizzle_1.10.18.bb} | 24 ++
 1 file changed, 11 insertions(+), 13 deletions(-)
 rename meta-oe/recipes-support/libjs/{libjs-sizzle_1.9.3.bb = 
libjs-sizzle_1.10.18.bb} (15%)

diff --git a/meta-oe/recipes-support/libjs/libjs-sizzle_1.9.3.bb 
b/meta-oe/recipes-support/libjs/libjs-sizzle_1.10.18.bb
similarity index 15%
rename from meta-oe/recipes-support/libjs/libjs-sizzle_1.9.3.bb
rename to meta-oe/recipes-support/libjs/libjs-sizzle_1.10.18.bb
index ad0f9c6..92ab31f 100644
--- a/meta-oe/recipes-support/libjs/libjs-sizzle_1.9.3.bb
+++ b/meta-oe/recipes-support/libjs/libjs-sizzle_1.10.18.bb
@@ -1,20 +1,18 @@
 SUMMARY = Pure-JavaScript CSS selector engine
-LICENSE = GPLv2+  MIT  BSD-3-Clause
-LIC_FILES_CHKSUM = 
file://usr/share/doc/libjs-sizzle/copyright;md5=9b35efb1635ff8f06d1984376b06ee5a
+LICENSE = GPL-2.0  MIT  AFL-2.1
+LIC_FILES_CHKSUM = 
file://MIT-LICENSE.txt;md5=e43aa437a6a1ba421653bd5034333bf9
 
-SRC_URI = 
http://kr.archive.ubuntu.com/ubuntu/pool/universe/s/sizzle/${BPN}_${PV}-1_all.deb;subdir=${BP};
-SRC_URI[md5sum] = 748b8805e21caed658f6765f7c491d46
-SRC_URI[sha256sum] = 
2a6468763c40a30f6f7d0df8906cd17aaebd6edaa5478aeaffd7b6b5fb8abd35
+SRC_URI = 
http://kr.archive.ubuntu.com/ubuntu/pool/universe/s/sizzle/sizzle_1.10.18.orig.tar.gz;
+SRC_URI[md5sum] = 91477c1edeef9f8100ffd6c4d31725b5
+SRC_URI[sha256sum] = 
8e04ab84bb74b2e338dffc63cd2e52b007f1d8af01b3d25da4d2e07f2b5890f8
 
-SIZZLEDIR = ${datadir}/javascript/sizzle
-SIZZLEDOCDIR = ${docdir}/libjs-sizzle
+S = ${WORKDIR}/sizzle-${PV}
+
+SIZZLEDIR = ${S}/dist
 
 do_install() {
-install -d -m 0755 ${D}${SIZZLEDIR}
-install -m 0644 ${S}${SIZZLEDIR}/sizzle.js ${D}${SIZZLEDIR}/
-install -m 0644 ${S}${SIZZLEDIR}/sizzle.min.js ${D}${SIZZLEDIR}/
-install -d -m 0755 ${D}${SIZZLEDOCDIR}
-install -m 0644 ${S}${SIZZLEDOCDIR}/* ${D}${SIZZLEDOCDIR}/
+install -d -m 0755 ${D}/${datadir}/javascript/sizzle/
+install -m 0644 ${SIZZLEDIR}/*.js ${D}/${datadir}/javascript/sizzle/
 }
 
-FILES_${PN} = /usr/share/javascript/sizzle/
+FILES_${PN} = ${datadir}/javascript/sizzle/
-- 
1.8.4.2

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


[oe] [meta-python][PATCH] python-lxml: upgrade 3.2.5 - 3.4.4

2015-08-16 Thread Li xin
* Dropped backported python-lxml-3.2.5-fix-CVE-2014-3146.patch
* Modify DISTUTILS_INSTALL_ARGS to avoid errors in the step of do_install
  | ValueError: invalid literal for int() with base 10:
'--should-not-have-used-/usr/bin/xml2-config'
  | ERROR: python setup.py install execution failed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../python-lxml-3.2.5-fix-CVE-2014-3146.patch  | 91 --
 .../{python-lxml_3.2.5.bb = python-lxml_3.4.4.bb} |  9 +--
 2 files changed, 4 insertions(+), 96 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python-lxml/python-lxml-3.2.5-fix-CVE-2014-3146.patch
 rename meta-python/recipes-devtools/python/{python-lxml_3.2.5.bb = 
python-lxml_3.4.4.bb} (81%)

diff --git 
a/meta-python/recipes-devtools/python/python-lxml/python-lxml-3.2.5-fix-CVE-2014-3146.patch
 
b/meta-python/recipes-devtools/python/python-lxml/python-lxml-3.2.5-fix-CVE-2014-3146.patch
deleted file mode 100644
index 0a8e211..000
--- 
a/meta-python/recipes-devtools/python/python-lxml/python-lxml-3.2.5-fix-CVE-2014-3146.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-Upstream-status:Backport
-
 a/src/lxml/html/clean.py
-+++ b/src/lxml/html/clean.py
-@@ -70,9 +70,10 @@ _css_import_re = re.compile(
- 
- # All kinds of schemes besides just javascript: that can cause
- # execution:
--_javascript_scheme_re = re.compile(
--r'\s*(?:javascript|jscript|livescript|vbscript|data|about|mocha):', re.I)
--_substitute_whitespace = re.compile(r'\s+').sub
-+_is_javascript_scheme = re.compile(
-+r'(?:javascript|jscript|livescript|vbscript|data|about|mocha):',
-+re.I).search
-+_substitute_whitespace = re.compile(r'[\s\x00-\x08\x0B\x0C\x0E-\x19]+').sub
- # FIXME: should data: be blocked?
- 
- # FIXME: check against: http://msdn2.microsoft.com/en-us/library/ms537512.aspx
-@@ -467,7 +468,7 @@ class Cleaner(object):
- def _remove_javascript_link(self, link):
- # links like j a v a s c r i p t: might be interpreted in IE
- new = _substitute_whitespace('', link)
--if _javascript_scheme_re.search(new):
-+if _is_javascript_scheme(new):
- # FIXME: should this be None to delete?
- return ''
- return link
 a/src/lxml/html/tests/test_clean.txt
-+++ b/src/lxml/html/tests/test_clean.txt
-@@ -1,3 +1,4 @@
-+ import re
-  from lxml.html import fromstring, tostring
-  from lxml.html.clean import clean, clean_html, Cleaner
-  from lxml.html import usedoctest
-@@ -17,6 +18,7 @@
- ...   body onload=evil_function()
- ... !-- I am interpreted for EVIL! --
- ... a href=javascript:evil_function()a link/a
-+... a href=j\x01a\x02v\x03a\x04s\x05c\x06r\x07i\x0Ep 
t:evil_function()a control char link/a
- ... a 
href=data:text/html;base64,PHNjcmlwdD5hbGVydCgidGVzdCIpOzwvc2NyaXB0Pg==data/a
- ... a href=# onclick=evil_function()another link/a
- ... p onclick=evil_function()a paragraph/p
-@@ -33,7 +35,7 @@
- ...   /body
- ... /html'''
- 
-- print(doc)
-+ print(re.sub('[\x00-\x07\x0E]', '', doc))
- html
-   head
- script type=text/javascript src=evil-site/script
-@@ -49,6 +51,7 @@
-   body onload=evil_function()
- !-- I am interpreted for EVIL! --
- a href=javascript:evil_function()a link/a
-+a href=javascrip t:evil_function()a control char link/a
- a 
href=data:text/html;base64,PHNjcmlwdD5hbGVydCgidGVzdCIpOzwvc2NyaXB0Pg==data/a
- a href=# onclick=evil_function()another link/a
- p onclick=evil_function()a paragraph/p
-@@ -81,6 +84,7 @@
-   body onload=evil_function()
- !-- I am interpreted for EVIL! --
- a href=javascript:evil_function()a link/a
-+a href=javascrip%20t:evil_function()a control char link/a
- a 
href=data:text/html;base64,PHNjcmlwdD5hbGVydCgidGVzdCIpOzwvc2NyaXB0Pg==data/a
- a href=# onclick=evil_function()another link/a
- p onclick=evil_function()a paragraph/p
-@@ -104,6 +108,7 @@
-   /head
-   body
- a href=a link/a
-+a href=a control char link/a
- a href=data/a
- a href=#another link/a
- pa paragraph/p
-@@ -123,6 +128,7 @@
-   /head
-   body
- a href=a link/a
-+a href=a control char link/a
- a href=data/a
- a href=#another link/a
- pa paragraph/p
-@@ -146,6 +152,7 @@
-   /head
-   body
- a href=a link/a
-+a href=a control char link/a 
- a href=data/a
- a href=#another link/a
- pa paragraph/p
diff --git a/meta-python/recipes-devtools/python/python-lxml_3.2.5.bb 
b/meta-python/recipes-devtools/python/python-lxml_3.4.4.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python-lxml_3.2.5.bb
rename to meta-python/recipes-devtools/python/python-lxml_3.4.4.bb
index 68e3677..2480e4d 100644
--- a/meta-python/recipes-devtools/python/python-lxml_3.2.5.bb
+++ b/meta-python/recipes-devtools/python/python-lxml_3.4.4.bb
@@ -8,11 +8,10 @@ SRCNAME = lxml
 
 DEPENDS = libxml2 libxslt
 
-SRC_URI = 
http://pypi.python.org/packages/source/l/${SRCNAME}/${SRCNAME}-${PV}.tar.gz

[oe] [meta-networking][PATCH v2] netcf: upgrade 0.2.3 - 0.2.8

2015-08-07 Thread Li xin
add systemd support for netcf

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-networking/recipes-support/netcf/netcf_git.bb | 22 +-
 1 file changed, 17 insertions(+), 5 deletions(-)

diff --git a/meta-networking/recipes-support/netcf/netcf_git.bb 
b/meta-networking/recipes-support/netcf/netcf_git.bb
index 0e88b30..d47bb3b 100644
--- a/meta-networking/recipes-support/netcf/netcf_git.bb
+++ b/meta-networking/recipes-support/netcf/netcf_git.bb
@@ -6,8 +6,8 @@ LICENSE = LGPLv2.1
 
 LIC_FILES_CHKSUM = file://COPYING;md5=bbb461211a33b134d42ed5ee802b37ff
 
-SRCREV = b8a19dc860b38c97c42115d8a559b78853452a4b
-PV = 0.2.3+git${SRCPV}
+SRCREV = 9158278ad35b46ce9a49b2e887483c6d8c287994
+PV = 0.2.8+git${SRCPV}
 
 SRC_URI = git://git.fedorahosted.org/netcf.git;protocol=git \
 
@@ -16,9 +16,13 @@ DEPENDS += augeas libnl libxslt libxml2 gnulib
 
 S = ${WORKDIR}/git
 
-inherit gettext autotools-brokensep pkgconfig
+inherit gettext autotools-brokensep pkgconfig systemd
 
 EXTRA_OECONF_append_class-target =  --with-driver=redhat
+
+PACKAGECONFIG ??= ${@bb.utils.contains(DISTRO_FEATURES, systemd, 
systemd, , d)}
+PACKAGECONFIG[systemd] = --with-sysinit=systemd,--with-sysinit=initscripts,
+
 do_configure_prepend() {
cd ${S}
rm -f .gitmodules
@@ -26,6 +30,14 @@ do_configure_prepend() {
 }
 
 do_install_append() {
- mv ${D}${sysconfdir}/rc.d/init.d/ ${D}${sysconfdir}
- rm -rf ${D}${sysconfdir}/rc.d/
+if ${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; 
then
+   install -d ${D}${systemd_unitdir}/system
+   mv ${D}${libdir}/systemd/system/* ${D}${systemd_unitdir}/system/
+   rm -rf ${D}${libdir}/systemd/
+else
+   mv ${D}${sysconfdir}/rc.d/init.d/ ${D}${sysconfdir}
+   rm -rf ${D}${sysconfdir}/rc.d/
+fi
 }
+
+SYSTEMD_SERVICE_${PN} = netcf-transaction.service
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] libjs-jquery: upgrade 1.7.1 - 1.7.2

2015-08-07 Thread Li xin
LICENSE has been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../libjs/{libjs-jquery_1.7.1.bb = libjs-jquery_1.7.2.bb} | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-support/libjs/{libjs-jquery_1.7.1.bb = 
libjs-jquery_1.7.2.bb} (72%)

diff --git a/meta-oe/recipes-support/libjs/libjs-jquery_1.7.1.bb 
b/meta-oe/recipes-support/libjs/libjs-jquery_1.7.2.bb
similarity index 72%
rename from meta-oe/recipes-support/libjs/libjs-jquery_1.7.1.bb
rename to meta-oe/recipes-support/libjs/libjs-jquery_1.7.2.bb
index cf7c2d5..ec8f360 100644
--- a/meta-oe/recipes-support/libjs/libjs-jquery_1.7.1.bb
+++ b/meta-oe/recipes-support/libjs/libjs-jquery_1.7.2.bb
@@ -1,10 +1,10 @@
 SUMMARY = JavaScript library for dynamic web applications
-LICENSE = GPLv2+  MIT
-LIC_FILES_CHKSUM = 
file://usr/share/doc/libjs-jquery/copyright;md5=2b490904c50a58472452b6e9e1c81203
+LICENSE = MIT | BSD | GPL-2
+LIC_FILES_CHKSUM = 
file://usr/share/doc/libjs-jquery/copyright;md5=5d1ec6f95e0a91d38e2f71de93ddb00e
 
-SRC_URI = 
http://kr.archive.ubuntu.com/ubuntu/pool/main/j/jquery/${BPN}_${PV}-1ubuntu1_all.deb;subdir=${BP};
-SRC_URI[md5sum] = 1ac8a9e4dfe18de22e65baec3dd53f8b
-SRC_URI[sha256sum] = 
0551e20c88035d80c00b552707573d62ee89e8e5a204d8b427a6020b065e2542
+SRC_URI = 
http://kr.archive.ubuntu.com/ubuntu/pool/main/j/jquery/${BPN}_${PV}+debian-1ubuntu1~ubuntu12.04.1_all.deb;subdir=${BP};
+SRC_URI[md5sum] = fa511ab67f6e960c5b6d39a4d665e47f
+SRC_URI[sha256sum] = 
190ca18a71e35c8ab2ba73fe5be3c7cc601fe20b45709d801110818f1b602cc1
 
 JQUERYDIR = ${datadir}/javascript/jquery
 JQUERYDOCDIR = ${docdir}/libjs-jquery
-- 
1.8.4.2

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


Re: [oe] [meta-networking][PATCH v2] geoip: upgrade 1.6.0 - 1.6.6

2015-08-06 Thread Li, Xin

-Original Message-
From: openembedded-devel-boun...@lists.openembedded.org
[mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
Khem Raj
Sent: Thursday, August 06, 2015 10:24 AM
To: openembeded-devel
Subject: Re: [oe] [meta-networking][PATCH v2] geoip: upgrade 1.6.0 - 1.6.6

On Wed, Aug 5, 2015 at 6:30 PM, Li xin lixin.f...@cn.fujitsu.com wrote:
 *Modify SRC_URI.

why do switch to git instead of tarball ?

 *Modify chksum of file COPYING and LICENSE,since the context changed.

why did checksums change? you need to explain that

OK, Patch v3 will be sent.


 But the LICENSE has not been changed.

in what way ?

I had checked LICENSE of geoip-1.6.0 and geoip-1.6.6 by SPDX and fossology 
server.
From the SPDX file, I found that LICENSE had not been changed.
 
$ cat geoip-1.6.6.spdx
..
PackageLicenseDeclared: (LicenseRef-12 and GPL-2.0+ and LicenseRef-3 and 
LicenseRef-1 and LGPL-2.1 and LicenseRef-4 and LGPL-2.1+ and LicenseRef-7 and 
GPL-3.0+ and GPL-2.0-with-autoconf-exception and LicenseRef-8 and LicenseRef-9 
and LicenseRef-10 and LicenseRef-5 and LicenseRef-2 and LicenseRef-6 and 
LicenseRef-11)

$ cat geoip-1.6.0.spdx
..
PackageLicenseDeclared: (LicenseRef-2 and GPL-2.0+ and LicenseRef-4 and 
LicenseRef-5 and LicenseRef-1 and LGPL-2.1 and LicenseRef-6 and LicenseRef-8 
and LGPL-2.1+ and LicenseRef-9 and GPL-3.0 and LicenseRef-10 and LicenseRef-11 
and LicenseRef-7 and LicenseRef-3 and GPL-2.0-with-autoconf-exception)



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


[oe] [meta-python][PATCH] python-pip: upgrade 1.5.6 - 7.1.0

2015-08-06 Thread Li xin
Version numbers are now simply X.Y where the leading 1
has been dropped.
Reference: https://github.com/pypa/pip/blob/develop/CHANGES.txt

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../python/{python-pip_1.5.6.bb = python-pip_7.1.0.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pip_1.5.6.bb = 
python-pip_7.1.0.bb} (76%)

diff --git a/meta-python/recipes-devtools/python/python-pip_1.5.6.bb 
b/meta-python/recipes-devtools/python/python-pip_7.1.0.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python-pip_1.5.6.bb
rename to meta-python/recipes-devtools/python/python-pip_7.1.0.bb
index b4ce9e5..ae02e86 100644
--- a/meta-python/recipes-devtools/python/python-pip_1.5.6.bb
+++ b/meta-python/recipes-devtools/python/python-pip_7.1.0.bb
@@ -4,8 +4,8 @@ LIC_FILES_CHKSUM = 
file://LICENSE.txt;md5=45665b53032c02b35e29ddab8e61fa91
 
 SRC_URI = https://pypi.python.org/packages/source/p/pip/pip-${PV}.tar.gz;
 
-SRC_URI[md5sum] = 01026f87978932060cc86c1dc527903e
-SRC_URI[sha256sum] = 
b1a4ae66baf21b7eb05a5e4f37c50c2706fa28ea1f8780ce8efe14dcd9f1726c
+SRC_URI[md5sum] = d935ee9146074b1d3f26c5f0acfd120e
+SRC_URI[sha256sum] = 
d5275ba3221182a5dd1b6bcfbfc5ec277fb399dd23226d6fa018048f7e0f10f2
 
 S = ${WORKDIR}/pip-${PV}
 
-- 
1.8.4.2

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


[oe] [meta-python][PATCH] python-pyopenssl: upgrade 0.13 - 0.15.1

2015-08-06 Thread Li xin
* Dropped x509_revoked_dup.patch,since the original file crl.c does not exist 
anymore.
* Add DEPENDS python-cryptography to aviod build errors:
  | error: Could not find suitable distribution for 
Requirement.parse('six=1.5.2')
  | ERROR: python setup.py install execution failed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../python-pyopenssl-0.13/x509_revoked_dup.patch  | 19 ---
 ...n-pyopenssl_0.13.bb = python-pyopenssl_0.15.1.bb} | 10 +-
 2 files changed, 5 insertions(+), 24 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python-pyopenssl-0.13/x509_revoked_dup.patch
 rename meta-python/recipes-devtools/python/{python-pyopenssl_0.13.bb = 
python-pyopenssl_0.15.1.bb} (68%)

diff --git 
a/meta-python/recipes-devtools/python/python-pyopenssl-0.13/x509_revoked_dup.patch
 
b/meta-python/recipes-devtools/python/python-pyopenssl-0.13/x509_revoked_dup.patch
deleted file mode 100644
index c386e9c..000
--- 
a/meta-python/recipes-devtools/python/python-pyopenssl-0.13/x509_revoked_dup.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -Naur pyOpenSSL-0.13.orig/OpenSSL/crypto/crl.c 
pyOpenSSL-0.13/OpenSSL/crypto/crl.c
 pyOpenSSL-0.13.orig/OpenSSL/crypto/crl.c   2011-09-02 17:46:13.0 
+0200
-+++ pyOpenSSL-0.13/OpenSSL/crypto/crl.c2015-03-26 20:53:08.984999223 
+0100
-@@ -3,6 +3,7 @@
- #include crypto.h
- 
- 
-+#if 0
- static X509_REVOKED * X509_REVOKED_dup(X509_REVOKED *orig) {
- X509_REVOKED *dupe = NULL;
- 
-@@ -32,6 +33,7 @@
- dupe-sequence = orig-sequence;
- return dupe;
- }
-+#endif
- 
- static char crypto_CRL_get_revoked_doc[] = \n\
- Return revoked portion of the CRL structure (by value\n\
diff --git a/meta-python/recipes-devtools/python/python-pyopenssl_0.13.bb 
b/meta-python/recipes-devtools/python/python-pyopenssl_0.15.1.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python-pyopenssl_0.13.bb
rename to meta-python/recipes-devtools/python/python-pyopenssl_0.15.1.bb
index cf9d73e..694da27 100644
--- a/meta-python/recipes-devtools/python/python-pyopenssl_0.13.bb
+++ b/meta-python/recipes-devtools/python/python-pyopenssl_0.15.1.bb
@@ -6,13 +6,13 @@ LIC_FILES_CHKSUM = 
file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57
 
 SRCNAME = pyOpenSSL
 
-DEPENDS = openssl
+DEPENDS = openssl python-cryptography
 PE = 1
 
-SRC_URI = 
http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-${PV}.tar.gz \
-   file://x509_revoked_dup.patch
-SRC_URI[md5sum] = 767bca18a71178ca353dff9e10941929
-SRC_URI[sha256sum] = 
21e12b03abaa0e04ecc8cd9c251598f71bae11c9f385304234e4ea5618c6163b
+SRC_URI = 
http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-${PV}.tar.gz;
+
+SRC_URI[md5sum] = f447644afcbd5f0a1f47350fec63a4c6
+SRC_URI[sha256sum] = 
f0a26070d6db0881de8bcc7846934b7c3c930d8f9c79d45883ee48984bc0d672
 
 S = ${WORKDIR}/${SRCNAME}-${PV}
 
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH v3] geoip: upgrade 1.6.0 - 1.6.6

2015-08-06 Thread Li xin
*Modify SRC_URI.
*Modify chksum of file COPYING and LICENSE,since year changed,
and the LICENSE explanation for file base64.c, md5.c and types.h
was deleted.But the LICENSE has not been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-support/geoip/{geoip_1.6.0.bb = geoip_1.6.6.bb} | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)
 rename meta-networking/recipes-support/geoip/{geoip_1.6.0.bb = 
geoip_1.6.6.bb} (84%)

diff --git a/meta-networking/recipes-support/geoip/geoip_1.6.0.bb 
b/meta-networking/recipes-support/geoip/geoip_1.6.6.bb
similarity index 84%
rename from meta-networking/recipes-support/geoip/geoip_1.6.0.bb
rename to meta-networking/recipes-support/geoip/geoip_1.6.6.bb
index f1b2aac..5037ae3 100644
--- a/meta-networking/recipes-support/geoip/geoip_1.6.0.bb
+++ b/meta-networking/recipes-support/geoip/geoip_1.6.6.bb
@@ -8,15 +8,13 @@ using reverse DNS lookups.
 HOMEPAGE = http://dev.maxmind.com/geoip/;
 SECTION = libdevel
 
-SRC_URI = 
http://www.maxmind.com/download/geoip/api/c/GeoIP-1.6.0.tar.gz;name=tarball \
+SRC_URI = git://github.com/maxmind/geoip-api-c.git \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz;apply=no;name=GeoIP-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz;apply=no;name=GeoIPv6-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz;apply=no;name=GeoLiteCity-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz;apply=no;name=GeoLiteCityv6-dat
 \
 
-
-SRC_URI[tarball.md5sum] = 89f4cdfdab43f1d67364cd7c85bbe8ca
-SRC_URI[tarball.sha256sum] = 
075a0c2815cd099e9ec35c9569db716a3fefcdbb6a10dbfa1ce7c6cd48d4a635
+SRCREV = ed3f3e2b87fba05a8f2a5b9b1328e7d55be8bf30
 
 SRC_URI[GeoIP-dat.md5sum] = 37c84ead332dda0362a5ac7b049b72d4
 SRC_URI[GeoIP-dat.sha256sum] = 
79ff1099e96c2dc1c2539c9a18aaa13a9afd085cae477df60d95f1644d42bc07
@@ -32,10 +30,10 @@ SRC_URI[GeoLiteCityv6-dat.sha256sum] = 
eda67f4204ba9fa5204a53cdb629167cca9394c7
 
 LICENSE = LGPL-2.1
 
-LIC_FILES_CHKSUM = file://COPYING;md5=d5d53d6b948c064f4070183180a4fa89 \
-file://LICENSE;md5=f04db71812ba70aaba8b38da91984cd2 
+LIC_FILES_CHKSUM = file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad \
+file://LICENSE;md5=0388276749a542b0d611601fa7c1dcc8 
 
-S = ${WORKDIR}/GeoIP-1.6.0
+S = ${WORKDIR}/git
 
 inherit autotools
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH v3] pcsc-lite: upgrade 1.8.6 - 1.8.13

2015-08-06 Thread Li xin
* Remove PR
* Modify chksum of COYING,since the explain of GPLv3+ is added,
but the LICENSE has not been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../pcsc-lite/{pcsc-lite_1.8.6.bb = pcsc-lite_1.8.13.bb}| 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-support/pcsc-lite/{pcsc-lite_1.8.6.bb = 
pcsc-lite_1.8.13.bb} (69%)

diff --git a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb 
b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
similarity index 69%
rename from meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb
rename to meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
index c562b3d..cc72549 100644
--- a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb
+++ b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
@@ -2,14 +2,13 @@ SUMMARY = PC/SC Lite smart card framework and applications
 HOMEPAGE = http://pcsclite.alioth.debian.org/;
 LICENSE = BSD  GPLv3+
 LICENSE_${PN}-dev = GPLv3+
-LIC_FILES_CHKSUM = file://COPYING;md5=a39d325b7d9cf2f07826a5154b16500c
+LIC_FILES_CHKSUM = file://COPYING;md5=bcfbd85230ac3c586fb294c8b627cf32
 DEPENDS = udev
 
-SRC_URI = 
https://alioth.debian.org/frs/download.php/file/3757/pcsc-lite-${PV}.tar.bz2;
-SRC_URI[md5sum] = 3e4b777231d35ce35c15c0704f936eaa
-SRC_URI[sha256sum] = 
1e44049168d1ce55fd56c175f61206955254df0f385455f2a20ec7e8a0e6a77a
+SRC_URI = 
https://alioth.debian.org/frs/download.php/file/4126/pcsc-lite-${PV}.tar.bz2;
+SRC_URI[md5sum] = 4dcd22d20a6df8810fac5480cc320b6d
+SRC_URI[sha256sum] = 
f315047e808d63a3262c4a040f77548af2e04d1fd707e0c2759369b926fbbc3b
 
-PR = r3
 
 inherit autotools systemd pkgconfig
 
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH] geoip: upgrade 1.6.0 - 1.6.6

2015-08-05 Thread Li xin
*Modify SRC_URI.
*Modify chksum of file COPYING and LICENSE,since the context changed.
But the LICENSE has not been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-support/geoip/{geoip_1.6.0.bb = geoip_1.6.6.bb} | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
 rename meta-networking/recipes-support/geoip/{geoip_1.6.0.bb = 
geoip_1.6.6.bb} (89%)

diff --git a/meta-networking/recipes-support/geoip/geoip_1.6.0.bb 
b/meta-networking/recipes-support/geoip/geoip_1.6.6.bb
similarity index 89%
rename from meta-networking/recipes-support/geoip/geoip_1.6.0.bb
rename to meta-networking/recipes-support/geoip/geoip_1.6.6.bb
index f1b2aac..eb9d31c 100644
--- a/meta-networking/recipes-support/geoip/geoip_1.6.0.bb
+++ b/meta-networking/recipes-support/geoip/geoip_1.6.6.bb
@@ -8,12 +8,13 @@ using reverse DNS lookups.
 HOMEPAGE = http://dev.maxmind.com/geoip/;
 SECTION = libdevel
 
-SRC_URI = 
http://www.maxmind.com/download/geoip/api/c/GeoIP-1.6.0.tar.gz;name=tarball \
+SRC_URI = git://github.com/maxmind/geoip-api-c.git \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz;apply=no;name=GeoIP-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz;apply=no;name=GeoIPv6-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz;apply=no;name=GeoLiteCity-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz;apply=no;name=GeoLiteCityv6-dat
 \
 
+SRCREV = ed3f3e2b87fba05a8f2a5b9b1328e7d55be8bf30
 
 SRC_URI[tarball.md5sum] = 89f4cdfdab43f1d67364cd7c85bbe8ca
 SRC_URI[tarball.sha256sum] = 
075a0c2815cd099e9ec35c9569db716a3fefcdbb6a10dbfa1ce7c6cd48d4a635
@@ -32,10 +33,10 @@ SRC_URI[GeoLiteCityv6-dat.sha256sum] = 
eda67f4204ba9fa5204a53cdb629167cca9394c7
 
 LICENSE = LGPL-2.1
 
-LIC_FILES_CHKSUM = file://COPYING;md5=d5d53d6b948c064f4070183180a4fa89 \
-file://LICENSE;md5=f04db71812ba70aaba8b38da91984cd2 
+LIC_FILES_CHKSUM = file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad \
+file://LICENSE;md5=0388276749a542b0d611601fa7c1dcc8 
 
-S = ${WORKDIR}/GeoIP-1.6.0
+S = ${WORKDIR}/git
 
 inherit autotools
 
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH v2] geoip: upgrade 1.6.0 - 1.6.6

2015-08-05 Thread Li xin
*Modify SRC_URI.
*Modify chksum of file COPYING and LICENSE,since the context changed.
But the LICENSE has not been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-support/geoip/{geoip_1.6.0.bb = geoip_1.6.6.bb} | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)
 rename meta-networking/recipes-support/geoip/{geoip_1.6.0.bb = 
geoip_1.6.6.bb} (84%)

diff --git a/meta-networking/recipes-support/geoip/geoip_1.6.0.bb 
b/meta-networking/recipes-support/geoip/geoip_1.6.6.bb
similarity index 84%
rename from meta-networking/recipes-support/geoip/geoip_1.6.0.bb
rename to meta-networking/recipes-support/geoip/geoip_1.6.6.bb
index f1b2aac..5037ae3 100644
--- a/meta-networking/recipes-support/geoip/geoip_1.6.0.bb
+++ b/meta-networking/recipes-support/geoip/geoip_1.6.6.bb
@@ -8,15 +8,13 @@ using reverse DNS lookups.
 HOMEPAGE = http://dev.maxmind.com/geoip/;
 SECTION = libdevel
 
-SRC_URI = 
http://www.maxmind.com/download/geoip/api/c/GeoIP-1.6.0.tar.gz;name=tarball \
+SRC_URI = git://github.com/maxmind/geoip-api-c.git \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz;apply=no;name=GeoIP-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz;apply=no;name=GeoIPv6-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz;apply=no;name=GeoLiteCity-dat
 \

http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz;apply=no;name=GeoLiteCityv6-dat
 \
 
-
-SRC_URI[tarball.md5sum] = 89f4cdfdab43f1d67364cd7c85bbe8ca
-SRC_URI[tarball.sha256sum] = 
075a0c2815cd099e9ec35c9569db716a3fefcdbb6a10dbfa1ce7c6cd48d4a635
+SRCREV = ed3f3e2b87fba05a8f2a5b9b1328e7d55be8bf30
 
 SRC_URI[GeoIP-dat.md5sum] = 37c84ead332dda0362a5ac7b049b72d4
 SRC_URI[GeoIP-dat.sha256sum] = 
79ff1099e96c2dc1c2539c9a18aaa13a9afd085cae477df60d95f1644d42bc07
@@ -32,10 +30,10 @@ SRC_URI[GeoLiteCityv6-dat.sha256sum] = 
eda67f4204ba9fa5204a53cdb629167cca9394c7
 
 LICENSE = LGPL-2.1
 
-LIC_FILES_CHKSUM = file://COPYING;md5=d5d53d6b948c064f4070183180a4fa89 \
-file://LICENSE;md5=f04db71812ba70aaba8b38da91984cd2 
+LIC_FILES_CHKSUM = file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad \
+file://LICENSE;md5=0388276749a542b0d611601fa7c1dcc8 
 
-S = ${WORKDIR}/GeoIP-1.6.0
+S = ${WORKDIR}/git
 
 inherit autotools
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] takao-fonts: upgrade 003.02.01 - 003.03.01

2015-08-04 Thread Li xin
The SRC_URI has been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../{takao-fonts_003.02.01.bb = takao-fonts_003.03.01.bb} | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)
 rename meta-oe/recipes-graphics/takao-fonts/{takao-fonts_003.02.01.bb = 
takao-fonts_003.03.01.bb} (65%)

diff --git a/meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.02.01.bb 
b/meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.03.01.bb
similarity index 65%
rename from meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.02.01.bb
rename to meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.03.01.bb
index ed875fa..d99ff14 100644
--- a/meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.02.01.bb
+++ b/meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.03.01.bb
@@ -6,13 +6,11 @@ SECTION = User Interface/X
 
 LICENSE = IPA
 LIC_FILES_CHKSUM = 
file://IPA_Font_License_Agreement_v1.0.txt;md5=6cd3351ba979cf9db1fad644e8221276
+SRC_URI = 
https://launchpad.net/${BPN}/trunk/15.03/+download/TakaoFonts_00303.01.tar.xz;
+SRC_URI[md5sum] = 8cd3fe724faa5034a9369e98cf108d2d
+SRC_URI[sha256sum] = 
e9871f72ac69acb3e277aebbee7ca01fbebf54800733e29fafdc46133fc3552f
 
-SRC_URI = 
http://launchpad.net/takao-fonts/003.02/${PV}/+download/takao-fonts-ttf-${PV}.zip;
-SRC_URI[md5sum] = ca480e5edb9f26d871bf6df6cb910306
-SRC_URI[sha256sum] = 
2f526a16c7931958f560697d494d8304949b3ce0aef246fb0c727fbbcc39089e
-
-S = ${WORKDIR}/${BPN}-ttf-${PV}
-
+S = ${WORKDIR}/TakaoFonts_00303.01
 do_install() {
 install -m 0755 -d ${D}/${datadir}/fonts
 install -m 0644 -p ${S}/*.ttf ${D}/${datadir}/fonts/
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] luajit: upgrade 2.0.3 - 2.0.4

2015-08-04 Thread Li xin
License COPYRIGHT year changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-devtools/luajit/{luajit_2.0.3.bb = luajit_2.0.4.bb}| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-devtools/luajit/{luajit_2.0.3.bb = luajit_2.0.4.bb} 
(87%)

diff --git a/meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb 
b/meta-oe/recipes-devtools/luajit/luajit_2.0.4.bb
similarity index 87%
rename from meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb
rename to meta-oe/recipes-devtools/luajit/luajit_2.0.4.bb
index 925cbcf..4a15a4e 100644
--- a/meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb
+++ b/meta-oe/recipes-devtools/luajit/luajit_2.0.4.bb
@@ -1,13 +1,13 @@
 SUMMARY = Just-In-Time Compiler for Lua
 LICENSE = MIT
-LIC_FILES_CHKSUM = file://COPYRIGHT;md5=97b6446bbf9d55616838f821585c5978
+LIC_FILES_CHKSUM = file://COPYRIGHT;md5=3992f1fbae3b8b061f9056b7fcda8cc6
 HOMEPAGE = http://luajit.org;
 
 SRC_URI = http://luajit.org/download/LuaJIT-${PV}.tar.gz \

file://0001-Do-not-strip-automatically-this-leaves-the-stripping.patch \
 
-SRC_URI[md5sum] = f14e9104be513913810cd59c8c658dc0
-SRC_URI[sha256sum] = 
55be6cb2d101ed38acca32c5b1f99ae345904b365b642203194c585d27bebd79
+SRC_URI[md5sum] = dd9c38307f2223a504cbfb96e477eca0
+SRC_URI[sha256sum] = 
620fa4eb12375021bef6e4f237cbd2dd5d49e56beb414bee052c746beef1807d
 
 S = ${WORKDIR}/LuaJIT-${PV}
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] pcsc-lite: upgrade 1.8.6 - 1.8.13

2015-08-04 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../pcsc-lite/{pcsc-lite_1.8.6.bb = pcsc-lite_1.8.13.bb}| 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-support/pcsc-lite/{pcsc-lite_1.8.6.bb = 
pcsc-lite_1.8.13.bb} (69%)

diff --git a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb 
b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
similarity index 69%
rename from meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb
rename to meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
index c562b3d..cc72549 100644
--- a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb
+++ b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
@@ -2,14 +2,13 @@ SUMMARY = PC/SC Lite smart card framework and applications
 HOMEPAGE = http://pcsclite.alioth.debian.org/;
 LICENSE = BSD  GPLv3+
 LICENSE_${PN}-dev = GPLv3+
-LIC_FILES_CHKSUM = file://COPYING;md5=a39d325b7d9cf2f07826a5154b16500c
+LIC_FILES_CHKSUM = file://COPYING;md5=bcfbd85230ac3c586fb294c8b627cf32
 DEPENDS = udev
 
-SRC_URI = 
https://alioth.debian.org/frs/download.php/file/3757/pcsc-lite-${PV}.tar.bz2;
-SRC_URI[md5sum] = 3e4b777231d35ce35c15c0704f936eaa
-SRC_URI[sha256sum] = 
1e44049168d1ce55fd56c175f61206955254df0f385455f2a20ec7e8a0e6a77a
+SRC_URI = 
https://alioth.debian.org/frs/download.php/file/4126/pcsc-lite-${PV}.tar.bz2;
+SRC_URI[md5sum] = 4dcd22d20a6df8810fac5480cc320b6d
+SRC_URI[sha256sum] = 
f315047e808d63a3262c4a040f77548af2e04d1fd707e0c2759369b926fbbc3b
 
-PR = r3
 
 inherit autotools systemd pkgconfig
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH v2] pcsc-lite: upgrade 1.8.6 - 1.8.13

2015-08-04 Thread Li xin
* Remove PR
* Modify chksum of COYING,since the explanation of GPLv3+ is added, but the 
LICENSE has not been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../pcsc-lite/{pcsc-lite_1.8.6.bb = pcsc-lite_1.8.13.bb}| 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-support/pcsc-lite/{pcsc-lite_1.8.6.bb = 
pcsc-lite_1.8.13.bb} (69%)

diff --git a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb 
b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
similarity index 69%
rename from meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb
rename to meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
index c562b3d..cc72549 100644
--- a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.6.bb
+++ b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.8.13.bb
@@ -2,14 +2,13 @@ SUMMARY = PC/SC Lite smart card framework and applications
 HOMEPAGE = http://pcsclite.alioth.debian.org/;
 LICENSE = BSD  GPLv3+
 LICENSE_${PN}-dev = GPLv3+
-LIC_FILES_CHKSUM = file://COPYING;md5=a39d325b7d9cf2f07826a5154b16500c
+LIC_FILES_CHKSUM = file://COPYING;md5=bcfbd85230ac3c586fb294c8b627cf32
 DEPENDS = udev
 
-SRC_URI = 
https://alioth.debian.org/frs/download.php/file/3757/pcsc-lite-${PV}.tar.bz2;
-SRC_URI[md5sum] = 3e4b777231d35ce35c15c0704f936eaa
-SRC_URI[sha256sum] = 
1e44049168d1ce55fd56c175f61206955254df0f385455f2a20ec7e8a0e6a77a
+SRC_URI = 
https://alioth.debian.org/frs/download.php/file/4126/pcsc-lite-${PV}.tar.bz2;
+SRC_URI[md5sum] = 4dcd22d20a6df8810fac5480cc320b6d
+SRC_URI[sha256sum] = 
f315047e808d63a3262c4a040f77548af2e04d1fd707e0c2759369b926fbbc3b
 
-PR = r3
 
 inherit autotools systemd pkgconfig
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] gradm: upgrade 3.0 - 3.1

2015-08-04 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-oe/recipes-support/gradm/{gradm_3.0.bb = gradm_3.1.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-support/gradm/{gradm_3.0.bb = gradm_3.1.bb} (89%)

diff --git a/meta-oe/recipes-support/gradm/gradm_3.0.bb 
b/meta-oe/recipes-support/gradm/gradm_3.1.bb
similarity index 89%
rename from meta-oe/recipes-support/gradm/gradm_3.0.bb
rename to meta-oe/recipes-support/gradm/gradm_3.1.bb
index 2f1d39d..fe36fba 100644
--- a/meta-oe/recipes-support/gradm/gradm_3.0.bb
+++ b/meta-oe/recipes-support/gradm/gradm_3.1.bb
@@ -11,10 +11,10 @@ LICENSE = GPL-2.0
 LIC_FILES_CHKSUM = file://LICENSE;md5=4641e94ec96f98fabc56ff9cc48be14b
 DEPENDS = flex-native bison-native ${@base_contains('DISTRO_FEATURES', 'pam', 
'libpam', '', d)}
 
-SRC_URI = http://grsecurity.net/stable/${BP}-201408301734.tar.gz \
+SRC_URI = http://grsecurity.net/stable/${BP}-201507191652.tar.gz \
file://0001-Makefile-remove-strip.patch
-SRC_URI[md5sum] = 79ec912e6544c5e58753f658623763f9
-SRC_URI[sha256sum] = 
b190e5afecdf3ac5020a4e5e4b698645f1c01b20d036129dd8b609c4bd0c319c
+SRC_URI[md5sum] = ecec72d3a9b6d84c00eda97957b707b6
+SRC_URI[sha256sum] = 
2f14c357bf0459e502a4e108b76c3f6240aa484762d07bb1687796b9b9297a50
 
 S = ${WORKDIR}/gradm
 
-- 
1.8.4.2

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


Re: [oe] [meta-oe][PATCH] numactl: upgrade 2.0.9 - 2.0.10

2015-08-03 Thread Li, Xin
Hi, Yi,

Thank you very much for doing test for me.
I can reproduce the error.
Patch V2 will be sent.

Cheers,
Li
-Original Message-
From: Yi Zhao [mailto:yi.z...@windriver.com]
Sent: Monday, August 03, 2015 5:15 PM
To: Li, Xin/李 欣
Cc: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] [meta-oe][PATCH] numactl: upgrade 2.0.9 - 2.0.10

Hi,

I got an error for do_install_ptest_base:

ERROR: Function failed: do_install_ptest_base (log file is located at
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/log.do_ins
tall_ptest_base.25330)
ERROR: Logfile of failure stored in:
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/log.do_ins
tall_ptest_base.25330
Log data follows:
| DEBUG: SITE files ['endian-little', 'common-linux', 'common-glibc',
'bit-64', 'x86_64-linux', 'common']
| DEBUG: Executing shell function do_install_ptest_base
| install: cannot stat
'/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/numactl-2.0.10
/test/distance':
No such file or directory
| WARNING:
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/run.do_in
stall_ptest_base.25330:1
exit 1 from
|   install -m 0755
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/numactl-2.0.10/
test/$i
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/image/usr/lib64
/numactl/ptest/test
| ERROR: Function failed: do_install_ptest_base (log file is located at
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/log.do_ins
tall_ptest_base.25330)
ERROR: Task 2
(/buildarea/poky/meta-openembedded/meta-oe/recipes-support/numactl/numactl_
2.0.10.bb,
do_install_ptest_base) failed with exit code '1'
NOTE: Tasks Summary: Attempted 557 tasks of which 507 didn't need to be rerun
and 1 failed.
Waiting for 0 running tasks to finish:


Thanks,
Yi


在 2015年07月24日 15:43, Li xin 写道:
 1) Update Fix-the-test-output-format.patch,since the contents has been
 changed.

 2) Update the checksum, beginline and endline of LICENSE file, but the
 LICENSE has not been changed.

 3) Remove libdir=${D}/${libdir} to avoid build Warning:
 QA Issue: numactl: Files/directories were installed but not shipped in
 any package

 Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
 ---
   .../numactl/Fix-the-test-output-format.patch   | 41
--
   .../{numactl_2.0.9.bb = numactl_2.0.10.bb}|  8 ++---
   2 files changed, 27 insertions(+), 22 deletions(-)
   rename meta-oe/recipes-support/numactl/{numactl_2.0.9.bb =
 numactl_2.0.10.bb} (80%)

 diff --git
 a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.p
 atch
 b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.p
 atch
 index 8c309a4..7d52503 100644
 ---
 a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.p
 atch
 +++ b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-form
 +++ at.patch
 @@ -1,26 +1,30 @@
 -[PATCH] Fix the test output format
 +From 59fd750a84bbe5874dec936d2bee9ef11a1b6505 Mon Sep 17 00:00:00
 +2001
 +From: Li xin lixin.f...@cn.fujitsu.com
 +Date: Tue, 21 Jul 2015 02:01:22 +0900
 +Subject: [PATCH] Fix the test output format

   Upstream-Status: Pending

   Signed-off-by: Roy Li rongqing...@windriver.com
 +Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
   ---
 - test/regress  |6 +++---
 - test/regress2 |9 -
 - 2 files changed, 7 insertions(+), 8 deletions(-)
 + test/regress  |  6 +++---
 + test/regress2 | 11 +--
 + 2 files changed, 8 insertions(+), 9 deletions(-)

   diff --git a/test/regress b/test/regress -index 05eff5b..10d72f7
 100755
 +index 2ce1705..d086a47 100755
   --- a/test/regress
   +++ b/test/regress
 -@@ -73,6 +73,7 @@ probe_hardware()
 +@@ -74,6 +74,7 @@ probe_hardware()
  if [ $numnodes -lt 2 ] ; then
  echo need at least two nodes with at least $NEEDPAGES each of
  echo free memory for mempolicy regression tests
   +  echo FAIL: numa regress
 -exit 1
 +exit 77  # Skip test
  fi
}
 -@@ -206,10 +207,9 @@ main()
 +@@ -207,10 +208,9 @@ main()
  rm A B

  if [ $EXIT = 0 ] ; then
 @@ -34,26 +38,27 @@ index 05eff5b..10d72f7 100755
}

   diff --git a/test/regress2 b/test/regress2 -index 6a254fa..9c97943
 100755
 +index aa6ea41..450c510 100755
   --- a/test/regress2
   +++ b/test/regress2
 -@@ -6,12 +6,11 @@ VALGRIND=${VALGRIND:-}
 - export LD_LIBRARY_PATH=`pwd`/..
 +@@ -9,12 +9,11 @@ testdir=`dirname $0`  export
 +PATH=${builddir}:$PATH

T() {
   -   echo $@
   -   if ! $VALGRIND $@ ;  then
   -echo  $1 FAILED
   -exit 1
 -+   if ! $VALGRIND $@ 21 1/dev/null;  then
 -+ echo  FAIL: $1
 -+   else
 -+ echo PASS: $1
 -fi
 +-   fi
   -   echo
 ++   if ! $VALGRIND $@ 21 1/dev/null;  then
 ++  echo  FAIL: $1
 ++   else
 ++  echo PASS: $1
 ++   fi
}

 - # various tests
 + # still broken
   --
 -1.7.10.4
 +1.8.4.2

 diff --git a/meta-oe/recipes-support

Re: [oe] [meta-oe][PATCH] numactl: upgrade 2.0.9 - 2.0.10

2015-08-03 Thread Li, Xin
Hi, Yi,

I am unfamiliar with ptest.
Since binaries in test directory have been changed by default in 2.0.10
So how about the modify as following:
-
diff --git a/meta-oe/recipes-support/numactl/numactl_2.0.10.bb 
b/meta-oe/recipes-support/numactl/numactl_2.0.10.bb
index 3a10ebb..148a44b 100644
--- a/meta-oe/recipes-support/numactl/numactl_2.0.10.bb
+++ b/meta-oe/recipes-support/numactl/numactl_2.0.10.bb
@@ -30,10 +30,8 @@ do_install() {

 do_install_ptest() {
#install tests binaries
-local test_binaries=checkaffinity checktopology distance  \
-   ftok mbind_mig_pages migrate_pages move_pages mynode\
-   nodemap pagesize prefered printcpu randmap realloc_test \
-   regress regress2 runltp shmtest tbitmap tshared bind_range
+local test_binaries=checkaffinity checktopology \
+   numademo printcpu regress regress2 runltp shmtest

[ ! -d ${D}/${PTEST_PATH}/test ]  mkdir -p ${D}/${PTEST_PATH}/test
for i in $test_binaries; do


Cheers,
Li

-Original Message-
From: openembedded-devel-boun...@lists.openembedded.org
[mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of Li,
Xin
Sent: Tuesday, August 04, 2015 10:18 AM
To: Yi Zhao
Cc: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] [meta-oe][PATCH] numactl: upgrade 2.0.9 - 2.0.10

Hi, Yi,

Thank you very much for doing test for me.
I can reproduce the error.
Patch V2 will be sent.

Cheers,
Li
-Original Message-
From: Yi Zhao [mailto:yi.z...@windriver.com]
Sent: Monday, August 03, 2015 5:15 PM
To: Li, Xin/李 欣
Cc: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] [meta-oe][PATCH] numactl: upgrade 2.0.9 - 2.0.10

Hi,

I got an error for do_install_ptest_base:

ERROR: Function failed: do_install_ptest_base (log file is located at
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/l
og.do_ins
tall_ptest_base.25330)
ERROR: Logfile of failure stored in:
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/l
og.do_ins
tall_ptest_base.25330
Log data follows:
| DEBUG: SITE files ['endian-little', 'common-linux', 'common-glibc',
'bit-64', 'x86_64-linux', 'common']
| DEBUG: Executing shell function do_install_ptest_base
| install: cannot stat
'/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/numac
tl-2.0.10
/test/distance':
No such file or directory
| WARNING:
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/r
un.do_in
stall_ptest_base.25330:1
exit 1 from
|   install -m 0755
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/numact
l-2.0.10/
test/$i
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/image/
usr/lib64
/numactl/ptest/test
| ERROR: Function failed: do_install_ptest_base (log file is located at
/buildarea2/build/tmp/work/core2-64-poky-linux/numactl/2.0.10-r0/temp/l
og.do_ins
tall_ptest_base.25330)
ERROR: Task 2
(/buildarea/poky/meta-openembedded/meta-oe/recipes-support/numactl/numa
ctl_
2.0.10.bb,
do_install_ptest_base) failed with exit code '1'
NOTE: Tasks Summary: Attempted 557 tasks of which 507 didn't need to be
rerun and 1 failed.
Waiting for 0 running tasks to finish:


Thanks,
Yi


在 2015年07月24日 15:43, Li xin 写道:
 1) Update Fix-the-test-output-format.patch,since the contents has
 been changed.

 2) Update the checksum, beginline and endline of LICENSE file, but
 the LICENSE has not been changed.

 3) Remove libdir=${D}/${libdir} to avoid build Warning:
 QA Issue: numactl: Files/directories were installed but not shipped
 in any package

 Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
 ---
   .../numactl/Fix-the-test-output-format.patch   | 41
--
   .../{numactl_2.0.9.bb = numactl_2.0.10.bb}|  8 ++---
   2 files changed, 27 insertions(+), 22 deletions(-)
   rename meta-oe/recipes-support/numactl/{numactl_2.0.9.bb =
 numactl_2.0.10.bb} (80%)

 diff --git
 a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.
 p
 atch
 b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.
 p
 atch
 index 8c309a4..7d52503 100644
 ---
 a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.
 p
 atch
 +++ b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-for
 +++ m
 +++ at.patch
 @@ -1,26 +1,30 @@
 -[PATCH] Fix the test output format
 +From 59fd750a84bbe5874dec936d2bee9ef11a1b6505 Mon Sep 17 00:00:00
 +2001
 +From: Li xin lixin.f...@cn.fujitsu.com
 +Date: Tue, 21 Jul 2015 02:01:22 +0900
 +Subject: [PATCH] Fix the test output format

   Upstream-Status: Pending

   Signed-off-by: Roy Li rongqing...@windriver.com
 +Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
   ---
 - test/regress  |6 +++---
 - test/regress2 |9 -
 - 2 files changed, 7 insertions(+), 8 deletions(-)
 + test/regress  |  6 +++---
 + test/regress2 | 11

[oe] [meta-oe][PATCH 2/2] ttf-dejavu: upgrade 2.23 - 2.35

2015-08-02 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../ttf-fonts/{ttf-dejavu_2.23.bb = ttf-dejavu_2.35.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/ttf-fonts/{ttf-dejavu_2.23.bb = 
ttf-dejavu_2.35.bb} (92%)

diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.23.bb 
b/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.35.bb
similarity index 92%
rename from meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.23.bb
rename to meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.35.bb
index 2b73b1e..3ce791b 100644
--- a/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.23.bb
+++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.35.bb
@@ -40,5 +40,5 @@ FILES_${PN}-serif   = 
${datadir}/fonts/truetype/DejaVuSerif.ttf ${datad
 FILES_${PN}-serif-condensed = 
${datadir}/fonts/truetype/DejaVuSerifCondensed*.ttf
 FILES_${PN}-common  = ${sysconfdir}
 
-SRC_URI[md5sum] = ff871dff0b3e8a11cd5c54478f11073f
-SRC_URI[sha256sum] = 
243642a1c3f4b6fd00125f5772ac5c8e4d0bb6586f5abb05829ead4b83ad5233
+SRC_URI[md5sum] = 59eaca5acf5c7c8212e92778e3e01f32
+SRC_URI[sha256sum] = 
f6d7965586101ff3a8a5c3ec503e082bb6a9604ff53413e10702e5917c194d88
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 1/2] tk: upgrade 8.6.0 - 8.6.4

2015-08-02 Thread Li xin
update content of non-linux.diff

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../configure.use.fontconfig.with.xft.patch|  0
 .../tcltk/{tk-8.6.0 = tk}/confsearch.diff |  0
 .../tcltk/{tk-8.6.0 = tk}/fix-xft.diff|  0
 .../tcltk/{tk-8.6.0 = tk}/non-linux.diff  | 22 ++
 .../tcltk/{tk-8.6.0 = tk}/tklibrary.diff  |  0
 .../tcltk/{tk-8.6.0 = tk}/tkprivate.diff  |  0
 .../tcltk/{tk_8.6.0.bb = tk_8.6.4.bb} |  4 ++--
 7 files changed, 4 insertions(+), 22 deletions(-)
 rename meta-oe/recipes-devtools/tcltk/{tk-8.6.0 = 
tk}/configure.use.fontconfig.with.xft.patch (100%)
 rename meta-oe/recipes-devtools/tcltk/{tk-8.6.0 = tk}/confsearch.diff (100%)
 rename meta-oe/recipes-devtools/tcltk/{tk-8.6.0 = tk}/fix-xft.diff (100%)
 rename meta-oe/recipes-devtools/tcltk/{tk-8.6.0 = tk}/non-linux.diff (67%)
 rename meta-oe/recipes-devtools/tcltk/{tk-8.6.0 = tk}/tklibrary.diff (100%)
 rename meta-oe/recipes-devtools/tcltk/{tk-8.6.0 = tk}/tkprivate.diff (100%)
 rename meta-oe/recipes-devtools/tcltk/{tk_8.6.0.bb = tk_8.6.4.bb} (94%)

diff --git 
a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/configure.use.fontconfig.with.xft.patch
 b/meta-oe/recipes-devtools/tcltk/tk/configure.use.fontconfig.with.xft.patch
similarity index 100%
rename from 
meta-oe/recipes-devtools/tcltk/tk-8.6.0/configure.use.fontconfig.with.xft.patch
rename to 
meta-oe/recipes-devtools/tcltk/tk/configure.use.fontconfig.with.xft.patch
diff --git a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/confsearch.diff 
b/meta-oe/recipes-devtools/tcltk/tk/confsearch.diff
similarity index 100%
rename from meta-oe/recipes-devtools/tcltk/tk-8.6.0/confsearch.diff
rename to meta-oe/recipes-devtools/tcltk/tk/confsearch.diff
diff --git a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/fix-xft.diff 
b/meta-oe/recipes-devtools/tcltk/tk/fix-xft.diff
similarity index 100%
rename from meta-oe/recipes-devtools/tcltk/tk-8.6.0/fix-xft.diff
rename to meta-oe/recipes-devtools/tcltk/tk/fix-xft.diff
diff --git a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/non-linux.diff 
b/meta-oe/recipes-devtools/tcltk/tk/non-linux.diff
similarity index 67%
rename from meta-oe/recipes-devtools/tcltk/tk-8.6.0/non-linux.diff
rename to meta-oe/recipes-devtools/tcltk/tk/non-linux.diff
index 9309fc4..7d31f9f 100644
--- a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/non-linux.diff
+++ b/meta-oe/recipes-devtools/tcltk/tk/non-linux.diff
@@ -3,7 +3,7 @@ building on non-linux Debian architectures.
 
 --- tk8.5-8.5.8.orig/unix/configure
 +++ tk8.5-8.5.8/unix/configure
-@@ -4742,6 +4742,9 @@
+@@ -4447,6 +4447,9 @@
if test `uname -s` = AIX ; then
tcl_cv_sys_version=AIX-`uname -v`.`uname -r`
fi
@@ -12,16 +12,7 @@ building on non-linux Debian architectures.
 +  fi
fi
fi
- 
-@@ -5546,7 +5549,7 @@
- fi
- 
-   ;;
--  Linux*)
-+  Linux*|GNU*|NetBSD-Debian)
-   SHLIB_CFLAGS=-fPIC
-   SHLIB_LD_LIBS='${LIBS}'
-   SHLIB_SUFFIX=.so
+
 --- tk8.5-8.5.8.orig/unix/tcl.m4
 +++ tk8.5-8.5.8/unix/tcl.m4
 @@ -962,6 +962,9 @@
@@ -34,12 +25,3 @@ building on non-linux Debian architectures.
fi
fi
  ])
-@@ -1422,7 +1425,7 @@
-   ])
-   ])
-   ;;
--  Linux*)
-+  Linux*|GNU*|NetBSD-Debian)
-   SHLIB_CFLAGS=-fPIC
-   SHLIB_LD_LIBS='${LIBS}'
-   SHLIB_SUFFIX=.so
diff --git a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/tklibrary.diff 
b/meta-oe/recipes-devtools/tcltk/tk/tklibrary.diff
similarity index 100%
rename from meta-oe/recipes-devtools/tcltk/tk-8.6.0/tklibrary.diff
rename to meta-oe/recipes-devtools/tcltk/tk/tklibrary.diff
diff --git a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/tkprivate.diff 
b/meta-oe/recipes-devtools/tcltk/tk/tkprivate.diff
similarity index 100%
rename from meta-oe/recipes-devtools/tcltk/tk-8.6.0/tkprivate.diff
rename to meta-oe/recipes-devtools/tcltk/tk/tkprivate.diff
diff --git a/meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb 
b/meta-oe/recipes-devtools/tcltk/tk_8.6.4.bb
similarity index 94%
rename from meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb
rename to meta-oe/recipes-devtools/tcltk/tk_8.6.4.bb
index 14c6ce5..d8eca50 100644
--- a/meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb
+++ b/meta-oe/recipes-devtools/tcltk/tk_8.6.4.bb
@@ -26,8 +26,8 @@ SRC_URI = \
 file://fix-xft.diff \
 file://configure.use.fontconfig.with.xft.patch \
 
-SRC_URI[md5sum] = b883a1a3c489c17413fb602a94bf54e8
-SRC_URI[sha256sum] = 
5c708b2b6f658916df59190b27750fa1ea2bc10992108e10f961c0700f058de6
+SRC_URI[md5sum] = 261754d7dc2a582f00e3554e1fea
+SRC_URI[sha256sum] = 
08f99df85e5dc9c4271762163c6aabb962c8b297dc5c4c1af8bdd05fc2dd26c1
 
 S = ${WORKDIR}/${BPN}${PV}/unix
 
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH] opensaf: upgrade 4.5.0 - 4.6.0

2015-07-31 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-daemons/opensaf/{opensaf_4.5.0.bb = opensaf_4.6.0.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-networking/recipes-daemons/opensaf/{opensaf_4.5.0.bb = 
opensaf_4.6.0.bb} (94%)

diff --git a/meta-networking/recipes-daemons/opensaf/opensaf_4.5.0.bb 
b/meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb
similarity index 94%
rename from meta-networking/recipes-daemons/opensaf/opensaf_4.5.0.bb
rename to meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb
index 686407a..83cb1be 100644
--- a/meta-networking/recipes-daemons/opensaf/opensaf_4.5.0.bb
+++ b/meta-networking/recipes-daemons/opensaf/opensaf_4.6.0.bb
@@ -20,8 +20,8 @@ SRC_URI = 
${SOURCEFORGE_MIRROR}/${BPN}/releases/${BPN}-${PV}.tar.gz \
file://0001-plmcd-error-fix.patch \

 
-SRC_URI[md5sum] = 534c0a99438a62c4c8dda56cfa67300c
-SRC_URI[sha256sum] = 
2f5ba57fe67e94099c0df82d0a0dd207b5c583c93030035ba354c97b5471b590
+SRC_URI[md5sum] = a1ceddb517c0972aa7e899b092d7f464
+SRC_URI[sha256sum] = 
f6ea754a145ae42552f328f96c32f38429ad06478a351b9d0aed812adcecb2b4
 
 SECTION = admin
 LICENSE = LGPLv2.1
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] smartmontools: upgrade 6.2 - 6.4

2015-07-31 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../smartmontools/{smartmontools_6.2.bb = smartmontools_6.4.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-extended/smartmontools/{smartmontools_6.2.bb = 
smartmontools_6.4.bb} (93%)

diff --git a/meta-oe/recipes-extended/smartmontools/smartmontools_6.2.bb 
b/meta-oe/recipes-extended/smartmontools/smartmontools_6.4.bb
similarity index 93%
rename from meta-oe/recipes-extended/smartmontools/smartmontools_6.2.bb
rename to meta-oe/recipes-extended/smartmontools/smartmontools_6.4.bb
index fd7b1b8..4e51876 100644
--- a/meta-oe/recipes-extended/smartmontools/smartmontools_6.2.bb
+++ b/meta-oe/recipes-extended/smartmontools/smartmontools_6.4.bb
@@ -24,8 +24,8 @@ PACKAGECONFIG ??= ${@base_contains('DISTRO_FEATURES', 
'libcap-ng', 'libcap-ng',
 PACKAGECONFIG[libcap-ng] = --with-libcap-ng=yes,--with-libcap-ng=no,libcap-ng
 PACKAGECONFIG[selinux] = --with-selinux=yes,--with-selinux=no,libselinux
 
-SRC_URI[md5sum] = d44f84081a12cef79cd17f78044351fc
-SRC_URI[sha256sum] = 
486f660579bb0fb4f6b927ded7531cb1f99685c666397377761c5b04dd96065b
+SRC_URI[md5sum] = 56812c8312fd123ed40ef65afde1049e
+SRC_URI[sha256sum] = 
eab75600c1eda9c34b13097db71138ab376f3dad8a6a4667fb4d1d081feb7a85
 
 inherit autotools update-rc.d systemd
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 5/8] xlsatoms: upgrade 1.1.1 - 1.1.2

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../xorg-app/{xlsatoms_1.1.1.bb = xlsatoms_1.1.2.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xlsatoms_1.1.1.bb = 
xlsatoms_1.1.2.bb} (73%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xlsatoms_1.1.1.bb 
b/meta-oe/recipes-graphics/xorg-app/xlsatoms_1.1.2.bb
similarity index 73%
rename from meta-oe/recipes-graphics/xorg-app/xlsatoms_1.1.1.bb
rename to meta-oe/recipes-graphics/xorg-app/xlsatoms_1.1.2.bb
index dd43213..723d4e2 100644
--- a/meta-oe/recipes-graphics/xorg-app/xlsatoms_1.1.1.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xlsatoms_1.1.2.bb
@@ -10,5 +10,5 @@ LIC_FILES_CHKSUM = 
file://COPYING;md5=2b08d9e2e718ac83e6fe2b974d4b5fd8
 DEPENDS += libxmu
 BBCLASSEXTEND = native
 
-SRC_URI[md5sum] = 9d0e16d116d1c89e6b668c1b2672eb57
-SRC_URI[sha256sum] = 
3b8bd98c1ca9789178db80bca75556b0c76e5092403014995d5ddaa3117536f9
+SRC_URI[md5sum] = 5dcb6e6c4b28c8d7aeb45257f5a72a7d
+SRC_URI[sha256sum] = 
47e5dc7c3dbda6db2cf8c00cedac1722835c1550aa21cfdbc9ba83906694dea4
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 7/8] xterm: upgrade 303 - 308

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-oe/recipes-graphics/xorg-app/{xterm_303.bb = xterm_308.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xterm_303.bb = xterm_308.bb} (86%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_303.bb 
b/meta-oe/recipes-graphics/xorg-app/xterm_308.bb
similarity index 86%
rename from meta-oe/recipes-graphics/xorg-app/xterm_303.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_308.bb
index cac40c9..9198ca2 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_303.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_308.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = 
file://xterm.h;beginline=3;endline=31;md5=540cf18ccc16bc3c5f
 
 SRC_URI = http://invisible-mirror.net/archives/${BPN}/${BP}.tgz;
 
-SRC_URI[md5sum] = 48f6d49b2b6b6933d501d767cbed9254
-SRC_URI[sha256sum] = 
8af29987bda9b77205ebf6233aaa5c347e5f2407310b62ac9ba92a658257f058
+SRC_URI[md5sum] = 1ec76c1a79a70de4f82c24c527ef4626
+SRC_URI[sha256sum] = 
c5bf7377a5bf35e34b7e3a4ab6c848fbc89e8901dd98f8b237662a72bdbfe372
 
 EXTRA_OECONF =  --x-includes=${STAGING_INCDIR} \
  --x-libraries=${STAGING_LIBDIR} \
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 8/8] twm: upgrade 1.0.8 - 1.0.9

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-oe/recipes-graphics/xorg-app/{twm_1.0.8.bb = twm_1.0.9.bb} | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{twm_1.0.8.bb = twm_1.0.9.bb} (74%)

diff --git a/meta-oe/recipes-graphics/xorg-app/twm_1.0.8.bb 
b/meta-oe/recipes-graphics/xorg-app/twm_1.0.9.bb
similarity index 74%
rename from meta-oe/recipes-graphics/xorg-app/twm_1.0.8.bb
rename to meta-oe/recipes-graphics/xorg-app/twm_1.0.9.bb
index 3574ba9..41c804b 100644
--- a/meta-oe/recipes-graphics/xorg-app/twm_1.0.8.bb
+++ b/meta-oe/recipes-graphics/xorg-app/twm_1.0.9.bb
@@ -5,9 +5,8 @@ DEPENDS +=  libxext libxt libxmu bison-native
 LICENSE = MIT
 LIC_FILES_CHKSUM = file://COPYING;md5=4c6d42ef60e8166aa26606524c0b9586
 
-
-SRC_URI[md5sum] = 4b28317d4a9f7ca61bef8462e132bd4c
-SRC_URI[sha256sum] = 
7660352353d632127ff50390991706aa660b28a4ada816c2582ac02720722e44
+SRC_URI[md5sum] = 59a6f076cdacb5f6945dac809bcf4906
+SRC_URI[sha256sum] = 
c575167ac33edf3bd1592f1bedfe0559debb128ed5fb4873c1278e3be166310a
 
 FILES_${PN} += ${datadir}/X11/twm/system.twmrc
 ALTERNATIVE_NAME = x-window-manager
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 6/8] xlsfonts: upgrade 1.0.4 - 1.0.5

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../xorg-app/{xlsfonts_1.0.4.bb = xlsfonts_1.0.5.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xlsfonts_1.0.4.bb = 
xlsfonts_1.0.5.bb} (65%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.4.bb 
b/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.5.bb
similarity index 65%
rename from meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.4.bb
rename to meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.5.bb
index e6985d0..9feed75 100644
--- a/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.4.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.5.bb
@@ -6,5 +6,5 @@ SECTION = x11/app
 LICENSE = MIT
 LIC_FILES_CHKSUM = file://COPYING;md5=5ec74dd7ea4d10c4715a7c44f159a40b
 
-SRC_URI[md5sum] = 5a2b476c2d84759529f01e0cd06145fe
-SRC_URI[sha256sum] = 
28179185ec2bf81dfe13652d65bdb2a4ae74e2775df591a62d66a70f80e90cd2
+SRC_URI[md5sum] = 6f5711bef8c765857a0887a91476283b
+SRC_URI[sha256sum] = 
40295bec35077cee93be2e4c26cc00268ed6ace779ae6e97766a866c1e3927fa
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 1/8] xf86-input-void: upgrade 1.4.0 - 1.4.1

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../{xf86-input-void_1.4.0.bb = xf86-input-void_1.4.1.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-driver/{xf86-input-void_1.4.0.bb = 
xf86-input-void_1.4.1.bb} (58%)

diff --git a/meta-oe/recipes-graphics/xorg-driver/xf86-input-void_1.4.0.bb 
b/meta-oe/recipes-graphics/xorg-driver/xf86-input-void_1.4.1.bb
similarity index 58%
rename from meta-oe/recipes-graphics/xorg-driver/xf86-input-void_1.4.0.bb
rename to meta-oe/recipes-graphics/xorg-driver/xf86-input-void_1.4.1.bb
index fec64cb..ca0b486 100644
--- a/meta-oe/recipes-graphics/xorg-driver/xf86-input-void_1.4.0.bb
+++ b/meta-oe/recipes-graphics/xorg-driver/xf86-input-void_1.4.1.bb
@@ -4,5 +4,5 @@ PR = ${INC_PR}.0
 
 LIC_FILES_CHKSUM = file://COPYING;md5=4be6a915bfbf111cd88706fc6a6f141b
 
-SRC_URI[md5sum] = 93821f21e807260b05431c62437a8b32
-SRC_URI[sha256sum] = 
2ab95865252c64cc88050fa0089a74e063c357b71907bf9be7886047c4987505
+SRC_URI[md5sum] = 5227013b52b3ca85d6b7ec8adea988d4
+SRC_URI[sha256sum] = 
f96e4f0a622821bf43a74bd419f2a18423343996c9d243c7e1430ba2d142339c
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 2/8] xgamma: upgrade 1.0.5 - 1.0.6

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-graphics/xorg-app/{xgamma_1.0.5.bb = xgamma_1.0.6.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xgamma_1.0.5.bb = xgamma_1.0.6.bb} 
(71%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.5.bb 
b/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.6.bb
similarity index 71%
rename from meta-oe/recipes-graphics/xorg-app/xgamma_1.0.5.bb
rename to meta-oe/recipes-graphics/xorg-app/xgamma_1.0.6.bb
index 6fb9259..4949616 100644
--- a/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.5.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.6.bb
@@ -11,5 +11,5 @@ DEPENDS += libxxf86vm
 
 BBCLASSEXTEND = native
 
-SRC_URI[md5sum] = c06067f572bc4a5298f324f27340da95
-SRC_URI[sha256sum] = 
e322a2fea80d559c09d6bc285ebe1a9e454dbeae2a07116cb7d2207db9d2c310
+SRC_URI[md5sum] = 90b4305157c2b966d5180e2ee61262be
+SRC_URI[sha256sum] = 
0ef1c35b5c18b1b22317f455c8df13c0a471a8efad63c89c98ae3ce8c2b222d3
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 4/8] xkbprint: upgrade 1.0.3 - 1.0.4

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../xorg-app/{xkbprint_1.0.3.bb = xkbprint_1.0.4.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xkbprint_1.0.3.bb = 
xkbprint_1.0.4.bb} (71%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xkbprint_1.0.3.bb 
b/meta-oe/recipes-graphics/xorg-app/xkbprint_1.0.4.bb
similarity index 71%
rename from meta-oe/recipes-graphics/xorg-app/xkbprint_1.0.3.bb
rename to meta-oe/recipes-graphics/xorg-app/xkbprint_1.0.4.bb
index 64b54dd..26977be 100644
--- a/meta-oe/recipes-graphics/xorg-app/xkbprint_1.0.3.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xkbprint_1.0.4.bb
@@ -9,5 +9,5 @@ DEPENDS += libxkbfile
 
 BBCLASSEXTEND = native
 
-SRC_URI[md5sum] = 526b5ba87cccd05aa700fa628bcfda3e
-SRC_URI[sha256sum] = 
fa846db8e588018134bd550f80eb129e4ddfdb96f3b157603a57ae2cdf5892c0
+SRC_URI[md5sum] = 3c25b40de530112c08bf7d229c5c6a28
+SRC_URI[sha256sum] = 
0b3faab8fefad03dfb7e866f634cf859822801de6b5fc6cf5e0a62857ed93e12
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 3/8] xkbevd: upgrade 1.1.3 - 1.1.4

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-graphics/xorg-app/{xkbevd_1.1.3.bb = xkbevd_1.1.4.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xkbevd_1.1.3.bb = xkbevd_1.1.4.bb} 
(71%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xkbevd_1.1.3.bb 
b/meta-oe/recipes-graphics/xorg-app/xkbevd_1.1.4.bb
similarity index 71%
rename from meta-oe/recipes-graphics/xorg-app/xkbevd_1.1.3.bb
rename to meta-oe/recipes-graphics/xorg-app/xkbevd_1.1.4.bb
index e81a3c9..a6fc9e7 100644
--- a/meta-oe/recipes-graphics/xorg-app/xkbevd_1.1.3.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xkbevd_1.1.4.bb
@@ -9,5 +9,5 @@ DEPENDS += libxkbfile
 
 BBCLASSEXTEND = native
 
-SRC_URI[md5sum] = 37ed71525c63a9acd42e7cde211dcc5b
-SRC_URI[sha256sum] = 
55b2484f9851112c2685d503b64b319f0f98fce74863ef735ecd52b52ceb0116
+SRC_URI[md5sum] = c747faf1f78f5a5962419f8bdd066501
+SRC_URI[sha256sum] = 
2430a2e5302a4cb4a5530c1df8cb3721a149bbf8eb377a2898921a145197f96a
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] mailcap: upgrade 2.1.43 - 2.1.44

2015-07-30 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../mailcap/{mailcap_2.1.43.bb = mailcap_2.1.44.bb}  | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/mailcap/{mailcap_2.1.43.bb = 
mailcap_2.1.44.bb} (83%)

diff --git a/meta-oe/recipes-support/mailcap/mailcap_2.1.43.bb 
b/meta-oe/recipes-support/mailcap/mailcap_2.1.44.bb
similarity index 83%
rename from meta-oe/recipes-support/mailcap/mailcap_2.1.43.bb
rename to meta-oe/recipes-support/mailcap/mailcap_2.1.44.bb
index 95d7d11..d9f5e10 100644
--- a/meta-oe/recipes-support/mailcap/mailcap_2.1.43.bb
+++ b/meta-oe/recipes-support/mailcap/mailcap_2.1.44.bb
@@ -12,12 +12,12 @@ by several applications e.g. to determine MIME types for 
filenames.
 
 SECTION = System Environment/Base
 
-SRC_URI = https://git.fedorahosted.org/cgit/${PN}.git/snapshot/r2-1-43.tar.gz;
-SRC_URI[md5sum] = 8fd185ffae710301de3bc297877a404b
-SRC_URI[sha256sum] = 
a630892b5fe59eb9e3bef30c597de1c2b7f35243dea4b0c995fd482aa20c2d6b
+SRC_URI = 
https://git.fedorahosted.org/cgit/${PN}.git/snapshot/${PN}-r2-1-44.tar.gz;
+SRC_URI[md5sum] = e7de2a5dfaa126d5e0a081af7d908906
+SRC_URI[sha256sum] = 
644da071f918a33e11d1f8db8334010dd325108209d302f800816f4a177ee2e6
 LICENSE = PD  MIT
 LIC_FILES_CHKSUM = file://COPYING;md5=100fcfb84512ccc03ffc7d89ac391305
-S = ${WORKDIR}/r2-1-43
+S = ${WORKDIR}/${PN}-r2-1-44
 do_install() {
 oe_runmake install DESTDIR=${D} sysconfdir=${sysconfdir} mandir=${mandir}
 }
-- 
1.8.4.2

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


[oe] [meta-python][PATCH] python-m2crypto: Error fix for swig = 3.0.5

2015-07-30 Thread Li xin
After swig upgrade to 3.0.6, build the recipes which
depends on python-m2crypto will occur errors like this:
SALT_LEN = m2.PKCS5_SALT_LEN
AttributeError: 'module' object has no attribute 'PKCS5_SALT_LEN'

Reference
https://github.com/martinpaljak/M2Crypto/issues/60#issuecomment-75735489

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../python-m2crypto/0001-M2Crypto-Error-fix.patch  | 162 +
 .../python/python-m2crypto_0.21.1.bb   |   3 +-
 2 files changed, 164 insertions(+), 1 deletion(-)
 create mode 100644 
meta-python/recipes-devtools/python/python-m2crypto/0001-M2Crypto-Error-fix.patch

diff --git 
a/meta-python/recipes-devtools/python/python-m2crypto/0001-M2Crypto-Error-fix.patch
 
b/meta-python/recipes-devtools/python/python-m2crypto/0001-M2Crypto-Error-fix.patch
new file mode 100644
index 000..2a74b68
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python-m2crypto/0001-M2Crypto-Error-fix.patch
@@ -0,0 +1,162 @@
+From 02a24ac541df68033d4efd7e2f8a1b92dc49328d Mon Sep 17 00:00:00 2001
+From: Li xin lixin.f...@cn.fujitsu.com
+Date: Mon, 27 Jul 2015 05:06:20 +0900
+Subject: [PATCH] M2Crypto: Error fix.
+
+After swig upgrade from 3.0.2 to 3.0.6,build the recipes which
+depends on python-m2crypto will occur errors like this:
+SALT_LEN = m2.PKCS5_SALT_LEN
+AttributeError: 'module' object has no attribute 'PKCS5_SALT_LEN'
+since python-m2crypto depends on swig-native
+
+Ref:
+https://github.com/martinpaljak/M2Crypto/issues/60#issuecomment-75735489
+
+This patch is from:
+http://pkgs.fedoraproject.org/cgit/m2crypto.git/tree/m2crypto-0.21.1-swig-3.0.5.patch
+
+Upstream-Status: pending
+
+Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
+---
+ M2Crypto/__init__.py |  4 ++--
+ M2Crypto/m2.py   |  2 +-
+ SWIG/_lib.i  |  4 
+ SWIG/_pkcs7.i|  1 +
+ setup.py | 26 +-
+ 5 files changed, 33 insertions(+), 4 deletions(-)
+
+diff --git a/M2Crypto/__init__.py b/M2Crypto/__init__.py
+index e7acfe7..02f4d28 100644
+--- a/M2Crypto/__init__.py
 b/M2Crypto/__init__.py
+@@ -19,7 +19,7 @@ Copyright 2008-2011 Heikki Toivonen. All rights reserved.
+ version_info = (0, 21, 1)
+ version = '.'.join([str(_v) for _v in version_info])
+ 
+-import __m2crypto
++import _m2crypto
+ import m2
+ import ASN1
+ import AuthCookie
+@@ -57,4 +57,4 @@ import util
+ encrypt=1
+ decrypt=0
+ 
+-__m2crypto.lib_init()
++_m2crypto.lib_init()
+diff --git a/M2Crypto/m2.py b/M2Crypto/m2.py
+index e4bb695..822143f 100644
+--- a/M2Crypto/m2.py
 b/M2Crypto/m2.py
+@@ -25,7 +25,7 @@ Portions created by Open Source Applications Foundation 
(OSAF) are
+ Copyright (C) 2004 OSAF. All Rights Reserved.
+ 
+ 
+-from __m2crypto import *
++from _m2crypto import *
+ lib_init()
+ 
+ 
+diff --git a/SWIG/_lib.i b/SWIG/_lib.i
+index 42dc180..47a53b8 100644
+--- a/SWIG/_lib.i
 b/SWIG/_lib.i
+@@ -100,6 +100,7 @@ int ssl_verify_callback(int ok, X509_STORE_CTX *ctx) {
+ int cret;
+ int new_style_callback = 0, warning_raised_exception=0;
+ PyGILState_STATE gilstate;
++PyObject *self = NULL; /* bug in SWIG_NewPointerObj as of 3.0.5 */
+ 
+ ssl = (SSL *)X509_STORE_CTX_get_app_data(ctx);
+ 
+@@ -185,6 +186,7 @@ int ssl_verify_callback(int ok, X509_STORE_CTX *ctx) {
+ void ssl_info_callback(const SSL *s, int where, int ret) {
+ PyObject *argv, *retval, *_SSL;
+ PyGILState_STATE gilstate;
++PyObject *self = NULL; /* bug in SWIG_NewPointerObj as of 3.0.5 */
+ 
+ gilstate = PyGILState_Ensure();
+ 
+@@ -204,6 +206,7 @@ DH *ssl_set_tmp_dh_callback(SSL *ssl, int is_export, int 
keylength) {
+ PyObject *argv, *ret, *_ssl;
+ DH *dh;
+ PyGILState_STATE gilstate;
++PyObject *self = NULL; /* bug in SWIG_NewPointerObj as of 3.0.5 */
+ 
+ gilstate = PyGILState_Ensure();
+ 
+@@ -227,6 +230,7 @@ RSA *ssl_set_tmp_rsa_callback(SSL *ssl, int is_export, int 
keylength) {
+ PyObject *argv, *ret, *_ssl;
+ RSA *rsa;
+ PyGILState_STATE gilstate;
++PyObject *self = NULL; /* bug in SWIG_NewPointerObj as of 3.0.5 */
+ 
+ gilstate = PyGILState_Ensure();
+ 
+diff --git a/SWIG/_pkcs7.i b/SWIG/_pkcs7.i
+index 174f40a..7bffbfc 100644
+--- a/SWIG/_pkcs7.i
 b/SWIG/_pkcs7.i
+@@ -157,6 +157,7 @@ PyObject *smime_read_pkcs7(BIO *bio) {
+ BIO *bcont = NULL;
+ PKCS7 *p7;
+ PyObject *tuple, *_p7, *_BIO;
++PyObject *self = NULL; /* bug in SWIG_NewPointerObj as of 3.0.5 */
+ 
+ if (BIO_method_type(bio) == BIO_TYPE_MEM) {
+ /* OpenSSL FAQ explains that this is needed for mem BIO to return EOF,
+diff --git a/setup.py b/setup.py
+index e7c49eb..b98abe0 100644
+--- a/setup.py
 b/setup.py
+@@ -20,6 +20,7 @@ except ImportError:
+ from distutils.command import build_ext
+ 
+ from distutils.core import Extension
++from distutils.file_util import copy_file
+ 
+ 
+ class _M2CryptoBuildExt(build_ext.build_ext):
+@@ -57,7 +58,17 @@ class _M2CryptoBuildExt(build_ext.build_ext

[oe] [meta-oe][PATCH] iotop: upgrade 0.4.4 - 0.6

2015-07-30 Thread Li xin
From: zhangpanpan zhangpp-f...@cn.fujitsu.com

Signed-off-by: Zhang Panpanzhangpp-f...@cn.fujitsu.com
---
 meta-oe/recipes-extended/iotop/{iotop_0.4.4.bb = iotop_0.6.bb} | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-extended/iotop/{iotop_0.4.4.bb = iotop_0.6.bb} (83%)

diff --git a/meta-oe/recipes-extended/iotop/iotop_0.4.4.bb 
b/meta-oe/recipes-extended/iotop/iotop_0.6.bb
similarity index 83%
rename from meta-oe/recipes-extended/iotop/iotop_0.4.4.bb
rename to meta-oe/recipes-extended/iotop/iotop_0.6.bb
index d629245..5dcae98 100644
--- a/meta-oe/recipes-extended/iotop/iotop_0.4.4.bb
+++ b/meta-oe/recipes-extended/iotop/iotop_0.6.bb
@@ -4,14 +4,13 @@ DESCRIPTION = iotop does for I/O usage what top(1) does for 
CPU usage. \
 a table of current I/O usage by processes on the system.
 HOMEPAGE = http://guichaz.free.fr/iotop/;
 
-PR = r1
 
 LICENSE = GPLv2+
 LIC_FILES_CHKSUM = file://COPYING;md5=4325afd396febcb659c36b49533135d4
 
 SRC_URI = http://guichaz.free.fr/iotop/files/${BP}.tar.bz2;
-SRC_URI[md5sum] = cdd38b276cbf238676f5d2bcf098ba9c
-SRC_URI[sha256sum] = 
46f3279fb1a7dfc129b5d00950c6e8389e4aedeb58880e848b88d686483df0b0
+SRC_URI[md5sum] = 5ef9456b26d7694abf3101a72e1e0d1d
+SRC_URI[sha256sum] = 
3adea2a24eda49bbbaeb4e6ed2042355b441dbd7161e883067a02bfc8dcef75b
 
 inherit distutils
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] libdbi: upgrade 0.8.4 - 0.9.0

2015-07-30 Thread Li xin
From: zhangpanpan zhangpp-f...@cn.fujitsu.com

Signed-off-by: Zhang Panpanzhangpp-f...@cn.fujitsu.com
---
 meta-oe/recipes-support/libdbi/libdbi_0.8.4.bb | 6 --
 meta-oe/recipes-support/libdbi/libdbi_0.9.0.bb | 6 ++
 2 files changed, 6 insertions(+), 6 deletions(-)
 delete mode 100644 meta-oe/recipes-support/libdbi/libdbi_0.8.4.bb
 create mode 100644 meta-oe/recipes-support/libdbi/libdbi_0.9.0.bb

diff --git a/meta-oe/recipes-support/libdbi/libdbi_0.8.4.bb 
b/meta-oe/recipes-support/libdbi/libdbi_0.8.4.bb
deleted file mode 100644
index aee0099..000
--- a/meta-oe/recipes-support/libdbi/libdbi_0.8.4.bb
+++ /dev/null
@@ -1,6 +0,0 @@
-require ${PN}.inc
-
-PR = ${INC_PR}.0
-
-SRC_URI[md5sum] = c5f15407ef7b07ba854cd8c9b15b88ff
-SRC_URI[sha256sum] = 
ef38db616f0752ccb09b8ba2eac471722369b8ded50b153c25e238cac2c8de99
diff --git a/meta-oe/recipes-support/libdbi/libdbi_0.9.0.bb 
b/meta-oe/recipes-support/libdbi/libdbi_0.9.0.bb
new file mode 100644
index 000..24eae28
--- /dev/null
+++ b/meta-oe/recipes-support/libdbi/libdbi_0.9.0.bb
@@ -0,0 +1,6 @@
+require ${PN}.inc
+
+PR = ${INC_PR}.0
+
+SRC_URI[md5sum] = 05e2ceeac4bc85fbe40de8b4b22d9ab3
+SRC_URI[sha256sum] = 
dafb6cdca524c628df832b6dd0bf8fabceb103248edb21762c02d3068fca4503
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] ccid: upgrade 1.4.8 - 1.4.19

2015-07-30 Thread Li xin
From: zhangpanpan zhangpp-f...@cn.fujitsu.com

Signed-off-by: Zhang Panpanzhangpp-f...@cn.fujitsu.com
---
 meta-oe/recipes-support/ccid/{ccid_1.4.8.bb = ccid_1.4.19.bb} | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/ccid/{ccid_1.4.8.bb = ccid_1.4.19.bb} (62%)

diff --git a/meta-oe/recipes-support/ccid/ccid_1.4.8.bb 
b/meta-oe/recipes-support/ccid/ccid_1.4.19.bb
similarity index 62%
rename from meta-oe/recipes-support/ccid/ccid_1.4.8.bb
rename to meta-oe/recipes-support/ccid/ccid_1.4.19.bb
index 078f785..f77e069 100644
--- a/meta-oe/recipes-support/ccid/ccid_1.4.8.bb
+++ b/meta-oe/recipes-support/ccid/ccid_1.4.19.bb
@@ -6,11 +6,11 @@ LIC_FILES_CHKSUM = 
file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1
 DEPENDS = virtual/libusb0 pcsc-lite
 RDEPENDS_${PN} = pcsc-lite
 
-SRC_URI = 
https://alioth.debian.org/frs/download.php/file/3768/ccid-${PV}.tar.bz2 \
-   file://no-dep-on-libfl.patch
+SRC_URI = 
https://alioth.debian.org/frs/download.php/file/4132/ccid-${PV}.tar.bz2 \
+  file://no-dep-on-libfl.patch 
 
-SRC_URI[md5sum] = b6c37110f50b059a8ba94f118cfd679a
-SRC_URI[sha256sum] = 
7aca09fa4b9099e423402fd5df424adbafa502888710d1fda6015b6c1ff637ef
+SRC_URI[md5sum] = d1eed995ba9a2eb395a65a8a78090f52
+SRC_URI[sha256sum] = 
cccb2c2bb4e56689efe34559f713102d92f94735542e58d3e4334e1459e934e1
 
 inherit autotools pkgconfig
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] dracut: upgrade 38 - 43

2015-07-29 Thread Li xin
From: zhangpanpan zhangpp-f...@cn.fujitsu.com

Signed-off-by: Zhang Panpanzhangpp-f...@cn.fujitsu.com
---
 meta-initramfs/recipes-devtools/dracut/dracut_git.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb 
b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
index 77c137c..65a5515 100644
--- a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
+++ b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
@@ -5,10 +5,10 @@ LICENSE = GPLv2
 LIC_FILES_CHKSUM = file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
 
 PE = 1
-PV = 038
+PV = 043
 
-# v038 tag
-SRCREV = 267a109a81715c8957f14659593deb7b6255d40e
+# v043 tag
+SRCREV = eab03540cd695d940062af5b55c02e8829aaa526
 SRC_URI = git://git.kernel.org/pub/scm/boot/dracut/dracut.git
 
 S = ${WORKDIR}/git
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH] quagga: upgrade 0.99.23 - 0.99.24.1

2015-07-29 Thread Li xin
Remove --enable-ipv6 to avoid build warning like this:
WARNING: QA Issue: quagga: configure was passed unrecognised options:
--enable-ipv6 [unknown-configure-option]

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-networking/recipes-protocols/quagga/quagga.inc   | 1 -
 .../quagga/{quagga_0.99.23.bb = quagga_0.99.24.1.bb} | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)
 rename meta-networking/recipes-protocols/quagga/{quagga_0.99.23.bb = 
quagga_0.99.24.1.bb} (45%)

diff --git a/meta-networking/recipes-protocols/quagga/quagga.inc 
b/meta-networking/recipes-protocols/quagga/quagga.inc
index 2f0b515..de78e26 100644
--- a/meta-networking/recipes-protocols/quagga/quagga.inc
+++ b/meta-networking/recipes-protocols/quagga/quagga.inc
@@ -65,7 +65,6 @@ EXTRA_OECONF = --sysconfdir=${sysconfdir}/quagga \
 ${@base_contains('DISTRO_FEATURES', 'sysvinit', 
'--enable-watchquagga', '--disable-watchquagga', d)} \
 --enable-ospf-te \
 --enable-opaque-lsa \
---enable-ipv6 \
 --enable-ospfclient=yes \
 --enable-multipath=64 \
 --enable-user=quagga \
diff --git a/meta-networking/recipes-protocols/quagga/quagga_0.99.23.bb 
b/meta-networking/recipes-protocols/quagga/quagga_0.99.24.1.bb
similarity index 45%
rename from meta-networking/recipes-protocols/quagga/quagga_0.99.23.bb
rename to meta-networking/recipes-protocols/quagga/quagga_0.99.24.1.bb
index a56767e..09c4e7d 100644
--- a/meta-networking/recipes-protocols/quagga/quagga_0.99.23.bb
+++ b/meta-networking/recipes-protocols/quagga/quagga_0.99.24.1.bb
@@ -3,7 +3,7 @@ require quagga.inc
 SRC_URI += file://babel-close-the-stdout-stderr-as-in-other-daemons.patch \
 
 
-SRC_URI[md5sum] = d17145e62b6ea14f0f13bb63f59e5166
-SRC_URI[sha256sum] = 
2c7798204f35dc7acea9f206647e8aa3957cae3b21733cdff413b506481a101c
+SRC_URI[md5sum] = 7986bdc2fe6027d4c9216f7f5791e718
+SRC_URI[sha256sum] = 
84ae1a47df085119a8fcab6c43ccea9efb9bc3112388b1dece5a9f0a0262754f
 
 QUAGGASUBDIR = 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] iceauth: upgrade 1.0.6 - 1.0.7

2015-07-29 Thread Li xin
From: zhangpanpan zhangpp-f...@cn.fujitsu.com

Signed-off-by: Zhang Panpanzhangpp-f...@cn.fujitsu.com
---
 .../recipes-graphics/xorg-app/{iceauth_1.0.6.bb = iceauth_1.0.7.bb} | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{iceauth_1.0.6.bb = 
iceauth_1.0.7.bb} (69%)

diff --git a/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.6.bb 
b/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.7.bb
similarity index 69%
rename from meta-oe/recipes-graphics/xorg-app/iceauth_1.0.6.bb
rename to meta-oe/recipes-graphics/xorg-app/iceauth_1.0.7.bb
index 22007d9..f40dec8 100644
--- a/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.6.bb
+++ b/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.7.bb
@@ -11,5 +11,6 @@ BBCLASSEXTEND = native
 
 DEPENDS += libice
 
-SRC_URI[md5sum] = 2527344acc60741a709f4858564c5ae6
-SRC_URI[sha256sum] = 
bd990837353b439e6f45d478a87b8dbfa3f67d72d903e7a9ed4eb8de52f2e2f4
+SRC_URI[md5sum] = 25dab02f8e40d5b71ce29a07dc901b8c
+SRC_URI[sha256sum] = 
1216af2dee99b318fcf8bf9a259915273bcb37a7f1e7859af4f15d0ebf6f3f0a
+
-- 
1.8.4.2

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


Re: [oe] [meta-oe][PATCH] dracut: upgrade 38 - 43

2015-07-29 Thread Li, Xin
Hi, Martin:

Please drop this patch, since Kai from Windriver has sent patch to upgrade 
dracut already. :)

Thanks,
Li

 -Original Message-
 From: openembedded-devel-boun...@lists.openembedded.org
 [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
 Kang Kai
 Sent: Wednesday, July 29, 2015 2:38 PM
 To: openembedded-devel@lists.openembedded.org
 Subject: Re: [oe] [meta-oe][PATCH] dracut: upgrade 38 - 43
 
 Hi Xin,
 
 I had sent the patch to upgrade dracut already.
 
 Thanks,
 Kai
 
 On 2015年07月29日 22:28, Li xin wrote:
  From: zhangpanpan zhangpp-f...@cn.fujitsu.com
 
  Signed-off-by: Zhang Panpanzhangpp-f...@cn.fujitsu.com
  ---
meta-initramfs/recipes-devtools/dracut/dracut_git.bb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
 
  diff --git a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
 b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
  index 77c137c..65a5515 100644
  --- a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
  +++ b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
  @@ -5,10 +5,10 @@ LICENSE = GPLv2
LIC_FILES_CHKSUM =
 file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
 
PE = 1
  -PV = 038
  +PV = 043
 
  -# v038 tag
  -SRCREV = 267a109a81715c8957f14659593deb7b6255d40e
  +# v043 tag
  +SRCREV = eab03540cd695d940062af5b55c02e8829aaa526
SRC_URI = git://git.kernel.org/pub/scm/boot/dracut/dracut.git
 
S = ${WORKDIR}/git
 
 
 --
 Regards,
 Neil | Kai Kang
 
 --
 ___
 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-networking][PATCH 3/4] stunnel: upgrade 5.17 - 5.21

2015-07-29 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-support/stunnel/{stunnel_5.17.bb = stunnel_5.21.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-networking/recipes-support/stunnel/{stunnel_5.17.bb = 
stunnel_5.21.bb} (82%)

diff --git a/meta-networking/recipes-support/stunnel/stunnel_5.17.bb 
b/meta-networking/recipes-support/stunnel/stunnel_5.21.bb
similarity index 82%
rename from meta-networking/recipes-support/stunnel/stunnel_5.17.bb
rename to meta-networking/recipes-support/stunnel/stunnel_5.21.bb
index 4cf529a..88e357a 100644
--- a/meta-networking/recipes-support/stunnel/stunnel_5.17.bb
+++ b/meta-networking/recipes-support/stunnel/stunnel_5.21.bb
@@ -9,8 +9,8 @@ RDEPENDS_${PN} += perl
 
 SRC_URI = ftp://ftp.stunnel.org/stunnel/archive/5.x/${BP}.tar.gz;
 
-SRC_URI[md5sum] = e70f001ee190105c5a10a74f4bd54901
-SRC_URI[sha256sum] = 
c3e79e582621a0827125e35e1c00450190104fc02dc3c5274cb02b05859fd472
+SRC_URI[md5sum] = 3d0a932ea650c0fa0da1e45547afdbb8
+SRC_URI[sha256sum] = 
2aef568b1955f5e233f6a8e17ebce3d30755f1be44c813f5a48e621f785596e3
 
 inherit autotools
 
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 2/4] setxkbmap: upgrade 1.3.0 - 1.3.1

2015-07-29 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../xorg-app/{setxkbmap_1.3.0.bb = setxkbmap_1.3.1.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{setxkbmap_1.3.0.bb = 
setxkbmap_1.3.1.bb} (78%)

diff --git a/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.0.bb 
b/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.1.bb
similarity index 78%
rename from meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.0.bb
rename to meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.1.bb
index 62a3ee2..8402753 100644
--- a/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.0.bb
+++ b/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.1.bb
@@ -15,5 +15,5 @@ DEPENDS += libxkbfile
 
 BBCLASSEXTEND = native
 
-SRC_URI[md5sum] = 1001771344608e120e943a396317c33a
-SRC_URI[sha256sum] = 
3d305c9d1f38224169b2e501ef0665cc3ab52d4dbc2b9a60c9dbb047f77ddec6
+SRC_URI[md5sum] = 2c47a1b8e268df73963c4eb2316b1a89
+SRC_URI[sha256sum] = 
a9ddb3963f263ba13f0ea105d8c45a531832140530217cc559587bb94f02d3e1
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH 4/4] tiptop: upgrade 2.2 - 2.3

2015-07-29 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-oe/recipes-extended/tiptop/{tiptop_2.2.bb = tiptop_2.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-extended/tiptop/{tiptop_2.2.bb = tiptop_2.3.bb} (87%)

diff --git a/meta-oe/recipes-extended/tiptop/tiptop_2.2.bb 
b/meta-oe/recipes-extended/tiptop/tiptop_2.3.bb
similarity index 87%
rename from meta-oe/recipes-extended/tiptop/tiptop_2.2.bb
rename to meta-oe/recipes-extended/tiptop/tiptop_2.3.bb
index a803e26..5a98116 100644
--- a/meta-oe/recipes-extended/tiptop/tiptop_2.2.bb
+++ b/meta-oe/recipes-extended/tiptop/tiptop_2.3.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = 
file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
 DEPENDS = ncurses libxml2
 
 SRC_URI = http://tiptop.gforge.inria.fr/releases/${BP}.tar.gz;
-SRC_URI[md5sum] = 74255a29acf44569db021b080ad3e3f7
-SRC_URI[sha256sum] = 
965cb99b16cb59df78363d83b62877ce8501b0aac1116a86bed8a16aa96b171d
+SRC_URI[md5sum] = f1fba1e90465b0e5a3865b19133fa19d
+SRC_URI[sha256sum] = 
3f07e958b40acaeab98e9eb1326c9f91b0be0a782c1cc2bd7a9e18d31fab18ca
 
 inherit autotools-brokensep
 EXTRA_OECONF = CFLAGS=$CFLAGS -I${STAGING_INCDIR}/libxml2
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] polkit: 0.112 - 0.113

2015-07-28 Thread Li xin
Remove 0001-configure.ac-Check-only-for-libsystemd-not-libsystem.patch,
it is not needed anymore.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 ...c-Check-only-for-libsystemd-not-libsystem.patch | 39 --
 meta-oe/recipes-extended/polkit/polkit_0.112.bb| 47 --
 meta-oe/recipes-extended/polkit/polkit_0.113.bb| 45 +
 3 files changed, 45 insertions(+), 86 deletions(-)
 delete mode 100644 
meta-oe/recipes-extended/polkit/polkit/0001-configure.ac-Check-only-for-libsystemd-not-libsystem.patch
 delete mode 100644 meta-oe/recipes-extended/polkit/polkit_0.112.bb
 create mode 100644 meta-oe/recipes-extended/polkit/polkit_0.113.bb

diff --git 
a/meta-oe/recipes-extended/polkit/polkit/0001-configure.ac-Check-only-for-libsystemd-not-libsystem.patch
 
b/meta-oe/recipes-extended/polkit/polkit/0001-configure.ac-Check-only-for-libsystemd-not-libsystem.patch
deleted file mode 100644
index b9334a8..000
--- 
a/meta-oe/recipes-extended/polkit/polkit/0001-configure.ac-Check-only-for-libsystemd-not-libsystem.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 56cadbc45c5ef98a7b775638d2109c4a09a58c06 Mon Sep 17 00:00:00 2001
-From: Martin Jansa martin.ja...@gmail.com
-Date: Sat, 22 Feb 2014 18:09:57 +0100
-Subject: [PATCH] configure.ac: Check only for libsystemd not libsystemd-login
-
-* they were merged into libsystemd in systemd-209
-
-Upstream-Status: Pending (it would need to be conditional on systemd version 
for upstream to accept this)
-
-Signed-off-by: Martin Jansa martin.ja...@gmail.com

- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index a7b0148..64d513d 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -196,7 +196,7 @@ AC_ARG_ENABLE([libsystemd-login],
-   [enable_libsystemd_login=auto])
- if test $enable_libsystemd_login != no; then
-   PKG_CHECK_MODULES(LIBSYSTEMD_LOGIN,
--[libsystemd-login],
-+[libsystemd],
- have_libsystemd_login=yes,
- have_libsystemd_login=no)
-   if test $have_libsystemd_login = yes; then
-@@ -223,7 +223,7 @@ AS_IF([test x$cross_compiling != xyes ], [
-   AS_IF([test $enable_libsystemd_login = no ], [
- AC_MSG_WARN([ConsoleKit requested but system appears to use systemd])
-   ], [
--AC_MSG_ERROR([ConsoleKit autoconfigured, but systemd is in use 
(missing libsystemd-login pkg-config?)])
-+AC_MSG_ERROR([ConsoleKit autoconfigured, but systemd is in use 
(missing libsystemd pkg-config?)])
-   ])
- ])
-   ])
--- 
-1.8.5.3
-
diff --git a/meta-oe/recipes-extended/polkit/polkit_0.112.bb 
b/meta-oe/recipes-extended/polkit/polkit_0.112.bb
deleted file mode 100644
index f20e1a4..000
--- a/meta-oe/recipes-extended/polkit/polkit_0.112.bb
+++ /dev/null
@@ -1,47 +0,0 @@
-SUMMARY = PolicyKit Authorization Framework
-DESCRIPTION = The polkit package is an application-level toolkit for defining 
and handling the policy that allows unprivileged processes to speak to 
privileged processes.
-HOMEPAGE = http://www.freedesktop.org/wiki/Software/polkit;
-LICENSE = LGPLv2+
-LIC_FILES_CHKSUM = file://COPYING;md5=155db86cdbafa7532b41f390409283eb \
-
file://src/polkit/polkit.h;beginline=1;endline=20;md5=0a8630b0133176d0504c87a0ded39db4
-
-DEPENDS = expat glib-2.0 intltool-native gobject-introspection-stub mozjs
-
-inherit autotools gtk-doc pkgconfig useradd systemd
-
-PACKAGECONFIG = ${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \
- 
${@base_contains('DISTRO_FEATURES','systemd','systemd','consolekit',d)}
-
-PACKAGECONFIG[pam] = --with-authfw=pam,--with-authfw=shadow,libpam,libpam
-PACKAGECONFIG[systemd] = --enable-libsystemd-login=yes 
--with-systemdsystemunitdir=${systemd_unitdir}/system/,--enable-libsystemd-login=no
 --with-systemdsystemunitdir=,systemd
-# there is no --enable/--disable option for consolekit and it's not picked by 
shlibs, so add it to RDEPENDS
-PACKAGECONFIG[consolekit] = ,,,consolekit
-
-PAM_SRC_URI = file://polkit-1_pam.patch
-SRC_URI = 
http://www.freedesktop.org/software/polkit/releases/polkit-${PV}.tar.gz \
-   ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', 
d)} \
-   
file://0001-configure.ac-Check-only-for-libsystemd-not-libsystem.patch \
-   file://0001-do-not-hardcoded-libdir.patch \
-
-
-SRC_URI[md5sum] = b0f2fa00a55f47c6a5d88e9b73f80127
-SRC_URI[sha256sum] = 
d695f43cba4748a822fbe864dd32c4887c5da1c71694a47693ace5e88fcf6af6
-
-EXTRA_OECONF = --with-os-type=moblin --disable-man-pages 
--disable-introspection
-
-PACKAGES =+ ${PN}-examples
-
-FILES_${PN} +=  \
-${libdir}/${BPN}-1 \
-${datadir}/dbus-1 \
-${datadir}/${BPN}-1 \
-
-FILES_${PN}-dbg += ${libdir}/${BPN}-1/.debug
-
-FILES_${PN}-examples = ${bindir}/*example*
-
-USERADD_PACKAGES = ${PN}
-USERADD_PARAM_${PN} = --system --no-create-home --user-group --home-dir

[oe] [meta-networking][PATCH 1/3] netcf: upgrade 0.2.3 - 0.2.8

2015-07-27 Thread Li xin
Add --with-sysinit=systemd to support for systemd init script.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-networking/recipes-support/netcf/netcf_git.bb | 13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/meta-networking/recipes-support/netcf/netcf_git.bb 
b/meta-networking/recipes-support/netcf/netcf_git.bb
index 0e88b30..1a571b3 100644
--- a/meta-networking/recipes-support/netcf/netcf_git.bb
+++ b/meta-networking/recipes-support/netcf/netcf_git.bb
@@ -6,8 +6,8 @@ LICENSE = LGPLv2.1
 
 LIC_FILES_CHKSUM = file://COPYING;md5=bbb461211a33b134d42ed5ee802b37ff
 
-SRCREV = b8a19dc860b38c97c42115d8a559b78853452a4b
-PV = 0.2.3+git${SRCPV}
+SRCREV = 9158278ad35b46ce9a49b2e887483c6d8c287994
+PV = 0.2.8+git${SRCPV}
 
 SRC_URI = git://git.fedorahosted.org/netcf.git;protocol=git \
 
@@ -18,7 +18,7 @@ S = ${WORKDIR}/git
 
 inherit gettext autotools-brokensep pkgconfig
 
-EXTRA_OECONF_append_class-target =  --with-driver=redhat
+EXTRA_OECONF_append_class-target =  --with-driver=redhat 
--with-sysinit=systemd
 do_configure_prepend() {
cd ${S}
rm -f .gitmodules
@@ -26,6 +26,9 @@ do_configure_prepend() {
 }
 
 do_install_append() {
- mv ${D}${sysconfdir}/rc.d/init.d/ ${D}${sysconfdir}
- rm -rf ${D}${sysconfdir}/rc.d/
+install -d ${D}${systemd_unitdir}/system
+mv ${D}${libdir}/systemd/system/ ${D}${systemd_unitdir}/system
+rm -rf ${D}${libdir}/systemd/
 }
+
+FILES_${PN} += ${systemd_unitdir}
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH 3/3] openvpn: upgrade 2.3.6 - 2.3.7

2015-07-27 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-support/openvpn/{openvpn_2.3.6.bb = openvpn_2.3.7.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-networking/recipes-support/openvpn/{openvpn_2.3.6.bb = 
openvpn_2.3.7.bb} (95%)

diff --git a/meta-networking/recipes-support/openvpn/openvpn_2.3.6.bb 
b/meta-networking/recipes-support/openvpn/openvpn_2.3.7.bb
similarity index 95%
rename from meta-networking/recipes-support/openvpn/openvpn_2.3.6.bb
rename to meta-networking/recipes-support/openvpn/openvpn_2.3.7.bb
index 105e369..eaca395 100644
--- a/meta-networking/recipes-support/openvpn/openvpn_2.3.6.bb
+++ b/meta-networking/recipes-support/openvpn/openvpn_2.3.7.bb
@@ -12,8 +12,8 @@ SRC_URI = 
http://swupdate.openvpn.org/community/releases/openvpn-${PV}.tar.gz \
file://openvpn@.service \
file://openvpn-volatile.conf
 
-SRC_URI[md5sum] = 6ca03fe0fd093e0d01601abee808835c
-SRC_URI[sha256sum] = 
7baed2ff39c12e1a1a289ec0b46fcc49ff094ca58b8d8d5f29b36ac649ee5b26
+SRC_URI[md5sum] = 070bca95e478f88dff9ec6a221e2c3f7
+SRC_URI[sha256sum] = 
1f02a4cd6aeb6250ca9311560875b10ce8957a3c9101a8005bd1e17e5b03146e
 
 SYSTEMD_SERVICE_${PN} += openvpn@loopback-server.service 
openvpn@loopback-client.service
 SYSTEMD_AUTO_ENABLE = disable
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH 2/3] radvd: upgrade 1.14 - 2.11

2015-07-27 Thread Li xin
Changes can be found at http://www.litech.org/radvd/CHANGES-2.txt

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-networking/recipes-daemons/radvd/radvd_1.14.bb | 6 --
 meta-networking/recipes-daemons/radvd/radvd_2.11.bb | 5 +
 2 files changed, 5 insertions(+), 6 deletions(-)
 delete mode 100644 meta-networking/recipes-daemons/radvd/radvd_1.14.bb
 create mode 100644 meta-networking/recipes-daemons/radvd/radvd_2.11.bb

diff --git a/meta-networking/recipes-daemons/radvd/radvd_1.14.bb 
b/meta-networking/recipes-daemons/radvd/radvd_1.14.bb
deleted file mode 100644
index bf572e3..000
--- a/meta-networking/recipes-daemons/radvd/radvd_1.14.bb
+++ /dev/null
@@ -1,6 +0,0 @@
-
-require radvd.inc
-
-SRC_URI[md5sum] = a257e05bd6a435ef948d3b407726d56f
-SRC_URI[sha256sum] = 
3b16dd9ef3d6c8b889cdabfdb16c81db8bd61b0f1fc42f6acc52d3cf300c6d07
-
diff --git a/meta-networking/recipes-daemons/radvd/radvd_2.11.bb 
b/meta-networking/recipes-daemons/radvd/radvd_2.11.bb
new file mode 100644
index 000..c0b7532
--- /dev/null
+++ b/meta-networking/recipes-daemons/radvd/radvd_2.11.bb
@@ -0,0 +1,5 @@
+
+require radvd.inc
+
+SRC_URI[md5sum] = 57fc6021f6a5e5472e455937685472a3
+SRC_URI[sha256sum] = 
80ad60b15689e9591a5af393a57a1d93304deeff2e46482f0fd98046c00622f8
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] openldap: upgrade 2.4.40 - 2.4.41

2015-07-26 Thread Li xin
1) Dropped backported patches(commit-id):
-0001-ITS-8027-require-non-empty-AttributeList.patch(c32e747)
-0001-ITS-8046-fix-vrFilter_free.patch(2f1a2dd)

2) Update the checksum of COPYRIGHT,since the date in it has been changed,
but the LICENSE has not been changed.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 ...-ITS-8027-require-non-empty-AttributeList.patch | 30 -
 .../0001-ITS-8046-fix-vrFilter_free.patch  | 38 --
 .../{openldap-2.4.40 = openldap}/initscript   |  0
 .../install-strip.patch|  0
 .../{openldap-2.4.40 = openldap}/kill-icu.patch   |  0
 .../openldap-2.4.28-gnutls-gcrypt.patch|  0
 .../openldap-m4-pthread.patch  |  0
 .../{openldap-2.4.40 = openldap}/slapd.service|  0
 .../thread_stub.patch  |  0
 .../use-urandom.patch  |  0
 .../{openldap_2.4.40.bb = openldap_2.4.41.bb} |  8 ++---
 11 files changed, 3 insertions(+), 73 deletions(-)
 delete mode 100644 
meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8027-require-non-empty-AttributeList.patch
 delete mode 100644 
meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8046-fix-vrFilter_free.patch
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/initscript (100%)
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/install-strip.patch (100%)
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/kill-icu.patch (100%)
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/openldap-2.4.28-gnutls-gcrypt.patch (100%)
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/openldap-m4-pthread.patch (100%)
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/slapd.service (100%)
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/thread_stub.patch (100%)
 rename meta-oe/recipes-support/openldap/{openldap-2.4.40 = 
openldap}/use-urandom.patch (100%)
 rename meta-oe/recipes-support/openldap/{openldap_2.4.40.bb = 
openldap_2.4.41.bb} (96%)

diff --git 
a/meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8027-require-non-empty-AttributeList.patch
 
b/meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8027-require-non-empty-AttributeList.patch
deleted file mode 100644
index 91c2178..000
--- 
a/meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8027-require-non-empty-AttributeList.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From c32e74763f77675b9e144126e375977ed6dc562c Mon Sep 17 00:00:00 2001
-From: Howard Chu h...@openldap.org
-Date: Mon, 19 Jan 2015 22:25:53 +
-Subject: [PATCH] ITS#8027 require non-empty AttributeList
-
-Upstream-Status: Backup
-
-Fix the CVE: https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-1545
-

- servers/slapd/overlays/deref.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/servers/slapd/overlays/deref.c b/servers/slapd/overlays/deref.c
-index 9420e3e..05aa890 100644
 a/servers/slapd/overlays/deref.c
-+++ b/servers/slapd/overlays/deref.c
-@@ -183,7 +183,8 @@ deref_parseCtrl (
-   ber_len_t cnt = sizeof(struct berval);
-   ber_len_t off = 0;
- 
--  if ( ber_scanf( ber, {m{M}}, derefAttr, attributes, cnt, 
off ) == LBER_ERROR )
-+  if ( ber_scanf( ber, {m{M}}, derefAttr, attributes, cnt, 
off ) == LBER_ERROR
-+  || !cnt )
-   {
-   rs-sr_text = Dereference control: derefSpec decoding 
error;
-   rs-sr_err = LDAP_PROTOCOL_ERROR;
--- 
-1.9.1
-
diff --git 
a/meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8046-fix-vrFilter_free.patch
 
b/meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8046-fix-vrFilter_free.patch
deleted file mode 100644
index 8a5c95f..000
--- 
a/meta-oe/recipes-support/openldap/openldap-2.4.40/0001-ITS-8046-fix-vrFilter_free.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 2f1a2dd329b91afe561cd06b872d09630d4edb6a Mon Sep 17 00:00:00 2001
-From: Howard Chu h...@openldap.org
-Date: Wed, 4 Feb 2015 02:03:55 +
-Subject: [PATCH] ITS#8046 fix vrFilter_free
-
-Upstream-Statue: Backup
-
-Fix CVE: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-1546
-

- servers/slapd/filter.c | 10 +++---
- 1 file changed, 3 insertions(+), 7 deletions(-)
-
-diff --git a/servers/slapd/filter.c b/servers/slapd/filter.c
-index b859f73..22c81c8 100644
 a/servers/slapd/filter.c
-+++ b/servers/slapd/filter.c
-@@ -1158,14 +1158,10 @@ get_vrFilter( Operation *op, BerElement *ber,
- void
- vrFilter_free( Operation *op, ValuesReturnFilter *vrf )
- {
--  ValuesReturnFilter  *p, *next;
-+  ValuesReturnFilter  *next;
- 
--  if ( vrf == NULL ) {
--  return;
--  }
--
--  for ( p = vrf; p != NULL; p = next ) {
--  next = p-vrf_next;
-+  for ( ; vrf != NULL; vrf

[oe] [meta-oe][PATCH] numactl: upgrade 2.0.9 - 2.0.10

2015-07-24 Thread Li xin
1) Update Fix-the-test-output-format.patch,since the contents
has been changed.

2) Update the checksum, beginline and endline of LICENSE file,
but the LICENSE has not been changed.

3) Remove libdir=${D}/${libdir} to avoid build Warning:
QA Issue: numactl: Files/directories were installed but not shipped in any 
package

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../numactl/Fix-the-test-output-format.patch   | 41 --
 .../{numactl_2.0.9.bb = numactl_2.0.10.bb}|  8 ++---
 2 files changed, 27 insertions(+), 22 deletions(-)
 rename meta-oe/recipes-support/numactl/{numactl_2.0.9.bb = numactl_2.0.10.bb} 
(80%)

diff --git 
a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch 
b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch
index 8c309a4..7d52503 100644
--- a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch
+++ b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch
@@ -1,26 +1,30 @@
-[PATCH] Fix the test output format
+From 59fd750a84bbe5874dec936d2bee9ef11a1b6505 Mon Sep 17 00:00:00 2001
+From: Li xin lixin.f...@cn.fujitsu.com
+Date: Tue, 21 Jul 2015 02:01:22 +0900
+Subject: [PATCH] Fix the test output format
 
 Upstream-Status: Pending
 
 Signed-off-by: Roy Li rongqing...@windriver.com
+Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
 ---
- test/regress  |6 +++---
- test/regress2 |9 -
- 2 files changed, 7 insertions(+), 8 deletions(-)
+ test/regress  |  6 +++---
+ test/regress2 | 11 +--
+ 2 files changed, 8 insertions(+), 9 deletions(-)
 
 diff --git a/test/regress b/test/regress
-index 05eff5b..10d72f7 100755
+index 2ce1705..d086a47 100755
 --- a/test/regress
 +++ b/test/regress
-@@ -73,6 +73,7 @@ probe_hardware()
+@@ -74,6 +74,7 @@ probe_hardware()
if [ $numnodes -lt 2 ] ; then
echo need at least two nodes with at least $NEEDPAGES each of
echo free memory for mempolicy regression tests
 +  echo FAIL: numa regress
-   exit 1
+   exit 77  # Skip test
fi
  }
-@@ -206,10 +207,9 @@ main()
+@@ -207,10 +208,9 @@ main()
rm A B
  
if [ $EXIT = 0 ] ; then
@@ -34,26 +38,27 @@ index 05eff5b..10d72f7 100755
  }
  
 diff --git a/test/regress2 b/test/regress2
-index 6a254fa..9c97943 100755
+index aa6ea41..450c510 100755
 --- a/test/regress2
 +++ b/test/regress2
-@@ -6,12 +6,11 @@ VALGRIND=${VALGRIND:-}
- export LD_LIBRARY_PATH=`pwd`/..
+@@ -9,12 +9,11 @@ testdir=`dirname $0`
+ export PATH=${builddir}:$PATH
  
  T() {
 -   echo $@ 
 -   if ! $VALGRIND $@ ;  then
 -echo  $1 FAILED
 -exit 1
-+   if ! $VALGRIND $@ 21 1/dev/null;  then
-+echo  FAIL: $1
-+   else
-+echo PASS: $1
-fi
+-   fi
 -   echo
++  if ! $VALGRIND $@ 21 1/dev/null;  then
++ echo  FAIL: $1
++  else
++ echo PASS: $1
++  fi
  }
  
- # various tests
+ # still broken
 -- 
-1.7.10.4
+1.8.4.2
 
diff --git a/meta-oe/recipes-support/numactl/numactl_2.0.9.bb 
b/meta-oe/recipes-support/numactl/numactl_2.0.10.bb
similarity index 80%
rename from meta-oe/recipes-support/numactl/numactl_2.0.9.bb
rename to meta-oe/recipes-support/numactl/numactl_2.0.10.bb
index 29e57d9..3a10ebb 100644
--- a/meta-oe/recipes-support/numactl/numactl_2.0.9.bb
+++ b/meta-oe/recipes-support/numactl/numactl_2.0.10.bb
@@ -8,9 +8,7 @@ RDEPENDS_${PN} = perl
 
 inherit autotools-brokensep ptest
 
-LIC_FILES_CHKSUM = 
file://README;beginline=19;endline=32;md5=5644cc3851cb2499f6c48e52fe198bd9
-SRC_URI[md5sum] = 136685c8eaf9d6569c351fe1d453b30c
-SRC_URI[sha256sum] = 
9ca033e6c14c0f26c20379b0cf9299429fd5a354a79c3c7880fd41ef69f7751c
+LIC_FILES_CHKSUM = 
file://README;beginline=19;endline=32;md5=00b9fb4504ff2afcb7fb2a518780f412
 
 SRC_URI = ftp://oss.sgi.com/www/projects/libnuma/download/${BPN}-${PV}.tar.gz 
\
   file://fix-null-pointer.patch \
@@ -18,12 +16,14 @@ SRC_URI = 
ftp://oss.sgi.com/www/projects/libnuma/download/${BPN}-${PV}.tar.gz \
   file://Makefile \
   file://run-ptest \
   
+SRC_URI[md5sum] = 682c38305b2596967881f3d77bc3fc9c
+SRC_URI[sha256sum] = 
dbdac8fe74f13b2e2864bba352f1597ab1d3345c8c485d7805f58d66f414db61
 
 # ARM does not currently support NUMA
 COMPATIBLE_HOST = ^((?!arm).*)$
 
 do_install() {
-oe_runmake DESTDIR=${D} prefix=${D}/usr libdir=${D}/${libdir} install
+oe_runmake DESTDIR=${D} prefix=${D}/usr install
#remove the empty man2 directory
rm -r ${D}${mandir}/man2
 }
-- 
1.8.4.2

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


[oe] [meta-oe][PATCH] opensc: upgrade 0.14.0 - 0.15.0

2015-07-24 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 meta-oe/recipes-support/opensc/{opensc_0.14.0.bb = opensc_0.15.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/opensc/{opensc_0.14.0.bb = opensc_0.15.0.bb} 
(89%)

diff --git a/meta-oe/recipes-support/opensc/opensc_0.14.0.bb 
b/meta-oe/recipes-support/opensc/opensc_0.15.0.bb
similarity index 89%
rename from meta-oe/recipes-support/opensc/opensc_0.14.0.bb
rename to meta-oe/recipes-support/opensc/opensc_0.15.0.bb
index 87ea2ad..a11b3d8 100644
--- a/meta-oe/recipes-support/opensc/opensc_0.14.0.bb
+++ b/meta-oe/recipes-support/opensc/opensc_0.15.0.bb
@@ -11,8 +11,8 @@ SECTION = System Environment/Libraries
 
 SRC_URI = ${DEBIAN_MIRROR}/main/o/${BPN}/${BPN}_${PV}.orig.tar.gz
 
-SRC_URI[md5sum] = 1ee31dc2e89860458fd984e0cac9795e
-SRC_URI[sha256sum] = 
ffe8bcc704f2ab9a05c6781bc815f00eaf75cba0a1bd21e3142b9194a7bed5c9
+SRC_URI[md5sum] = f266024e5a9630821ffa0ac14f72e369
+SRC_URI[sha256sum] = 
8f8f8cf52e0252334e4dfdccca829b876a3de6340deb772aa0bfe0c0cc10eaf5
 
 S = ${WORKDIR}/OpenSC-${PV}
 DEPENDS = openct pcsc-lite virtual/libiconv openssl
-- 
1.8.4.2

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


[oe] [meta-networking][PATCH] ntp: upgrade 4.2.8p2 - 4.2.8p3

2015-07-23 Thread Li xin
4.2.8p3 fixed CVE-2015-5146 and Bugs.

Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com
---
 .../recipes-support/ntp/{ntp_4.2.8p2.bb = ntp_4.2.8p3.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-networking/recipes-support/ntp/{ntp_4.2.8p2.bb = ntp_4.2.8p3.bb} 
(97%)

diff --git a/meta-networking/recipes-support/ntp/ntp_4.2.8p2.bb 
b/meta-networking/recipes-support/ntp/ntp_4.2.8p3.bb
similarity index 97%
rename from meta-networking/recipes-support/ntp/ntp_4.2.8p2.bb
rename to meta-networking/recipes-support/ntp/ntp_4.2.8p3.bb
index c54da43..71e0b19 100644
--- a/meta-networking/recipes-support/ntp/ntp_4.2.8p2.bb
+++ b/meta-networking/recipes-support/ntp/ntp_4.2.8p3.bb
@@ -23,8 +23,8 @@ SRC_URI = 
http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-${PV}.tar.g
file://ntpd.list \
 
 
-SRC_URI[md5sum] = fa37049383316322d060ec9061ac23a9
-SRC_URI[sha256sum] = 
0d69bc0e95caad43ea04fdad410e756bae1a71e67b1c2bd799b76b55e04c9b31
+SRC_URI[md5sum] = b98b0cbb72f6df04608e1dd5f313808b
+SRC_URI[sha256sum] = 
818ca4f2ed6ca845b1c5ec43f5e6ad905eaa0fc0aab2d509ed6b962a37fbf38f
 
 inherit autotools update-rc.d useradd systemd pkgconfig
 
-- 
1.8.4.2

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


  1   2   >