[oe] [meta-oe][PATCH] upower: add systemd support

2016-09-01 Thread jackie.huang
From: Jackie Huang 

* inherit systemd
* Add PACKAGECONFIG for systemd and control
  it based on DISTRO_FEATURES

Signed-off-by: Jackie Huang 
---
 meta-oe/recipes-support/upower/upower_0.99.4.bb | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-support/upower/upower_0.99.4.bb 
b/meta-oe/recipes-support/upower/upower_0.99.4.bb
index 770f333..2573f12 100644
--- a/meta-oe/recipes-support/upower/upower_0.99.4.bb
+++ b/meta-oe/recipes-support/upower/upower_0.99.4.bb
@@ -8,13 +8,17 @@ SRC_URI = 
"http://upower.freedesktop.org/releases/${BPN}-${PV}.tar.xz;
 SRC_URI[md5sum] = "78800e1ac7f92b24aabdf433e38f75d2"
 SRC_URI[sha256sum] = 
"9ca325a6ccef505529b268ebbbd9becd0ce65a65f6ac7ee31e2e5b17648037b0"
 
-inherit autotools pkgconfig gettext gobject-introspection
+inherit autotools pkgconfig gettext gobject-introspection systemd
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 
'systemd', '', d)}"
 PACKAGECONFIG[idevice] = "--with-idevice,--without-idevice,libimobiledevice 
libplist"
+PACKAGECONFIG[systemd] = "--with-systemdutildir=${systemd_unitdir} 
--with-systemdsystemunitdir=${systemd_system_unitdir}, \
+  --without-systemdutildir 
--without-systemdsystemunitdir,systemd"
 
 EXTRA_OECONF = " --with-backend=linux"
 
+SYSTEMD_SERVICE_${PN} = "upower.service"
+
 do_configure_prepend() {
 sed -i -e s:-nonet:\:g ${S}/doc/man/Makefile.am
 sed -i -e 's: doc : :g' ${S}/Makefile.am
-- 
1.8.5.2

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


[oe] [meta-oe] openjpeg: uprev from 2.1.0 to 2.1.1

2016-09-01 Thread Randy MacLeod
As the package maintainer said, this is mostly a release with:
"the huge amount of critical bug fixes brought to the library since 2 years"
The full list of bugs fixed and other changes is here:
   https://github.com/uclouvain/openjpeg/blob/openjpeg-2.1/CHANGELOG.md

The homepage link was broken so that was fixed.

The project also moved to github and does not appear
to provide tarballs other than via github archives so
the SRC_URI was updated.

An explicit dependency on zlib was added even though cmake was finding
the sysroot version.

Signed-off-by: Randy MacLeod 
---
 .../openjpeg/{openjpeg_2.1.0.bb => openjpeg_2.1.1.bb}  | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-graphics/openjpeg/{openjpeg_2.1.0.bb => 
openjpeg_2.1.1.bb} (55%)

diff --git a/meta-oe/recipes-graphics/openjpeg/openjpeg_2.1.0.bb 
b/meta-oe/recipes-graphics/openjpeg/openjpeg_2.1.1.bb
similarity index 55%
rename from meta-oe/recipes-graphics/openjpeg/openjpeg_2.1.0.bb
rename to meta-oe/recipes-graphics/openjpeg/openjpeg_2.1.1.bb
index d28a865..d767adc 100644
--- a/meta-oe/recipes-graphics/openjpeg/openjpeg_2.1.0.bb
+++ b/meta-oe/recipes-graphics/openjpeg/openjpeg_2.1.1.bb
@@ -1,16 +1,16 @@
 DESCRIPTION = "OpenJPEG library is an open-source JPEG 2000 codec"
-HOMEPAGE = "http://www.openjpeg.org/index.php?menu=main;
+HOMEPAGE = "http://www.openjpeg.org;
 
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c648878b4840d7babaade1303e7f108c"
 
-SRC_URI = 
"${SOURCEFORGE_MIRROR}/project/${BPN}.mirror/${PV}/${BPN}-${PV}.tar.gz"
-SRC_URI[md5sum] = "f6419fcc233df84f9a81eb36633c6db6"
-SRC_URI[sha256sum] = 
"1232bb814fd88d8ed314c94f0bfebb03de8559583a33abbe8c64ef3fc0a8ff03"
+SRC_URI = "https://github.com/uclouvain/${BPN}/archive/v${PV}.tar.gz;
+SRC_URI[md5sum] = "0cc4b2aee0a9b6e9e21b7abcd201a3ec"
+SRC_URI[sha256sum] = 
"82c27f47fc7219e2ed5537ac69545bf15ed8c6ba8e6e1e529f89f7356506dbaa"
 
 inherit cmake
 
-DEPENDS = "libpng tiff lcms"
+DEPENDS = "libpng tiff lcms zlib"
 
 # standard path for *.cmake
 EXTRA_OECMAKE += "-DOPENJPEG_INSTALL_PACKAGE_DIR=${baselib}/cmake \
-- 
1.9.1

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


[oe] [meta-oe][PATCH] rdfind: add initial recipe, rdfind 1.3.4

2016-09-01 Thread Andre McCurdy
  https://rdfind.pauldreik.se/

Signed-off-by: Andre McCurdy 
---
 .../rdfind/files/reproducible_build.patch  | 46 ++
 meta-oe/recipes-support/rdfind/rdfind_1.3.4.bb | 17 
 2 files changed, 63 insertions(+)
 create mode 100644 
meta-oe/recipes-support/rdfind/files/reproducible_build.patch
 create mode 100644 meta-oe/recipes-support/rdfind/rdfind_1.3.4.bb

diff --git a/meta-oe/recipes-support/rdfind/files/reproducible_build.patch 
b/meta-oe/recipes-support/rdfind/files/reproducible_build.patch
new file mode 100644
index 000..36728a7
--- /dev/null
+++ b/meta-oe/recipes-support/rdfind/files/reproducible_build.patch
@@ -0,0 +1,46 @@
+Description: sort the filelist when it is complete to get reproducible 
behaviour
+Author: Reiner Herrmann 
+Bug-Debian: https://bugs.debian.org/795790
+
+Upstream-Status: Pending
+
+Signed-off-by: Andre McCurdy 
+
+Index: rdfind-1.3.4/Fileinfo.hh
+===
+--- rdfind-1.3.4.orig/Fileinfo.hh
 rdfind-1.3.4/Fileinfo.hh
+@@ -189,6 +189,10 @@ public:
+   static bool compareondepth(const Fileinfo , const Fileinfo )
+   {return (a.depth() < b.depth());}
+ 
++  //returns true if a has lower filename than b)
++  static bool compareonfilename(const Fileinfo , const Fileinfo )
++  {return (a.name().compare(b.name()) < 0);}
++
+   //fills with bytes from the file. if lasttype is supplied,
+   //it is used to see if the file needs to be read again - useful if
+   //file is shorter than the length of the bytes field.
+@@ -235,6 +239,10 @@ public:
+   static bool equaldepth(const Fileinfo , const Fileinfo )
+   {return (a.depth()==b.depth());}
+ 
++  //returns true if filenames are equal
++  static bool equalfilename(const Fileinfo , const Fileinfo )
++  {return (a.name()==b.name());}
++
+   //returns true if file is a regular file. call readfileinfo first!
+   bool isRegularFile() {return m_info.is_file;}
+ 
+Index: rdfind-1.3.4/rdfind.cc
+===
+--- rdfind-1.3.4.orig/rdfind.cc
 rdfind-1.3.4/rdfind.cc
+@@ -349,6 +349,7 @@ int main(int narg, char *argv[])
+   cout<

Re: [oe] [meta-java] Unify virtual java providers

2016-09-01 Thread Tim Orling
On Thu, Sep 1, 2016 at 5:03 AM, Pascal Bach  wrote:

> Hi guys
> > It should be properly documented in the readme and the virtual packages
> should be the preferred way for users to depend on java/jre resp javac/jdk
> >
> > An alternative to the above would be:
> >
> > - virtual/jre
> > - virtual/jre-native
> > - virtual/jdk
> > - virtual/jdk-native
> >
> > But this would deviate more from the current naming.
> >
> While testing the proposal above i ran into an issue.
> When I add PROVIDES = "virtual/jre" to the java recipes and i want to
> install multiple java versions via update-alternative I can't do that
> because bitbake tells me:
>
> "Multiple .bb files are due to be built which each provide virtual/jre:"
>
> Now the question for me is if this two mechanism are not intended to work
> together or if I'm doing something wrong.
>
>
This is a hint that you need to set PREFERRED_PROVIDER_foo in your
local.conf (or machine.conf or distro.conf or...)

http://www.yoctoproject.org/docs/2.1/mega-manual/mega-manual.html#var-PREFERRED_PROVIDER

You might also need to set PREFERRED_VERSION, depending on the situation.

My idea would be to allow the user to select a default provider for
> "virtual/jre" but still allow to install an additional specific java
> provider if necessary.
> Is this even possible?
>
> Pascal
> --
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe PATCH] glmark2: Fix build error due a missing space before a macro

2016-09-01 Thread Otavio Salvador
This fixes following error:

../src/native-state-x11.cpp:63:33: error: invalid suffix on literal; C++11 
requires a space between literal and string macro [-Werror=literal-suffix]
 static const char *win_name("glmark2 "GLMARK_VERSION);

Signed-off-by: Otavio Salvador 
---

 ...uild-error-due-missing-space-before-macro.patch | 27 ++
 meta-oe/recipes-benchmark/glmark2/glmark2_git.bb   |  1 +
 2 files changed, 28 insertions(+)
 create mode 100644 
meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch

diff --git 
a/meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch
 
b/meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch
new file mode 100644
index 000..00eb2ed
--- /dev/null
+++ 
b/meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch
@@ -0,0 +1,27 @@
+From 3fb9b6aeed2e2758239e59ba9ba1ca98535fe510 Mon Sep 17 00:00:00 2001
+From: Otavio Salvador 
+Date: Fri, 19 Aug 2016 15:08:44 +
+Subject: [PATCH] Fix build error due missing space before macro
+Organization: O.S. Systems Software LTDA.
+
+Signed-off-by: Otavio Salvador 
+---
+ src/native-state-x11.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/native-state-x11.cpp b/src/native-state-x11.cpp
+index 3b66b77..3c1703b 100644
+--- a/src/native-state-x11.cpp
 b/src/native-state-x11.cpp
+@@ -60,7 +60,7 @@ NativeStateX11::display()
+ bool
+ NativeStateX11::create_window(WindowProperties const& properties)
+ {
+-static const char *win_name("glmark2 "GLMARK_VERSION);
++static const char *win_name("glmark2 " GLMARK_VERSION);
+ 
+ if (!xdpy_) {
+ Log::error("Error: X11 Display has not been initialized!\n");
+-- 
+2.1.4
+
diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb 
b/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb
index 3a1c2e2..396ae70 100644
--- a/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb
+++ b/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb
@@ -15,6 +15,7 @@ PV = "2014.03+${SRCPV}"
 SRC_URI = "git://github.com/glmark2/glmark2.git;protocol=https \
file://build-Check-packages-to-be-used-by-the-enabled-flavo.patch \

file://0001-Fix-wl_surface-should-be-destoryed-after-the-wl_wind.patch \
+   file://Fix-build-error-due-missing-space-before-macro.patch \
file://Fix-configure-for-sqrt-check.patch \
file://Fix-deprecated-declarations.patch"
 SRCREV = "fa71af2dfab711fac87b9504b6fc9862f44bf72a"
-- 
2.9.3

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


Re: [oe] [meta-oe] [PATCH 0/3] Added cpu benchmarks

2016-09-01 Thread Mubin Usman Sayyed
Hi,

> -Original Message-
> From: Martin Jansa [mailto:martin.ja...@gmail.com]
> Sent: Wednesday, August 31, 2016 10:21 PM
> To: openembedded-devel@lists.openembedded.org
> Cc: Manjukumar Harthikote Matha ; Mubin
> Usman Sayyed 
> Subject: Re: [oe] [meta-oe] [PATCH 0/3] Added cpu benchmarks
>
> On Tue, Aug 23, 2016 at 06:32:18PM +0530, Mubin Sayyed wrote:
> > Added recipes for cpu benchmarks dhrystone,whetstone and linpack.
>
> Please use 4 spaces for indentation instead of tabs.
>

I have fixed this in v2.

Thanks,
Mubin
> >
> > Mubin Sayyed (3):
> >   benchmarks:Added recipe for whetstone benchmarks
> >   benchmarks:Added recipe for dhrystone
> >   benchmarks:Added recipe for linpack
> >
> >  .../recipes-benchmark/dhrystone/dhrystone_2.1.bb   | 22
> ++
> >  meta-oe/recipes-benchmark/linpack/linpack_1.0.bb   | 22
> ++
> >  .../recipes-benchmark/whetstone/whetstone_1.0.bb   | 22
> ++
> >  3 files changed, 66 insertions(+)
> >  create mode 100644 meta-oe/recipes-
> benchmark/dhrystone/dhrystone_2.1.bb
> >  create mode 100644 meta-oe/recipes-benchmark/linpack/linpack_1.0.bb
> >  create mode 100644 meta-oe/recipes-
> benchmark/whetstone/whetstone_1.0.bb
> >
> > --
> > 1.9.1
> >
> > --
> > ___
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
> --
> Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com


This email and any attachments are intended for the sole use of the named 
recipient(s) and contain(s) confidential information that may be proprietary, 
privileged or copyrighted under applicable law. If you are not the intended 
recipient, do not read, copy, or forward this email message or any attachments. 
Delete this email message and any attachments immediately.

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


Re: [oe] [meta-oe][PATCH] imagemagick: upgrade patchset

2016-09-01 Thread Martin Jansa
Don't worry, your version is the best so far :).

On Thu, Sep 1, 2016 at 3:54 PM, Trevor Woerner  wrote:

> Oops, I should have checked the mailing list before posting. I only checked
> master and master-next :-)
> --
> ___
> 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


Re: [oe] [meta-oe][PATCH] imagemagick: upgrade patchset

2016-09-01 Thread Trevor Woerner
Oops, I should have checked the mailing list before posting. I only checked
master and master-next :-)
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] mariadb: add libdbi-perl to the depends of mariadb-server

2016-09-01 Thread Martin Jansa
On Tue, Aug 23, 2016 at 11:10:30AM +0800, Zhixiong Chi wrote:
> The commands(mysql_convert_table_format and mysql_setpermission) need
> to the supported API provided by the libdbi-perl package.
> So add the libdbi-perl to the variable RDEPENDS of mariabdb-server.

This isn't possible, libdbi-perl is in meta-perl and mariadb is in
meta-oe.

meta-oe doesn't depend (and cannot) on meta-perl.

> Signed-off-by: Zhixiong Chi 
> ---
>  meta-oe/recipes-support/mysql/mariadb.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-oe/recipes-support/mysql/mariadb.inc 
> b/meta-oe/recipes-support/mysql/mariadb.inc
> index 73905b6..c2d2ecf 100644
> --- a/meta-oe/recipes-support/mysql/mariadb.inc
> +++ b/meta-oe/recipes-support/mysql/mariadb.inc
> @@ -169,7 +169,7 @@ RDEPENDS_${PN}-client = "perl perl-module-getopt-long 
> perl-module-file-temp \
>  RDEPENDS_${PN}-server = "perl perl-module-getopt-long 
> perl-module-data-dumper \
>  perl-module-file-basename perl-module-file-path perl-module-sys-hostname 
> \
>  perl-module-file-copy perl-module-file-temp perl-module-posix \
> -${PN}-client"
> +${PN}-client libdbi-perl"
>  RDEPENDS_${PN}-leftovers = "perl perl-module-cwd perl-module-benchmark 
> perl-module-getopt-long \
>  perl-module-posix perl-module-data-dumper perl-module-sigtrap 
> perl-module-threads \
>  perl-module-threads-shared perl-module-io-socket 
> perl-module-sys-hostname perl-module-file-copy \
> -- 
> 1.9.1
> 
> -- 
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

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


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


Re: [oe] [meta-python][PATCH 13/17] python-requests, python3-requests: Update to version 2.11.1

2016-09-01 Thread Fabio Berton
Hi Martin,

I see that you rebase and sent this recipe to master-next, thanks.

I sent python-pysocks on the same patchset that I sent python-requests,
https://patchwork.openembedded.org/patch/129907/


Fabio

On Wed, Aug 31, 2016 at 3:10 PM, Martin Jansa 
wrote:

> On Mon, Aug 22, 2016 at 04:01:27PM -0300, Fabio Berton wrote:
> > This commit also change RDEPENDS code style and add python-urllib3
> > as runtime dependence.
> >
> > Signed-off-by: Fabio Berton 
> > ---
> >  meta-python/recipes-devtools/python/python-requests.inc | 17
> ++---
> >  ...hon-requests_2.10.0.bb => python-requests_2.11.1.bb} |  0
> >  ...n3-requests_2.10.0.bb => python3-requests_2.11.1.bb} |  0
> >  3 files changed, 14 insertions(+), 3 deletions(-)
> >  rename meta-python/recipes-devtools/python/{python-requests_2.10.0.bb
> => python-requests_2.11.1.bb} (100%)
> >  rename meta-python/recipes-devtools/python/{python3-requests_2.10.0.bb
> => python3-requests_2.11.1.bb} (100%)
> >
> > diff --git a/meta-python/recipes-devtools/python/python-requests.inc
> b/meta-python/recipes-devtools/python/python-requests.inc
> > index e00b257..287078a 100644
> > --- a/meta-python/recipes-devtools/python/python-requests.inc
> > +++ b/meta-python/recipes-devtools/python/python-requests.inc
> > @@ -3,7 +3,18 @@ HOMEPAGE = "http://python-requests.org;
> >  LICENSE = "Apache-2.0"
> >  LIC_FILES_CHKSUM = "file://LICENSE;md5=d9bb3515869c0f426cb8441c899ae7
> f5"
> >
> > -SRC_URI[md5sum] = "a36f7a64600f1bfec4d55ae021d232ae"
> > -SRC_URI[sha256sum] = "63f1815788157130cee16a933b2ee1
> 84038e975f0017306d723ac326b5525b54"
> > +SRC_URI[md5sum] = "ad5f9c47b5c5dfdb28363ad7546b0763"
> > +SRC_URI[sha256sum] = "5acf980358283faba0b897c73959ce
> cf8b841205bb4b2ad3ef545f46eae1a133"
> >
> > -RDEPENDS_${PN} = "${PYTHON_PN}-email ${PYTHON_PN}-json
> ${PYTHON_PN}-netserver"
> > +RDEPENDS_${PN} += " \
> > +${PYTHON_PN}-email \
> > +${PYTHON_PN}-json \
> > +${PYTHON_PN}-ndg-httpsclient \
> > +${PYTHON_PN}-netserver \
> > +${PYTHON_PN}-pyasn1 \
> > +${PYTHON_PN}-pyopenssl \
> > +${PYTHON_PN}-pysocks \
> > +${PYTHON_PN}-urllib3 \
> > +"
>
> There is already 2.11.0 version in master-next and this RDEPENDS
> additions break python3 version:
>
> ERROR: Nothing RPROVIDES 'python3-pysocks' (but /home/jenkins/oe/world/shr-
> core/meta-openembedded/meta-python/recipes-devtools/python/
> python3-requests_2.11.1.bb RDEPENDS on or otherwise requires it)
> NOTE: Runtime target 'python3-pysocks' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-pysocks']
> NOTE: Runtime target 'python3-requests' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-requests',
> 'python3-pysocks']
> NOTE: Runtime target 'python3-pymisp' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-pymisp',
> 'python3-requests', 'python3-pysocks']
> NOTE: Runtime target 'python3-pymisp-dev' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-pymisp-dev',
> 'python3-requests', 'python3-pysocks']
>
> > +
> > +BBCLASSEXTEND = "native nativesdk"
> > diff --git a/meta-python/recipes-devtools/python/python-
> requests_2.10.0.bb b/meta-python/recipes-devtools/python/python-
> requests_2.11.1.bb
> > similarity index 100%
> > rename from meta-python/recipes-devtools/python/python-requests_2.10.0.
> bb
> > rename to meta-python/recipes-devtools/python/python-requests_2.11.1.bb
> > diff --git a/meta-python/recipes-devtools/python/python3-
> requests_2.10.0.bb b/meta-python/recipes-devtools/python/python3-
> requests_2.11.1.bb
> > similarity index 100%
> > rename from meta-python/recipes-devtools/python/python3-requests_2.10.
> 0.bb
> > rename to meta-python/recipes-devtools/python/python3-requests_2.11.1.bb
> > --
> > 2.1.4
> >
> > --
> > ___
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
> --
> Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com
>
> --
> ___
> 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


Re: [oe] [meta-java] Unify virtual java providers

2016-09-01 Thread Pascal Bach
Hi guys
> It should be properly documented in the readme and the virtual packages 
> should be the preferred way for users to depend on java/jre resp javac/jdk
>
> An alternative to the above would be:
>
> - virtual/jre
> - virtual/jre-native
> - virtual/jdk
> - virtual/jdk-native
>
> But this would deviate more from the current naming.
>
While testing the proposal above i ran into an issue.
When I add PROVIDES = "virtual/jre" to the java recipes and i want to install 
multiple java versions via update-alternative I can't do that because bitbake 
tells me:

"Multiple .bb files are due to be built which each provide virtual/jre:"

Now the question for me is if this two mechanism are not intended to work 
together or if I'm doing something wrong.

My idea would be to allow the user to select a default provider for 
"virtual/jre" but still allow to install an additional specific java provider 
if necessary.
Is this even possible?

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


[oe] [PATCH 2/4] meta-gpe: add pointercal to layer.conf

2016-09-01 Thread Maxin B. John
add pointercal to SIGGEN_EXCLUDERECIPES_ABISAFE in layer.conf

Signed-off-by: Maxin B. John 
---
 meta-gpe/conf/layer.conf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-gpe/conf/layer.conf b/meta-gpe/conf/layer.conf
index 00f3929..477e4a8 100644
--- a/meta-gpe/conf/layer.conf
+++ b/meta-gpe/conf/layer.conf
@@ -13,3 +13,5 @@ BBFILE_PRIORITY_gpe-layer = "7"
 LAYERVERSION_gpe-layer = "1"
 
 LAYERDEPENDS_gpe-layer = "core openembedded-layer"
+
+SIGGEN_EXCLUDERECIPES_ABISAFE += "pointercal"
-- 
2.4.0

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


[oe] [PATCH 4/4] tslib: move recipe from oe-core

2016-09-01 Thread Maxin B. John
Move tslib recipe from oe-core layer.

Signed-off-by: Maxin B. John 
---
 meta-gpe/recipes-graphics/tslib/tslib/ts.conf  | 25 
 meta-gpe/recipes-graphics/tslib/tslib/tslib.sh |  8 
 meta-gpe/recipes-graphics/tslib/tslib_1.1.bb   | 53 ++
 3 files changed, 86 insertions(+)
 create mode 100644 meta-gpe/recipes-graphics/tslib/tslib/ts.conf
 create mode 100644 meta-gpe/recipes-graphics/tslib/tslib/tslib.sh
 create mode 100644 meta-gpe/recipes-graphics/tslib/tslib_1.1.bb

diff --git a/meta-gpe/recipes-graphics/tslib/tslib/ts.conf 
b/meta-gpe/recipes-graphics/tslib/tslib/ts.conf
new file mode 100644
index 000..1b0da93
--- /dev/null
+++ b/meta-gpe/recipes-graphics/tslib/tslib/ts.conf
@@ -0,0 +1,25 @@
+# Uncomment if you wish to use the linux input layer event interface
+module_raw input
+
+# Uncomment if you're using a Sharp Zaurus SL-5500/SL-5000d
+# module_raw collie
+
+# Uncomment if you're using a Sharp Zaurus SL-C700/C750/C760/C860
+# module_raw corgi
+
+# Uncomment if you're using a device with a UCB1200/1300/1400 TS interface
+# module_raw ucb1x00
+
+# Uncomment if you're using an HP iPaq h3600 or similar
+# module_raw h3600
+
+# Uncomment if you're using a Hitachi Webpad
+# module_raw mk712
+
+# Uncomment if you're using an IBM Arctic II
+# module_raw arctic2
+
+module pthres pmin=1
+module variance delta=30
+module dejitter delta=100
+module linear
diff --git a/meta-gpe/recipes-graphics/tslib/tslib/tslib.sh 
b/meta-gpe/recipes-graphics/tslib/tslib/tslib.sh
new file mode 100644
index 000..7068e8d
--- /dev/null
+++ b/meta-gpe/recipes-graphics/tslib/tslib/tslib.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if [ -e /dev/input/touchscreen0 ]; then
+TSLIB_TSDEVICE=/dev/input/touchscreen0
+
+export TSLIB_TSDEVICE
+fi
+
diff --git a/meta-gpe/recipes-graphics/tslib/tslib_1.1.bb 
b/meta-gpe/recipes-graphics/tslib/tslib_1.1.bb
new file mode 100644
index 000..b0264c3
--- /dev/null
+++ b/meta-gpe/recipes-graphics/tslib/tslib_1.1.bb
@@ -0,0 +1,53 @@
+SUMMARY = "An abstraction layer for touchscreen panel events"
+DESCRIPTION = "Tslib is an abstraction layer for touchscreen panel \
+events, as well as a filter stack for the manipulation of those events. \
+Tslib is generally used on embedded devices to provide a common user \
+space interface to touchscreen functionality."
+HOMEPAGE = "http://tslib.berlios.de/;
+
+AUTHOR = "Russell King w/ plugins by Chris Larson et. al."
+SECTION = "base"
+LICENSE = "LGPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f30a9716ef3762e3467a2f62bf790f0a"
+
+SRC_URI = 
"https://github.com/kergoth/tslib/releases/download/${PV}/tslib-${PV}.tar.xz;downloadfilename=tslib-${PV}.tar.xz
 \
+   file://ts.conf \
+   file://tslib.sh \
+"
+
+SRC_URI[md5sum] = "14771f8607b341bb4b297819d37e837d"
+SRC_URI[sha256sum] = 
"fe35e5f710ea933b118f710e2ce4403ac076fe69926b570333867d4de082a51c"
+
+UPSTREAM_CHECK_URI = "https://github.com/kergoth/tslib/releases;
+
+inherit autotools pkgconfig
+
+EXTRA_OECONF = "--enable-shared --disable-h3600 --enable-input --disable-corgi 
--disable-collie --disable-mk712 --disable-arctic2 --disable-ucb1x00"
+
+do_install_prepend() {
+   install -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf
+}
+
+do_install_append() {
+   install -d ${D}${sysconfdir}/profile.d/
+   install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/
+}
+
+# People should consider using udev's /dev/input/touchscreen0 symlink
+# instead of detect-stylus
+#RDEPENDS_tslib-conf_weird-machine = "detect-stylus"
+RPROVIDES_tslib-conf = "libts-0.0-conf"
+
+PACKAGES =+ "tslib-conf tslib-tests tslib-calibrate"
+DEBIAN_NOAUTONAME_tslib-conf = "1"
+DEBIAN_NOAUTONAME_tslib-tests = "1"
+DEBIAN_NOAUTONAME_tslib-calibrate = "1"
+
+RDEPENDS_${PN} = "tslib-conf"
+RRECOMMENDS_${PN} = "pointercal"
+
+FILES_${PN}-dev += "${libdir}/ts/*.la"
+FILES_tslib-conf = "${sysconfdir}/ts.conf ${sysconfdir}/profile.d/tslib.sh 
${datadir}/tslib"
+FILES_${PN} = "${libdir}/*.so.* ${libdir}/ts/*.so*"
+FILES_tslib-calibrate += "${bindir}/ts_calibrate"
+FILES_tslib-tests = "${bindir}/ts_harvest ${bindir}/ts_print 
${bindir}/ts_print_raw ${bindir}/ts_test"
-- 
2.4.0

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


[oe] [PATCH 3/4] xtscal: move recipe from oe-core

2016-09-01 Thread Maxin B. John
Move xtscal recipe from oe-core layer.

Signed-off-by: Maxin B. John 
---
 .../xtscal/xtscal/30xTs_Calibrate.sh   |  13 +
 .../xtscal/xtscal/change-cross.patch   |  18 +
 .../recipes-graphics/xtscal/xtscal/cleanup.patch   | 621 +
 .../xtscal/dso_linking_change_build_fix.patch  |  27 +
 meta-gpe/recipes-graphics/xtscal/xtscal_0.6.3.bb   |  33 ++
 5 files changed, 712 insertions(+)
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal/change-cross.patch
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal/cleanup.patch
 create mode 100644 
meta-gpe/recipes-graphics/xtscal/xtscal/dso_linking_change_build_fix.patch
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal_0.6.3.bb

diff --git a/meta-gpe/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh 
b/meta-gpe/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh
new file mode 100644
index 000..fa43617
--- /dev/null
+++ b/meta-gpe/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+. /etc/formfactor/config
+
+if [ "$HAVE_TOUCHSCREEN" = "1" ]; then
+   n=1
+   while [ ! -z $TSLIB_TSDEVICE ] && [ ! -f /etc/pointercal ] && [ $n -le 
5 ]
+   do
+  /usr/bin/xtscal
+  sleep 1
+  n=$(($n+1))
+   done
+fi
diff --git a/meta-gpe/recipes-graphics/xtscal/xtscal/change-cross.patch 
b/meta-gpe/recipes-graphics/xtscal/xtscal/change-cross.patch
new file mode 100644
index 000..1da7717
--- /dev/null
+++ b/meta-gpe/recipes-graphics/xtscal/xtscal/change-cross.patch
@@ -0,0 +1,18 @@
+Upstream-Status: Pending
+
+--- tmp/main.c.orig2007-01-02 15:39:54.0 +
 tmp/main.c 2007-01-02 15:39:54.0 +
+@@ -131,9 +131,10 @@
+ {
+   XRenderFillRectangles (dpy, PictOpSrc, pict, _color, rectangles, 2);
+ 
+-  XFillArc (dpy, crosshair_w, crosshair_gc, (CROSSHAIR_SIZE / 2) - (WIDTH / 
2) - 1, 
+-  (CROSSHAIR_SIZE / 2) - (WIDTH / 2) - 1,
+-  WIDTH + 1, WIDTH + 1, 0, 360 * 64);
++  XFillRectangle (dpy, crosshair_w, crosshair_gc,
++(CROSSHAIR_SIZE / 2) - (WIDTH / 2),
++(CROSSHAIR_SIZE / 2) - (WIDTH / 2),
++WIDTH, WIDTH);
+ }
+ 
+ void
diff --git a/meta-gpe/recipes-graphics/xtscal/xtscal/cleanup.patch 
b/meta-gpe/recipes-graphics/xtscal/xtscal/cleanup.patch
new file mode 100644
index 000..f7b0854
--- /dev/null
+++ b/meta-gpe/recipes-graphics/xtscal/xtscal/cleanup.patch
@@ -0,0 +1,621 @@
+---
+ Makefile.am  |9 --
+ configure.ac |3 
+ gpe-dist.am  |   12 ---
+ h3600_ts.h   |  216 
---
+ main.c   |  210 ++---
+ xtscal.in|   19 -
+ 6 files changed, 14 insertions(+), 455 deletions(-)
+
+Upstream-Status: Pending
+
+Index: xtscal-0.6.3/xtscal.in
+===
+--- xtscal-0.6.3.orig/xtscal.in2004-09-10 20:10:36.0 +0100
 /dev/null  1970-01-01 00:00:00.0 +
+@@ -1,19 +0,0 @@
+-#!/bin/sh
+-
+-module_id() {
+-# Get model name
+-echo `grep "^Hardware" /proc/cpuinfo | sed -e "s/.*: *//" | tr a-z A-Z`
+-}
+-
+-case `module_id` in
+-  "HP IPAQ H3100" | "HP IPAQ H3800" )
+-  ARGS="-rotate 90" ;;
+-  "HP IPAQ H3600" | "HP IPAQ H3700" | "HP IPAQ H3900" | *COLLIE | *POODLE)
+-  ARGS="-rotate 270" ;;
+-  # H2200: works without rotation
+-esac
+-
+-# the things we do for autoconf
+-prefix=@prefix@
+-exec_prefix=@exec_prefix@
+-exec @libexecdir@/xtscal.bin $ARGS $*
+Index: xtscal-0.6.3/main.c
+===
+--- xtscal-0.6.3.orig/main.c   2007-07-01 01:12:52.0 +0100
 xtscal-0.6.3/main.c2007-07-01 01:12:55.0 +0100
+@@ -22,12 +22,10 @@
+ #include 
+ 
+ #include 
+-#include 
+ #include 
+ #include 
+ #include 
+ 
+-#include "h3600_ts.h"
+ #include "calibrate.h"
+ 
+ Display *dpy;
+@@ -45,15 +43,11 @@ XftColor xftcol;
+ XftDraw *xftdraw;
+ XftFont *xftfont;
+ int screen_x, screen_y;
+-int ts_fd;
+ int samples;
+ Pixmap bg_pixmap;
+ int flag_debug;
+-int rotation = 0;
+ int error_base, event_base;
+ 
+-int using_xcalibrate;
+-
+ int moving;
+ 
+ #define CROSSHAIR_SIZE25
+@@ -63,7 +57,6 @@ int moving;
+ #define ENOUGH 5
+ #define MAX_SAMPLES 40
+ 
+-#define RAW_DEVICE "/dev/h3600_tsraw"
+ #define FONTNAME "sans-10"
+ 
+ struct point 
+@@ -287,12 +280,8 @@ sort_by_y (const void* a, const void *b)
+ void
+ set_calibration (calibration *cal)
+ {
+-  TS_CAL tc;
+-  int xtrans, ytrans, xscale, yscale, xyscale, yxscale;
+   calibration ocal = *cal;
+ 
+-  if (using_xcalibrate)
+-{
+   FILE *fp;
+   if (flag_debug)
+   printf ("constants are: %d %d %d %d %d %d %d\n", cal->a[1], cal->a[2], 
cal->a[0], cal->a[4], cal->a[5], cal->a[3], cal->a[6]);

[oe] [PATCH 1/4] pointercal: move recipe from oe-core

2016-09-01 Thread Maxin B. John
Move pointercal recipe from oe-core layer.

Signed-off-by: Maxin B. John 
---
 meta-gpe/recipes-bsp/pointercal/pointercal/COPYING |   2 ++
 .../recipes-bsp/pointercal/pointercal/pointercal   |   0
 .../pointercal/pointercal/qemuarm/pointercal   |   1 +
 .../pointercal/pointercal/qemuarmv6/pointercal |   1 +
 .../pointercal/pointercal/qemuarmv7/pointercal |   1 +
 .../pointercal/pointercal/qemumips/pointercal  |   1 +
 .../pointercal/pointercal/qemuppc/pointercal   | Bin 0 -> 36 bytes
 .../pointercal/pointercal/qemux86-64/pointercal|   1 +
 .../pointercal/pointercal/qemux86/pointercal   |   1 +
 meta-gpe/recipes-bsp/pointercal/pointercal_0.0.bb  |  22 +
 10 files changed, 30 insertions(+)
 create mode 100644 meta-gpe/recipes-bsp/pointercal/pointercal/COPYING
 create mode 100644 meta-gpe/recipes-bsp/pointercal/pointercal/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuarm/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv6/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv7/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemumips/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuppc/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemux86-64/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemux86/pointercal
 create mode 100644 meta-gpe/recipes-bsp/pointercal/pointercal_0.0.bb

diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/COPYING 
b/meta-gpe/recipes-bsp/pointercal/pointercal/COPYING
new file mode 100644
index 000..63f5293
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal/COPYING
@@ -0,0 +1,2 @@
+This is a blank COPYING file, and should be filled in by original author in 
future.
+
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/pointercal
new file mode 100644
index 000..e69de29
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarm/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarm/pointercal
new file mode 100644
index 000..abd84ca
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarm/pointercal
@@ -0,0 +1 @@
+8313 4 -8526 7 8334 -82604 65536
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv6/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv6/pointercal
new file mode 100644
index 000..abd84ca
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv6/pointercal
@@ -0,0 +1 @@
+8313 4 -8526 7 8334 -82604 65536
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv7/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv7/pointercal
new file mode 100644
index 000..abd84ca
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv7/pointercal
@@ -0,0 +1 @@
+8313 4 -8526 7 8334 -82604 65536
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/qemumips/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/qemumips/pointercal
new file mode 100644
index 000..abd84ca
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal/qemumips/pointercal
@@ -0,0 +1 @@
+8313 4 -8526 7 8334 -82604 65536
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/qemuppc/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/qemuppc/pointercal
new file mode 100644
index 
..c2d6e37bf0c0d956ba17ba9955613c4cee5a147a
GIT binary patch
literal 36
mcmXpsFt#*Q&;=n=3lPgl!O+0i%uK=9!qiZ~%+%D_i~#_8+XjmO

literal 0
HcmV?d1

diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/qemux86-64/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/qemux86-64/pointercal
new file mode 100644
index 000..640053d
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal/qemux86-64/pointercal
@@ -0,0 +1 @@
+1280 0 1002 0 960 328 65536
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal/qemux86/pointercal 
b/meta-gpe/recipes-bsp/pointercal/pointercal/qemux86/pointercal
new file mode 100644
index 000..640053d
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal/qemux86/pointercal
@@ -0,0 +1 @@
+1280 0 1002 0 960 328 65536
diff --git a/meta-gpe/recipes-bsp/pointercal/pointercal_0.0.bb 
b/meta-gpe/recipes-bsp/pointercal/pointercal_0.0.bb
new file mode 100644
index 000..df735a5
--- /dev/null
+++ b/meta-gpe/recipes-bsp/pointercal/pointercal_0.0.bb
@@ -0,0 +1,22 @@
+SUMMARY = "Touchscreen calibration data"
+SECTION = "base"
+PR = "r11"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=4b5fcfc87fb615860d398b5e38685edf"
+
+SRC_URI = "file://pointercal \
+   file://COPYING"
+
+S = "${WORKDIR}"
+
+do_install() {
+   # Only install file if it has a contents
+   if [ -s ${S}/pointercal ]; then
+   install -d ${D}${sysconfdir}/
+   install 

[oe] [PATCH 0/4] move tslib, pointercal and xtscal recipes from oe-core

2016-09-01 Thread Maxin B. John
Move tslib tslib, pointercal and xtscal recipes from oe-core. These recipes
are already removed from oe-core with these commits:

1. xtscal: remove recipe : 5bcdb9f0995474635789cf0774aba9b774277c53
2. tslib: remove recipe : d37f6b595fd9ce53c79ff9281f2e20df7fa0503d
3. pointercal: remove recipe: d56dffe629dfc86a8d3c7a043c8c2893004f803e

Maxin B. John (4):
  pointercal: move recipe from oe-core
  meta-gpe: add pointercal to layer.conf
  xtscal: move recipe from oe-core
  tslib: move recipe from oe-core

 meta-gpe/conf/layer.conf   |   2 +
 meta-gpe/recipes-bsp/pointercal/pointercal/COPYING |   2 +
 .../recipes-bsp/pointercal/pointercal/pointercal   |   0
 .../pointercal/pointercal/qemuarm/pointercal   |   1 +
 .../pointercal/pointercal/qemuarmv6/pointercal |   1 +
 .../pointercal/pointercal/qemuarmv7/pointercal |   1 +
 .../pointercal/pointercal/qemumips/pointercal  |   1 +
 .../pointercal/pointercal/qemuppc/pointercal   | Bin 0 -> 36 bytes
 .../pointercal/pointercal/qemux86-64/pointercal|   1 +
 .../pointercal/pointercal/qemux86/pointercal   |   1 +
 meta-gpe/recipes-bsp/pointercal/pointercal_0.0.bb  |  22 +
 meta-gpe/recipes-graphics/tslib/tslib/ts.conf  |  25 +
 meta-gpe/recipes-graphics/tslib/tslib/tslib.sh |   8 +
 meta-gpe/recipes-graphics/tslib/tslib_1.1.bb   |  53 ++
 .../xtscal/xtscal/30xTs_Calibrate.sh   |  13 +
 .../xtscal/xtscal/change-cross.patch   |  18 +
 .../recipes-graphics/xtscal/xtscal/cleanup.patch   | 621 +
 .../xtscal/dso_linking_change_build_fix.patch  |  27 +
 meta-gpe/recipes-graphics/xtscal/xtscal_0.6.3.bb   |  33 ++
 19 files changed, 830 insertions(+)
 create mode 100644 meta-gpe/recipes-bsp/pointercal/pointercal/COPYING
 create mode 100644 meta-gpe/recipes-bsp/pointercal/pointercal/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuarm/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv6/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuarmv7/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemumips/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemuppc/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemux86-64/pointercal
 create mode 100644 
meta-gpe/recipes-bsp/pointercal/pointercal/qemux86/pointercal
 create mode 100644 meta-gpe/recipes-bsp/pointercal/pointercal_0.0.bb
 create mode 100644 meta-gpe/recipes-graphics/tslib/tslib/ts.conf
 create mode 100644 meta-gpe/recipes-graphics/tslib/tslib/tslib.sh
 create mode 100644 meta-gpe/recipes-graphics/tslib/tslib_1.1.bb
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal/change-cross.patch
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal/cleanup.patch
 create mode 100644 
meta-gpe/recipes-graphics/xtscal/xtscal/dso_linking_change_build_fix.patch
 create mode 100644 meta-gpe/recipes-graphics/xtscal/xtscal_0.6.3.bb

-- 
2.4.0

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


[oe] [meta-networking][PATCH] strongswan: 5.3.2 -> 5.5.0

2016-09-01 Thread Wang Xin
Upgrade strongswan from 5.3.2 to 5.5.0.

Signed-off-by: Wang Xin 
---
 .../strongswan/{strongswan_5.3.2.bb => strongswan_5.5.0.bb} | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)
 rename meta-networking/recipes-support/strongswan/{strongswan_5.3.2.bb => 
strongswan_5.5.0.bb} (90%)

diff --git a/meta-networking/recipes-support/strongswan/strongswan_5.3.2.bb 
b/meta-networking/recipes-support/strongswan/strongswan_5.5.0.bb
similarity index 90%
rename from meta-networking/recipes-support/strongswan/strongswan_5.3.2.bb
rename to meta-networking/recipes-support/strongswan/strongswan_5.5.0.bb
index 9dc4878..8941cf6 100644
--- a/meta-networking/recipes-support/strongswan/strongswan_5.3.2.bb
+++ b/meta-networking/recipes-support/strongswan/strongswan_5.5.0.bb
@@ -9,12 +9,10 @@ DEPENDS = "gmp openssl flex-native flex bison-native"
 
 SRC_URI = "http://download.strongswan.org/strongswan-${PV}.tar.bz2 \
 file://fix-funtion-parameter.patch \
-file://support-newer-systemd.patch \
-file://install-strongswan-swanctl-service.patch \
 "
 
-SRC_URI[md5sum] = "fab014be1477ef4ebf9a765e10f8802c"
-SRC_URI[sha256sum] = 
"a4a9bc8c4e42bdc4366a87a05a02bf9f425169a7ab0c6f4482d347e44acbf225"
+SRC_URI[md5sum] = "a96fa7eb6c62b40143dadb064b6bd586"
+SRC_URI[sha256sum] = 
"58463998ac6725eac3687e8a20c1f69803c3772657076d06c43386a24b4c8454"
 
 EXTRA_OECONF = " \
 --without-lib-prefix \
-- 
2.7.4



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


[oe] [meta-oe][PATCH] smartmontools: 6.4 -> 6.5

2016-09-01 Thread Wang Xin
Upgrade smartmontools from 6.4 to 6.5.

Signed-off-by: Wang Xin 
---
 .../smartmontools/{smartmontools_6.4.bb => smartmontools_6.5.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-extended/smartmontools/{smartmontools_6.4.bb => 
smartmontools_6.5.bb} (93%)

diff --git a/meta-oe/recipes-extended/smartmontools/smartmontools_6.4.bb 
b/meta-oe/recipes-extended/smartmontools/smartmontools_6.5.bb
similarity index 93%
rename from meta-oe/recipes-extended/smartmontools/smartmontools_6.4.bb
rename to meta-oe/recipes-extended/smartmontools/smartmontools_6.5.bb
index 86e6d9e..e4ca028 100644
--- a/meta-oe/recipes-extended/smartmontools/smartmontools_6.4.bb
+++ b/meta-oe/recipes-extended/smartmontools/smartmontools_6.5.bb
@@ -24,8 +24,8 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 
'libcap-ng', 'libcap-
 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] = "56812c8312fd123ed40ef65afde1049e"
-SRC_URI[sha256sum] = 
"eab75600c1eda9c34b13097db71138ab376f3dad8a6a4667fb4d1d081feb7a85"
+SRC_URI[md5sum] = "093aeec3f8f39fa9a37593c4012d3156"
+SRC_URI[sha256sum] = 
"89e8bb080130bc6ce148573ba5bb91bfe30236b64b1b5bbca26515d4b5c945bc"
 
 inherit autotools update-rc.d systemd
 
-- 
2.7.4



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


[oe] [meta-oe][PATCH] sg3-utils: 1.41 -> 1.42

2016-09-01 Thread Wang Xin
Upgrade sg3-utils from 1.41 to 1.42.

Signed-off-by: Wang Xin 
---
 .../sg3-utils/{sg3-utils_1.41.bb => sg3-utils_1.42.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/sg3-utils/{sg3-utils_1.41.bb => 
sg3-utils_1.42.bb} (77%)

diff --git a/meta-oe/recipes-support/sg3-utils/sg3-utils_1.41.bb 
b/meta-oe/recipes-support/sg3-utils/sg3-utils_1.42.bb
similarity index 77%
rename from meta-oe/recipes-support/sg3-utils/sg3-utils_1.41.bb
rename to meta-oe/recipes-support/sg3-utils/sg3-utils_1.42.bb
index 61250fa..a11bd77 100644
--- a/meta-oe/recipes-support/sg3-utils/sg3-utils_1.41.bb
+++ b/meta-oe/recipes-support/sg3-utils/sg3-utils_1.42.bb
@@ -10,8 +10,8 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=f90da7fc52172599dbf082d7620f18ca"
 
 SRC_URI = "http://sg.danny.cz/sg/p/sg3_utils-${PV}.tgz;
 
-SRC_URI[md5sum] = "86ebe3881535ee5c48f81be5be44b362"
-SRC_URI[sha256sum] = 
"c4e2893c36df1ee5b07840ab7c22129544f5dc8a55f7cc8815c9cd8e44ec31c0"
+SRC_URI[md5sum] = "28080de5bff8b55a29093bec8aea"
+SRC_URI[sha256sum] = 
"1dcb7a0309bd0ba3d4a83acb526973b80106ee26cd9f7398186cd3f0633c9ef3"
 
 inherit autotools-brokensep
 
-- 
2.7.4



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


[oe] [meta-networking][PATCH v2] samba: fix to package pidl in samba-pidl

2016-09-01 Thread mingli.yu
From: Mingli Yu 

* Use =+ to replace the previous += to let samba-pidl
  do package before samba to guarantee the file /usr/bin/pidl
  packaged in samba-pidl as both samba and samba-pidl have
  rules to package /usr/bin/pidl and the command pidl depends
  on perl modules such as Parse/Pidl.pm resides in samba-pidl

Signed-off-by: Mingli Yu 
---
 meta-networking/recipes-connectivity/samba/samba_4.4.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-connectivity/samba/samba_4.4.5.bb 
b/meta-networking/recipes-connectivity/samba/samba_4.4.5.bb
index e35d527..e1b15ea 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.4.5.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.4.5.bb
@@ -126,7 +126,7 @@ do_install_append() {
 rm -rf ${D}/run ${D}${localstatedir}/run ${D}${localstatedir}/log
 }
 
-PACKAGES += "${PN}-python ${PN}-python-dbg ${PN}-pidl libwinbind 
libwinbind-dbg libwinbind-krb5-locator"
+PACKAGES =+ "${PN}-python ${PN}-python-dbg ${PN}-pidl libwinbind 
libwinbind-dbg libwinbind-krb5-locator"
 PACKAGES =+ "libwbclient libnss-winbind winbind winbind-dbg libnetapi 
libsmbsharemodes \
  libsmbclient libsmbclient-dev lib${PN}-base ${PN}-base 
${PN}-ctdb-tests"
 
-- 
2.8.1

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