scm/bb/tizen-distro.git
9 years agoruby.bbclass: introduce a class to assist in building gems
Mark Asselstine [Fri, 5 Sep 2014 15:07:13 +0000 (11:07 -0400)]
ruby.bbclass: introduce a class to assist in building gems

In order to allow the building of gems we have created a
ruby.bbclass. The building of gems is much like the building of python
packages in that we rely on building up -native gems in order to
facilitate the cross compiling of the gems that will be built for the
target. When dependencies exist between gems they must be satisfied by
the -native gems installed in the host sysroot. This approach is
feasible since the build process is able to query installed gems
without being affected by the ARCH they were built for. At this point
I have yet to come across a situation where the assumption associated
with this approach have failed but so far focus has only been on x86
and x86-64 builds.

The recipes which inherit the ruby.bbclass can optionally define a BPV
in the case where the gemspec version doesn't always map 1:1 to the
PV. This situation has only been encountered on a few occasions so
the class has been made to default BPV to PV.

To demonstrate the ruby.bbclass in use we have included a recipe to
build the bundler gem. Bundler can be used on a running target to
install gems from rubygems.org, which can be useful in itself when you
don't have recipes available for gems but want to try installing and
running pre-built gems.

(From meta-openembedded rev: 8c2e27e68642224df084eed14c2ad1de4f1bb0a5)

Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agotftp-hpa: bug fix on empty file put error
zhangxiao [Thu, 4 Sep 2014 09:40:17 +0000 (17:40 +0800)]
tftp-hpa: bug fix on empty file put error

With the feature that checking the disk filled up, the return value of
function write_behind was checked and used to detect the disk status.
While for empty file, without data being written, this function will
return -1 thus the disk filled up error was miss-raised. Fix it.

(From meta-openembedded rev: ed698c4dba606b9d0c36c68023004046417db251)

Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agodialog: fix the redirection of the error information
Roy Li [Tue, 23 Sep 2014 00:52:08 +0000 (08:52 +0800)]
dialog: fix the redirection of the error information

Drop the error information, other than redirect them to stdout, otherwise
the error information will be included into LIBS/CFLAG

(From meta-openembedded rev: 01816e442076afa820cbccbfd67a7b3fa382199d)

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomultipath-tools: update to version 0.5.0+
Joe Slater [Tue, 23 Sep 2014 00:22:32 +0000 (17:22 -0700)]
multipath-tools: update to version 0.5.0+

SCRREV includes patches up to 9/12/2014.

Modify upstream source to be better set up for
cross compilation.

(From meta-openembedded rev: 48e5c5ef39d70c3b00f755d09811f497e6d23f53)

Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoklibc: klcc: consider --sysroot option and override gcc-cross encoded sysroot
Andrea Adami [Fri, 19 Sep 2014 21:09:29 +0000 (23:09 +0200)]
klibc: klcc: consider --sysroot option and override gcc-cross encoded sysroot

For the recipes built with klcc-cross it is necessary to
pass --sysroot otherwise we default to the one encoded in gcc-cross which
actually is the 'first one' built.
The issue was revealed when building for armv4 after having built for armv5te:
the produced binaries did contain Illegal Instruction (bx lr).

Use ${TOOLCHAIN_OPTIONS} variable to specify --sysroot=${STAGING_DIR_TARGET}

(From meta-openembedded rev: 0a67b9f3fd164b808c66286ff0435c65421e5352)

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agorsyslog: add UPDATE_ALTERNATIVE for syslog-service
Chen Qi [Fri, 19 Sep 2014 08:11:49 +0000 (16:11 +0800)]
rsyslog: add UPDATE_ALTERNATIVE for syslog-service

Use ALTERNATIVE mechanism in OE to manage the syslog service to
avoid conflicts with other syslog implementations like sysklogd
or busybox.

(From meta-openembedded rev: 2b32463cfc617a5497544e67afab50b1f3d0fc3c)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoimagemagick: do not install magick-baseconfig.h repeatedly
Wenzong Fan [Fri, 19 Sep 2014 03:10:02 +0000 (23:10 -0400)]
imagemagick: do not install magick-baseconfig.h repeatedly

Both targets install-data-local & install-includeHEADERS will install
header file magick-baseconfig.h to the same location, and they might
be run in the same time while enabling parallel build:

* target dependencies:
  + install-data-am: ... install-data-local ... install-includeHEADERS

* make install error:
  /usr/bin/install: cannot create regular file \
  `.../usr/include/ImageMagick-6/magick/magick-baseconfig.h': \
  File exists \
  make[3]: *** [install-magickincarchHEADERS] Error 1

* reproduce the error:
  $ /usr/bin/install test /tmp & /usr/bin/install test /tmp
  [1] 4052
  /usr/bin/install: cannot create regular file `/tmp/test': File exists
  [1]+  Exit 1                  /usr/bin/install test /tmp

Just disable the one from install-data-local to remove this race issue.

(From meta-openembedded rev: e335110e1e051411207a3f4ce55a1a9388e35daa)

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agocollectd: add systemd unit file
Chong.Lu@windriver.com [Thu, 18 Sep 2014 01:23:59 +0000 (09:23 +0800)]
collectd: add systemd unit file

Add systemd unit file for collectd.

(From meta-openembedded rev: f25843b7fa9acdfac980a581118190ca6bb7fbf3)

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agotalloc: fixes for sstate cache reuse
Robert Yang [Wed, 17 Sep 2014 05:56:39 +0000 (01:56 -0400)]
talloc: fixes for sstate cache reuse

Fixes for sstate cache reuse between different build dirs. The
${SWIGLIBDIR##${STAGING_DIR_NATIVE}} had confused bitbake, bitbake would
add the "SWIGLIBDIR##${STAGING_DIR_NATIVE}" to the deps of do_install,
which caused the sstate cached can't be re-used.

Use another way for SWIGLIBDIR to fix the problem.

(From meta-openembedded rev: a689cb8239360ba0c8b3e7934fe49fd8dfe449e8)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agotalloc: fix swig dependencies
Wenzong Fan [Wed, 17 Sep 2014 05:56:38 +0000 (01:56 -0400)]
talloc: fix swig dependencies

* depens on swig-native to make sure that the talloc.i always be
  installed;

* remove relative path that from `swig -swiglib`:

    ${D}/usr/bin/../share -> ${D}/usr/share

  This prevents 'install' from creraing empty dir: ${D}${bindir};

* fix the path to talloc.i for separate build.

(From meta-openembedded rev: e99ca149a158b046ee02fcaa589df9cdca164f01)

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopostgresql: add systemd unit file
Chong.Lu@windriver.com [Tue, 16 Sep 2014 09:36:36 +0000 (17:36 +0800)]
postgresql: add systemd unit file

Add systemd unit file for postgresql.
When 'sysvinit' and 'systemd' are both in DISTRO_FEATURES, we need to prevent
the init script from running via systemd.

(From meta-openembedded rev: 711f3b8da8547b510235bfddfc6d4880017b7a37)

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopostgresql: move initdb to postgresql-setup
Chong.Lu@windriver.com [Tue, 16 Sep 2014 09:36:35 +0000 (17:36 +0800)]
postgresql: move initdb to postgresql-setup

We shouldn't use sysvinit init script to initialize database when use systemd
as the init manager, so split initdb function to postgresql-setup.
Before starting postgresql server, we can use "postgresql-setup initdb" to
initialize the database cluster.

(From meta-openembedded rev: dfa0b4c86d69c14a4fc8f3bda225526ead3bcd51)

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agohostapd: use ${PN} for SYSTEMD_SERVICE
Chen Qi [Tue, 16 Sep 2014 08:14:32 +0000 (16:14 +0800)]
hostapd: use ${PN} for SYSTEMD_SERVICE

Use ${PN} for SYSTEMD_SERVICE to avoid errors in case of multilib.

(From meta-openembedded rev: cf2ab9ecbfcdac90c331509e9b5e25e51aa73248)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomariadb: use ${PN} for SYSTEMD_SERVICE
Chen Qi [Tue, 16 Sep 2014 08:14:31 +0000 (16:14 +0800)]
mariadb: use ${PN} for SYSTEMD_SERVICE

Use ${PN} for SYSTEMD_SERVICE to avoid errors in case of multilib.

(From meta-openembedded rev: 7325e284b6c30c28381b0fb98bd9f433005d06a7)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agosubsurface: Adjust dependencies to match eglibc -> glibc move
Khem Raj [Tue, 2 Sep 2014 20:52:57 +0000 (13:52 -0700)]
subsurface: Adjust dependencies to match eglibc -> glibc move

(From meta-openembedded rev: 394d1444b3bb0a1dbb682a3ad70db70d9c32f4f0)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agocollectd: Upgrade to 5.4.1 and fix with glibc 2.20
Khem Raj [Wed, 3 Sep 2014 16:56:48 +0000 (09:56 -0700)]
collectd: Upgrade to 5.4.1 and fix with glibc 2.20

(From meta-openembedded rev: 06e7054b9a3383ac28e851e2351b0d8bf56d1300)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoluajit, acpitests: Fix build on hardfloat arm
Khem Raj [Thu, 4 Sep 2014 07:32:35 +0000 (00:32 -0700)]
luajit, acpitests: Fix build on hardfloat arm

luajit as well as acpitests build system has mind of its own and does not
respect CC and friends in makefiles so we have to inject
the CFLAGS via EXTRA_OEMAKE, some of ABI defining params
e.g. float-abi selection is mentioned in TUNE_CCARGS and
not in TOOLCHAIN_OPTIONS. This causes build to go for softfloat
build and that is not what we want.

(From meta-openembedded rev: add0ba41de8930d726067b95a0d1dfa1b37e21c5)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agonumlockx: Update SRC_URI to somewhere fetchable
Khem Raj [Thu, 4 Sep 2014 07:32:38 +0000 (00:32 -0700)]
numlockx: Update SRC_URI to somewhere fetchable

(From meta-openembedded rev: 83694c255a7cd5f67b2550800870cbb7a1a2f997)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agockermit: Update recipe ckermit_301.bb -> ckermit_302.bb
Khem Raj [Thu, 4 Sep 2014 07:51:57 +0000 (00:51 -0700)]
ckermit: Update recipe ckermit_301.bb -> ckermit_302.bb

(From meta-openembedded rev: 4ac2ac6fa8e1edde5f04559220fc4b8bf74b03b3)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agokeymaps: systemd support now in OE-Core
Paul Eggleton [Wed, 17 Sep 2014 14:29:55 +0000 (15:29 +0100)]
keymaps: systemd support now in OE-Core

(From meta-openembedded rev: 913ae2e716c528e02f2322789c04154b366332c1)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoportmap: systemd support now in OE-Core
Paul Eggleton [Wed, 17 Sep 2014 14:26:07 +0000 (15:26 +0100)]
portmap: systemd support now in OE-Core

(From meta-openembedded rev: dee376383721781118c6115a4593ad969e0830c1)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agodhcp: remove parts now merged into OE-Core recipe
Paul Eggleton [Wed, 17 Sep 2014 14:24:10 +0000 (15:24 +0100)]
dhcp: remove parts now merged into OE-Core recipe

(From meta-openembedded rev: 1956582b91afda4612f0e4c84ab59826a3e1a2c1)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolibunwind: remove as recipe is now in OE-Core
Paul Eggleton [Wed, 17 Sep 2014 14:20:12 +0000 (15:20 +0100)]
libunwind: remove as recipe is now in OE-Core

(From meta-openembedded rev: 2b47bf3d60e92acca5cd012545c0ea5ffb7615c3)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoglade3: Enable gnome support in meta-gnome instead of meta-oe
Khem Raj [Tue, 2 Sep 2014 07:39:36 +0000 (00:39 -0700)]
glade3: Enable gnome support in meta-gnome instead of meta-oe

This decouples meta-oe dependencies on meta-gnome, right now
we have to use meta-gnome as dependent layer

ERROR: Nothing PROVIDES 'libbonoboui' (but
meta-openembedded/meta-oe/recipes-devtools/glade/glade3_3.8.2.bb
DEPENDS on or otherwise requires it)

ERROR: Required build target 'glade3' has no buildable providers.

Missing or unbuildable dependency chain was: ['glade3', 'libbonoboui']

(From meta-openembedded rev: afa3b1578f6eb75948e50e9216ae493be5b16fa8)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agonautilus: Drop using autotools-brokensep
Khem Raj [Tue, 2 Sep 2014 07:39:35 +0000 (00:39 -0700)]
nautilus: Drop using autotools-brokensep

(From meta-openembedded rev: 7ac650f4272fdaee6506d29275ffdce1d4f42cdd)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolibgnomekbd: Drop using autotools-brokensep
Khem Raj [Tue, 2 Sep 2014 07:39:34 +0000 (00:39 -0700)]
libgnomekbd: Drop using autotools-brokensep

(From meta-openembedded rev: 6b7bf44b21797ac018fd41269818b603bccd078d)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoproftpd: fix integer overflow CVE-2013-4359
Hongxu Jia [Tue, 2 Sep 2014 03:24:17 +0000 (11:24 +0800)]
proftpd: fix integer overflow CVE-2013-4359

Integrate a patch from proftpd upstream to fix an integer overflow bug
described in the CVE-2013-4359, which allows remote attachers to cause
a denial of service (memory consumption) attack.

Refer: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-4359

(From meta-openembedded rev: af971abbf0657ec40bb8d8d4516c077c76d52dd0)

Signed-off-by: Shan Hai <shan.hai@windriver.com>
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agowebmin: fix hardcode of python2.3
Robert Yang [Tue, 2 Sep 2014 07:16:17 +0000 (00:16 -0700)]
webmin: fix hardcode of python2.3

Use "/usr/bin/env python" to fix it.

(From meta-openembedded rev: 61b5d70f8fa96b076ee1635b7fd0c9a5c0875494)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agorrdtool: use rrdtool rather than PN
Robert Yang [Mon, 1 Sep 2014 09:42:36 +0000 (02:42 -0700)]
rrdtool: use rrdtool rather than PN

The "${datadir}/${PN}" will be changed to "${datadir}/lib32-rrdtool"
when multilib which isn't what need, use rrdtool to fix the problem.

(From meta-openembedded rev: 8770ddd1a09d3e258451ce7a18d9d195b9161169)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agobonnie: add perl to RDEPENDS_bonnie-scripts
Robert Yang [Mon, 1 Sep 2014 05:16:59 +0000 (22:16 -0700)]
bonnie: add perl to RDEPENDS_bonnie-scripts

Perl:
bonnie-scripts/usr/bin/bon_csv2html:#!/usr/bin/perl
bonnie-scripts/usr/bin/bon_csv2txt:#!/usr/bin/perl

(From meta-openembedded rev: 08bcdfaca9cc2dee5cf3b301c18e23160ff46cc3)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agosdparm: split sdparm-scripts subpkg
Robert Yang [Tue, 9 Sep 2014 15:30:05 +0000 (08:30 -0700)]
sdparm: split sdparm-scripts subpkg

Bash scripts:
packages-split/sdparm/usr/bin/sas_disk_blink:#!/bin/bash
packages-split/sdparm/usr/bin/scsi_ch_swp:#!/bin/bash

The sdparm is a ~150K executable so making it pull in bash
at >1000K isn't good for embedded systems.

Neither script appears to be essential, so put them in sdparm-scripts as
Randy suggested.

(From meta-openembedded rev: 40dc443da8fc9c49ec46f732cf3264d7313f68ce)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agosg3-utils: add bash to RDEPENDS_sg3-utils
Robert Yang [Mon, 1 Sep 2014 05:12:25 +0000 (22:12 -0700)]
sg3-utils: add bash to RDEPENDS_sg3-utils

Bash scripts:
sg3-utils/usr/bin/scsi_stop:#!/bin/bash
sg3-utils/usr/bin/scsi_mandat:#!/bin/bash
sg3-utils/usr/bin/scsi_logging_level:#! /bin/bash
sg3-utils/usr/bin/scsi_temperature:#!/bin/bash
sg3-utils/usr/bin/scsi_start:#!/bin/bash
sg3-utils/usr/bin/scsi_satl:#!/bin/bash
sg3-utils/usr/bin/scsi_readcap:#!/bin/bash
sg3-utils/usr/bin/scsi_ready:#!/bin/bash

(From meta-openembedded rev: bd4b6d1e1af0193725919f938f8e24c25b373395)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoapache2: split apache2-scripts subpkg
Robert Yang [Mon, 1 Sep 2014 09:25:50 +0000 (02:25 -0700)]
apache2: split apache2-scripts subpkg

Split apache2-scripts subpkg to put the perl script dbmmanage, so that
apache2 doesn't have to RDEPEND on perl.

Add another perl script apxs to apache2-dev pkg as Olof Johansson
suggested.

(From meta-openembedded rev: df56eb34857748f6400ac04279194212356a94cb)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agophpmyadmin: add bash to RDEPENDS_phpmyadmin
Robert Yang [Mon, 1 Sep 2014 06:55:19 +0000 (23:55 -0700)]
phpmyadmin: add bash to RDEPENDS_phpmyadmin

Bashism:
possible bashism in plugins/transformations/generator_plugin.sh line 16 (echo -e):
  echo -e "Usage: ./generator_plugin.sh MIMEType MIMESubtype TransformationName [Description]\n"
possible bashism in plugins/transformations/generator_plugin.sh line 28 (${parm,[,][pat]} or ${parm^[^][pat]}):
MT="${MT^}"
possible bashism in plugins/transformations/generator_plugin.sh line 29 (${parm,[,][pat]} or ${parm^[^][pat]}):
MS="${MS^}"
possible bashism in plugins/transformations/generator_plugin.sh line 30 (${parm,[,][pat]} or ${parm^[^][pat]}):
TN="${TN^}"
possible bashism in plugins/transformations/generator_plugin.sh line 51 (should be 'b = a'):
    if [ "$4" == "--generate_only_main_class" ]; then

(From meta-openembedded rev: 054cef3654905b5d6e287117332c446ecedffb6d)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomemcached: add bash to RDEPENDS_memcached
Robert Yang [Mon, 1 Sep 2014 06:22:11 +0000 (23:22 -0700)]
memcached: add bash to RDEPENDS_memcached

Bashism:
possible bashism in memcached/etc/init.d/memcached line 40 (bash arrays, ${name[0|*|@]}):
if [ -r "${FILES[0]}" ]; then
possible bashism in memcached/etc/init.d/memcached line 42 (bash arrays, ${name[0|*|@]}):
  for FILE in "${FILES[@]}";
possible bashism in memcached/etc/init.d/memcached line 53 (should be VAR="${VAR}foo"):
      CONFIGS+=($NAME)
possible bashism in memcached/etc/init.d/memcached line 54 (should be 'b = a'):
    elif [ "memcached_$2" == "$NAME" ];
possible bashism in memcached/etc/init.d/memcached line 62 (bash arrays, ${name[0|*|@]}):
  if [ ${#CONFIGS[@]} == 0 ];
possible bashism in memcached/etc/init.d/memcached line 71 (bash arrays, ${name[0|*|@]}):
CONFIG_NUM=${#CONFIGS[@]}
possible bashism in memcached/etc/init.d/memcached line 72 ('((' should be '$(('):
for ((i=0; i < $CONFIG_NUM; i++)); do
possible bashism in memcached/etc/init.d/memcached line 73 (bash arrays, ${name[0|*|@]}):
  NAME=${CONFIGS[${i}]}

(From meta-openembedded rev: 1443c68987f62df1124909c2cecb31f1e4fd8bb2)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoproftpd: add perl to RDEPENDS_proftpd
Robert Yang [Mon, 1 Sep 2014 09:16:44 +0000 (02:16 -0700)]
proftpd: add perl to RDEPENDS_proftpd

Perl:
proftpd/usr/bin/ftpasswd:#!/usr/bin/perl
proftpd/usr/bin/ftpquota:#!/usr/bin/perl

(From meta-openembedded rev: 57b9899fcba7328dc14b9c2eb1f16094f9680eee)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agostunnel: add perl to RDEPENDS_stunnel
Robert Yang [Mon, 1 Sep 2014 09:06:19 +0000 (02:06 -0700)]
stunnel: add perl to RDEPENDS_stunnel

Perl:
stunnel/usr/bin/stunnel3:#!/usr/bin/perl

(From meta-openembedded rev: 2ddc60b4d8fa2ad4b58f0008988f6c32ca513356)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agondisc6: add perl to RDEPENDS_ndisc6-misc
Robert Yang [Mon, 1 Sep 2014 09:03:33 +0000 (02:03 -0700)]
ndisc6: add perl to RDEPENDS_ndisc6-misc

Perl:
ndisc6-misc/usr/bin/dnssort:#! /usr/bin/perl

(From meta-openembedded rev: e018cb345a70136e818d332bc35b6d9c73cb53e4)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoarptables: remove bashism
Robert Yang [Mon, 1 Sep 2014 06:22:11 +0000 (23:22 -0700)]
arptables: remove bashism

Bashism:
possible bashism in arptables/etc/init.d/arptables line 14 (should be '.', not 'source'):
source /etc/init.d/functions
possible bashism in arptables/etc/init.d/arptables line 96 ($"foo" should be eval_gettext "foo"):
        echo $"Usage $0 {start|stop|restart|condrestart|save|status}"

Use "." to replace of "source", and change /bin/bash to /bin/sh, the
echo $"foo" works well in our busybox.

(From meta-openembedded rev: d041cc7bcc0ea71ab1c7f4e0d02286a5b776b84c)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoautofs: remove bashism
Robert Yang [Sun, 14 Sep 2014 03:24:11 +0000 (20:24 -0700)]
autofs: remove bashism

The autofs.init can work with /bin/sh in busybox, so remove bashsim.

(From meta-openembedded rev: 5b17d7cf94077b8ab40bf5aa00282087fa5c179b)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoaoetools: no bashism in aoe-stat
Robert Yang [Mon, 1 Sep 2014 05:33:46 +0000 (22:33 -0700)]
aoetools: no bashism in aoe-stat

So use /bin/sh.

(From meta-openembedded rev: 7d6091297f3fa1d6131dd60360f2b0103987a80f)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoradvd: update to 1.14
Joe Slater [Fri, 19 Sep 2014 19:22:49 +0000 (12:22 -0700)]
radvd: update to 1.14

No changes except to source version.

(From meta-openembedded rev: e997f028f7076fbac9c741ec77bfda0b65257d10)

Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopimd: add recipe for pimd-2.1.8
YangHaibo [Fri, 19 Sep 2014 05:47:40 +0000 (13:47 +0800)]
pimd: add recipe for pimd-2.1.8

(From meta-openembedded rev: 0d130d71c458a393087eefb043e7c1689ad42148)

Signed-off-by: YangHaibo <b40869@freescale.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agowireshark: not put the CC options into CFLAGS_FOR_BUILD
Roy.Li [Wed, 24 Sep 2014 00:18:57 +0000 (08:18 +0800)]
wireshark: not put the CC options into CFLAGS_FOR_BUILD

(From meta-openembedded rev: bb62e5fd88b0721d61cc7da491a6a6dea21d3dd7)

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agowireshark: update to 12.1
Armin Kuster [Tue, 16 Sep 2014 23:50:19 +0000 (16:50 -0700)]
wireshark: update to 12.1

following security fixes included:
MEGACO dissector infinite loop. (Bug 10333) CVE-2014-6423
Netflow dissector crash. (Bug 10370) CVE-2014-6424
CUPS dissector crash. (Bug 10353) CVE-2014-6425
HIP dissector infinite loop. CVE-2014-6426
RTSP dissector crash. (Bug 10381) CVE-2014-6427
SES dissector crash. (Bug 10454) CVE-2014-6428
Sniffer file parser crash. (Bug 10461) CVE-2014-6429 CVE-2014-6430 CVE-2014-6431 CVE-2014-6432

re-org'd dd file to be more in-line with style guide.

(From meta-openembedded rev: 1fbaf1ca73b18d723991b337086859d7b367a78c)

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agovftpd: update to version 3.0.2
Joe Slater [Mon, 15 Sep 2014 23:43:51 +0000 (16:43 -0700)]
vftpd: update to version 3.0.2

No changes other than source checksum.

(From meta-openembedded rev: 2fab4b8902320d0323e3a59ea72e743f24eb36c9)

Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoptpd: update to version 2.3.1-rc2
Joe Slater [Fri, 12 Sep 2014 23:04:18 +0000 (16:04 -0700)]
ptpd: update to version 2.3.1-rc2

Add a little processing to find correct directory
for source upstream.

Update LIC_FILES_CHKSUM since the latest package
doesn't include a COPYRIGHT file anymore.

(From meta-openembedded rev: f2715a565228a50cb9da1102d2758937addf21e3)

Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agotcpslice: add recipe under tcpdump
Roy Li [Tue, 9 Sep 2014 00:21:25 +0000 (08:21 +0800)]
tcpslice: add recipe under tcpdump

tcpslice is a tool for extracting parts of a tcpdump packet trace,
so put it under tcpdump dir

(From meta-openembedded rev: 28e26a9b0ad37d0c92ba42b2727215eef1edf5a2)

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agodnsmasq: uprev it to 2.71
Joe MacDonald [Tue, 9 Sep 2014 14:27:07 +0000 (10:27 -0400)]
dnsmasq: uprev it to 2.71

Refreshed lua.patch due to whitespace changes in top-level Makefile.

(From meta-openembedded rev: d6929e301945c2d2cbff7b4f20cd4a1c394abf2d)

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoipsec-tools: Fix pfkey UPDATE failure caused by EINTR
Jackie Huang [Fri, 29 Aug 2014 06:45:00 +0000 (02:45 -0400)]
ipsec-tools: Fix pfkey UPDATE failure caused by EINTR

While kernel is processing the UPDATE message which is sent from racoon,
it maybe interrupted by certain system signal and if this case happens,
kernel responds with an EINTR message to racoon and kernel fails to
establish the corresponding SA.
Fix this problem by resend the UPDATE message when EINTR(Interrupted
system call) error happens.

(From meta-openembedded rev: f9b71625e42a63c1ff50affc2de4b84c348eaf65)

Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoinetutils: uprev to 1.9.2
Roy Li [Mon, 1 Sep 2014 06:15:47 +0000 (14:15 +0800)]
inetutils: uprev to 1.9.2

1. remove unneeded patches:
 inetutils-1.9.1/disable-pre-ANSI-compilers.patch
 inetutils-1.9.1/remove-gets.patch
2. Update the version from 1.9.1 to 1.9.2 in version.patch
3. remove PR

(From meta-openembedded rev: a39f60d81253800e6d45b27508c4d395a8a62a11)

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoaoetools: uprev to version 36
Roy Li [Mon, 1 Sep 2014 07:11:36 +0000 (15:11 +0800)]
aoetools: uprev to version 36

(From meta-openembedded rev: 1db575c2709aa4feaa94a6ea7b8ee74acfa6eaf3)

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolowpan-tools: Move to 0.3.1 release
Khem Raj [Thu, 4 Sep 2014 07:32:37 +0000 (00:32 -0700)]
lowpan-tools: Move to 0.3.1 release

Also fix the git SRC_URI location

(From meta-openembedded rev: f7bc53b8284e09f6c41330a313103f23e43bffae)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoipsec-tools: Fix build with glibc 2.20
Khem Raj [Thu, 4 Sep 2014 07:32:33 +0000 (00:32 -0700)]
ipsec-tools: Fix build with glibc 2.20

(From meta-openembedded rev: fd83e4e7a19967a0605cc5af6387b61d1320ab9c)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomemcached: add knob to detect whether hugetlbfs are checked
Chong Lu [Tue, 19 Aug 2014 09:38:32 +0000 (17:38 +0800)]
memcached: add knob to detect whether hugetlbfs are checked

Add knob to detect whether hugetlbfs are checked or not.
This patch fixed the error:
    ld: cannot find -lhugetlbfs

(From meta-openembedded rev: ab6a7fa8dd79754b7c464d6637ce8ce62eb7af7e)

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agometa-networking: Update layer dependency information
Khem Raj [Tue, 2 Sep 2014 07:39:37 +0000 (00:39 -0700)]
meta-networking: Update layer dependency information

since python recipes are now spun out into its own layer
and there are recipes like crda which depend on M2Crypto
python module, of which the recipe is now moved from meta-oe
into meta-python, we need to express this change of layers
otherwise if you are not using meta-python then you end up
with errors e.g.

Nothing PROVIDES 'python-m2crypto-native' (but
meta-networking/recipes-connectivity/crda/crda_1.1.3.bb
DEPENDS on or otherwise requires it).

(From meta-openembedded rev: 46824934fa4ac6a61bebe2c92faa31c0a8e85392)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoat: rename bbappend to match any version from oe-core
Martin Jansa [Mon, 1 Sep 2014 10:03:03 +0000 (12:03 +0200)]
at: rename bbappend to match any version from oe-core

(From meta-openembedded rev: b45472a29b60d46cca313bd629561e674befe386)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolibmodule-pluggable-perl: add 5.1
Tim Orling [Thu, 28 Aug 2014 05:01:31 +0000 (22:01 -0700)]
libmodule-pluggable-perl: add 5.1

* Module::Pluggable - automatically give your module the ability to have plugins

(From meta-openembedded rev: 6b881ba6fd3e828021c266d3bd9c7a606d120858)

Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agontp: add deterministic support for KPPS interface
Peter Bigot [Thu, 28 Aug 2014 17:43:11 +0000 (12:43 -0500)]
ntp: add deterministic support for KPPS interface

ntp checks for presence of sys/timepps.h to determine whether the kernel
supports the RFC 2783 KPPS interface.  Under Linux the pps-tools package
installs this header.  Without this feature the ATOM clock driver does
not work, and other drivers like NMEA have reduced precision.  Remove
the feature non-determinism and increase ntpd capabilities by adding an
explicit dependency.

See: http://doc.ntp.org/4.2.6/kernpps.html

(From meta-openembedded rev: aca94301c8b38a86ab4e851da0ba0007680ea75b)

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agogpsd: add deterministic support for KPPS interface
Peter Bigot [Thu, 28 Aug 2014 17:42:16 +0000 (12:42 -0500)]
gpsd: add deterministic support for KPPS interface

gpsd enables low-precision PPS (pulse-per-second) support by default,
but only includes the high-precision kernel API capabilities if
sys/timepps.h is also detected.  Under Linux the pps-tools package
installs this header.  Remove the feature non-determinism and increase
gpsd capabilities by adding an explicit dependency.

See: http://www.catb.org/gpsd/gpsd-time-service-howto.html#_enabling_pps

(From meta-openembedded rev: 3b6dd621dacab9cb3d97941508c5890dc770bbb8)

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopps-tools: add recipe
Peter Bigot [Thu, 28 Aug 2014 12:06:19 +0000 (07:06 -0500)]
pps-tools: add recipe

This provides some utilities and a user-space header necessary to use
the Linux KPPS (RFC 2783) capabilities of gpsd and ntp.

(From meta-openembedded rev: 1eff1134a041e1abb32b2f134ae23c4316a0db60)

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agogpsd: update to 3.10
Peter Bigot [Thu, 28 Aug 2014 12:06:18 +0000 (07:06 -0500)]
gpsd: update to 3.10

Patches rebased onto new version with no material changes.

(From meta-openembedded rev: 3bd654324cdf2485249b1dcb49d2da8a7ded41d1)

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agontp: re-enable server debugging and control by PACKAGECONFIG
Peter Bigot [Thu, 28 Aug 2014 12:06:17 +0000 (07:06 -0500)]
ntp: re-enable server debugging and control by PACKAGECONFIG

The description in a previous patch to disable debugging is incorrect.
Although the option is default-enabled in configure.ac, configure does
respect the option that disables it.

In ntp 4.2.7 the option code is refactored to ntp_debug.m4 and has an
effect in sntp as well.  Adding --disable-debugging to the top-level
configure options overrides the default for both 4.2.6 and 4.2.7 without
patching the distribution.

Make the selection explicit and configurable, but restore the historical
default.  Absence of debugging capability in the server makes it
difficult to validate complex configurations.

(From meta-openembedded rev: 6bea4ca22eb0ee33a1d9f6d6dd2d4a978a261515)

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agodracut: update to 038
Koen Kooi [Wed, 27 Aug 2014 07:29:01 +0000 (09:29 +0200)]
dracut: update to 038

(From meta-openembedded rev: 1513d0e31f609ffcde9a116a50bfb0360b9e7ecf)

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agodracut: add 'getopt' to RDEPENDS
Koen Kooi [Wed, 27 Aug 2014 07:29:00 +0000 (09:29 +0200)]
dracut: add 'getopt' to RDEPENDS

This drags in full util-linux, a future TODO is to split up util-linux
completely in OE-core.

(From meta-openembedded rev: 06fd935e4f58f3454eca046de7d6927076abc371)

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomariadb: upgrade from 5.5.38 to 39
Kang Kai [Wed, 27 Aug 2014 05:49:43 +0000 (13:49 +0800)]
mariadb: upgrade from 5.5.38 to 39

Upgrade mariadb from 5.5.38 to 5.5.39. Previous upgrade made a lot of
work, so it is easy this time.

(From meta-openembedded rev: 7d9e535d2ee310bb44238df333586b127a0012ea)

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomkvtoolnix: enable parallel make
Koen Kooi [Wed, 27 Aug 2014 07:40:00 +0000 (09:40 +0200)]
mkvtoolnix: enable parallel make

(From meta-openembedded rev: de607f8781f6e76bf3eb060800bb7eea76dedde0)

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomkvtoolnix: update to 7.1.0+git
Koen Kooi [Wed, 27 Aug 2014 07:24:25 +0000 (09:24 +0200)]
mkvtoolnix: update to 7.1.0+git

This fixes compilation with boot 1.56+

(From meta-openembedded rev: bda4fdf91217a0cd35053053146b649ed62afb2f)

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolmbench: add lmbench-exception LICENSE
Yasir Khan [Mon, 25 Aug 2014 18:38:31 +0000 (23:38 +0500)]
lmbench: add lmbench-exception LICENSE

(From meta-openembedded rev: f6e6d632dbe23fe69c3363d9d70622cc69b25df1)

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Yasir-Khan <yasir_khan@mentor.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomd5deep: Add recipe for md5deep package version 4.4
Sven Ebenfeld [Mon, 25 Aug 2014 10:48:11 +0000 (12:48 +0200)]
md5deep: Add recipe for md5deep package version 4.4

I need to build hashdeep/md5deep within OE to include it in my images. This recipe enables OE to cross-compile md5deep. I needed to add the patch as do_configure_qa is complaining about cross-compilation errors otherwise. I added a pull request for the issue with the variable expansion to hashdeep as well.

(From meta-openembedded rev: 59a7c659e8d59e3caa5aeddf1ba45e8704174730)

Signed-off-by: Sven Ebenfeld <sven.ebenfeld@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoe-wm: add git recipe with latest revision
Martin Jansa [Mon, 25 Aug 2014 13:26:01 +0000 (15:26 +0200)]
e-wm: add git recipe with latest revision

* E19 is still in alpha stage, but I was told that many things work
  there better than old(ish) E18
* last announcement:
  https://phab.enlightenment.org/phame/live/3/post/e19_alpha2_now_with_50_more_explosions/
* but be aware that illume2 modules are gone and config mobile
  doesn't work without them
* there is new tiling config

(From meta-openembedded rev: 46698617eb3ee7a5a2c638759654b6076a7bc058)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoapache2: add systemd unit file
Chen Qi [Mon, 25 Aug 2014 06:47:20 +0000 (14:47 +0800)]
apache2: add systemd unit file

Add systemd unit file for apache2.

(From meta-openembedded rev: 49cb17b4978bf586311f5b8ab4b1b3810098c297)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomariadb: add systemd unit file
Chen Qi [Mon, 25 Aug 2014 06:47:19 +0000 (14:47 +0800)]
mariadb: add systemd unit file

The service file mainly comes from Fedora20.

This patch also adds a configuration file under /etc/tmpfiles.d so
that mysqld could start correctly.

(From meta-openembedded rev: 44834de2a3651cb84c8f46489fb6a5f75d6a6787)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomonkey: new v1.5.3 release.
Eduardo Silva [Sun, 24 Aug 2014 23:23:06 +0000 (17:23 -0600)]
monkey: new v1.5.3 release.

This patch add the new Monkey HTTP Server v1.5.3.

For more details about software changes please visit:

   http://monkey-project.com/Announcements/v1.5.3

=== Build Tests ==

This version have been tested on Yocto/Daisy being packaged and
deployed on images based on RPM successfully.

monkey-yocto/672eadb254e754b91efe691a6594985ee6d9a22e

(From meta-openembedded rev: 5340cc8474a949952a8124a7352c17e7ea994cb3)

Signed-off-by: Eduardo Silva <eduardo@monkey.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoe-wm: add efreet, evas-generic-loader-svg runtime recommendation
Martin Jansa [Sun, 24 Aug 2014 19:01:19 +0000 (21:01 +0200)]
e-wm: add efreet, evas-generic-loader-svg runtime recommendation

* resolves:
  ERR<efreet_cache>lib/efreet/efreet_cache.c:1108
  org.freedesktop.DBus.Error.ServiceUnknown The name
  org.enlightenment.Efreet was not provided by any .service files
  E: efreet couldn't build cache

  and

  Enlightenment found Evas can't load SVG files. Check Evas has SVG
  loader support.

(From meta-openembedded rev: b8b2d099633ebc5c5360dab4024cfd4c0be4a171)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopackagegroup*: set PACKAGE_ARCH before packagegroup inherit
Martin Jansa [Sun, 24 Aug 2014 16:01:11 +0000 (18:01 +0200)]
packagegroup*: set PACKAGE_ARCH before packagegroup inherit

* The required order was changed in oe-core commit:
  allarch: Add warning about packagegroup
  Since we want to start including this class conditionally, detect cases
  where packagegroup files use the old ordering and inform the user they
  need to update this.
* drop PACKAGE_ARCH setting from xorg-fonts-100dpi - nothing seems MACHINE
  specific in it

(From meta-openembedded rev: 5a25dde053e93e64b945776ab3fbf8b67c8c0773)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopython-snakefood: add 1.4
Tim Orling [Sun, 24 Aug 2014 00:57:05 +0000 (17:57 -0700)]
python-snakefood: add 1.4

* Generate dependencies from Python code, filter, cluster and generate
  graphs from the dependency list

* Tools included:
  - sfood:
      Given a set of input files or root directories, generate a list of
      dependencies between the files;
  - sfood-graph:
      Read a list of dependencies and produce a Graphviz dot file. (This
      file can be run through the Graphviz dot tool to produce a
      viewable/printable PDF file);
  - sfood-cluster:
      Read a list of dependencies, a list of file clusters, and output a
      list of simplified (clustered) dependencies.
  - sfood-checker:
      Analyze the source code with the AST and list unused or redundant
      imports.
  - sfood-imports:
      Find and list import statements in Python files, regardless of
      whether they can be imported or not.

(From meta-openembedded rev: 1a199dca255cab3cf8ad23a0508c4175353ea441)

Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopython-pyparted: fix rdeps for native
Tim Orling [Sun, 24 Aug 2014 01:36:17 +0000 (18:36 -0700)]
python-pyparted: fix rdeps for native

(From meta-openembedded rev: 40ecf311feaf766b8219a7b6889daf9e0309f4a5)

Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agophp: Fix native build due mistakenly linking against host's iconv
Otavio Salvador [Sun, 24 Aug 2014 19:39:47 +0000 (16:39 -0300)]
php: Fix native build due mistakenly linking against host's iconv

The configure script has mistakenly choose to enable iconv support,
due host to provide it, adding '/usr/lib' to the linking flags and
failing as:

,----[ Linking error while testing 'fork' support ]
| conftest.c:268: warning: conflicting types for built-in function 'fork'
| .../build/tmp/sysroots/x86_64-linux/usr/lib/libxml2.so:
|     undefined reference to `gzopen64@ZLIB_1.2.3.3'
| collect2: ld returned 1 exit status
`----

This patch disables iconv support for native builds fixing the error.

(From meta-openembedded rev: 768f20b8ad12aadc9f2e6f52b342e6a1b243dc2a)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopython-cython: add RDEPENDS on some required python modules
Jackie Huang [Fri, 22 Aug 2014 06:46:22 +0000 (02:46 -0400)]
python-cython: add RDEPENDS on some required python modules

python-distribute:
    File "/usr/bin/cython", line 5, in <module>
    ImportError: No module named pkg_resources

python-netserver:
    File "_tempita.py", line 34, in init Cython.Tempita._tempita
    ImportError: No module named cgi

python-subprocess:
    File "/usr/lib/python2.7/site-packages/Cython/Debugger/Cygdb.py", line 19, in <module>
    ImportError: No module named subprocess

python-shell:
    File "/usr/lib/python2.7/site-packages/Cython/Debugger/Cygdb.py", line 16, in <module>
    ImportError: No module named glob

(From meta-openembedded rev: fea3840ee5829afc4b159c81341366e47e4d6959)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomariadb: change the group of /var/lib/mysql from 'nogroup' to 'mysql'.
Hongxu Jia [Fri, 22 Aug 2014 01:25:01 +0000 (09:25 +0800)]
mariadb: change the group of /var/lib/mysql from 'nogroup' to 'mysql'.

The commit 8f637f9bbcdda1dc7a1998d243708c727aa6016f added
mysql group, we should change the group of /var/lib/mysql
from 'nogroup' to 'mysql' also.

(From meta-openembedded rev: 196f1050f1c883f5f09763b1797336a9f9300db4)

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopython-efl: upgrade to 1.10.1
Martin Jansa [Tue, 19 Aug 2014 15:49:15 +0000 (17:49 +0200)]
python-efl: upgrade to 1.10.1

= Changes since 1.10.0 =

Kai Huuhko (7):

  - warnings--
  - Documentation: warnings--
  - Elementary.multibuttonentry: Inject a Python object to created items
  - Elementary.entry: Fix ref leak in filter callback handling.
  - Elementary: Fix object item tooltips
  - Fix build from tarball with Cython installed
  - Bump version number for release 1.10.1

davemds (1):
  - Fix emotion.__repr__ function

godfath3r (1):
  - doc: add cleanup command in INSTALL file.

(From meta-openembedded rev: 0e34dbbab2a3458bc2c3f139bcbfd45dd21f1770)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoefl: upgrade to 1.11.0
Martin Jansa [Wed, 13 Aug 2014 12:00:32 +0000 (14:00 +0200)]
efl: upgrade to 1.11.0

* announcement:
  https://phab.enlightenment.org/phame/post/view/74/
  https://phab.enlightenment.org/phame/post/view/77/

(From meta-openembedded rev: a8d31694852bc0d0d4069b4fb9f4fde6625e47f7)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agopython-pyparted: Add recipe
Sujith H [Fri, 22 Aug 2014 06:25:05 +0000 (11:55 +0530)]
python-pyparted: Add recipe

This recipe will provide a set of Python modules that
provide Python programmers an interface to libparted,
the GNU parted library for disk partitioning and filesystem
manipulation.

(From meta-openembedded rev: faf83c51dd4e79419e5dd1abfba96c26a09ac982)

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Sujith H <Sujith_Haridasan@mentor.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolmbench: remove debianutils from RDEPENDS and add perl
Jackie Huang [Thu, 21 Aug 2014 09:20:43 +0000 (05:20 -0400)]
lmbench: remove debianutils from RDEPENDS and add perl

- I don't see any evdidence that lmbench needs debianutils to run:
  debianutils provides:
    run-parts, tempfile, savelog, which, ischroot,
    add-shell, installkernel, remove-shell
  but none of them is used by lmbench scripts and I tested it work
  fine without debianutils, so remove debianutils from RDEPENDS

- Some scripts in lmbench are perl scripts, so add
  RDEPENDS on perl (no addtional perl module is needed).

(From meta-openembedded rev: 78038840cccee0464e4d84ba8cfc4d3cec9e369d)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agooscam: fixed QA issue where binary was being stripped
root root [Thu, 21 Aug 2014 06:13:11 +0000 (23:13 -0700)]
oscam: fixed QA issue where binary was being stripped

http://lists.openembedded.org/pipermail/openembedded-core/2014-August/095778.html

WARNING: QA Issue: File '/usr/bin/oscam' from oscam was already stripped,
this
will prevent future debugging! [already-stripped]

Fix above warning by telling cmake to do Debug type build, which prevents
linking with '-s' flag that removed symbols before bitbake could put them
into dbg package.

(From meta-openembedded rev: 2619e2e80c3e30577127abf5f71863fac8919f2f)

Signed-off-by: S. Lockwood-Childs <sjl@vctlabs.com>
Signed-off-by: Tom King<ka6sox@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolmbench: use BPN instead of PN
Jackie Huang [Thu, 21 Aug 2014 02:21:34 +0000 (22:21 -0400)]
lmbench: use BPN instead of PN

Use BPN instead of PN to fix the dirs in scripts
when build with multilib.

(From meta-openembedded rev: ba39f285969f39cdb4bc67aa9fd30579c2cfe4da)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agosamba: upgrade to 3.6.24
Kang Kai [Wed, 20 Aug 2014 09:41:02 +0000 (17:41 +0800)]
samba: upgrade to 3.6.24

Upgrade samba to latest 3.6.x version.

* remove PR
* remove backport CVE patches
* update 4 patches: documentation.patch, documentation2.patch, undefined-symbols.patch
  and bug_387266_upstream_4104_mention-kerberos-in-smbspool-manpage.patch

(From meta-openembedded rev: 956615824924543937f7f508251b5e583e308d34)

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agowebmin: uprev from 1.620 to 1.700
Jackie Huang [Wed, 20 Aug 2014 06:24:18 +0000 (02:24 -0400)]
webmin: uprev from 1.620 to 1.700

Changed:

- Adjust or remake the following patches based on 1.700:
  init-exclude.patch
  exports-lib.pl.patch

(From meta-openembedded rev: bb4fedff5f6f74165c52f3c978ed98c7f3f5539e)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoltp-ddt: update to the latest rev, bump the version
Denys Dmytriyenko [Wed, 20 Aug 2014 01:25:33 +0000 (21:25 -0400)]
ltp-ddt: update to the latest rev, bump the version

* Fix KERNEL_DIR vs. KERNEL_INC properly, drop not needed Makefile patch
* Pass CC and KERNEL_CC to preserve the necessary system flags
* Tons of other fixes and new testcases

(From meta-openembedded rev: 2d6b021fcea16948dc84bb4da82a9a27b681d7a9)

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agomariadb: refer ubuntu/redhat to add mysql group
Hongxu Jia [Tue, 19 Aug 2014 09:58:57 +0000 (17:58 +0800)]
mariadb: refer ubuntu/redhat to add mysql group

In ubuntu/redhat, we have:
...
ps -eo user,group,cmd | grep "mysql"
mysql    mysql    /usr/sbin/mysqld
...

(From meta-openembedded rev: 8f637f9bbcdda1dc7a1998d243708c727aa6016f)

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolmbench: fix doc install failure
Jackie Huang [Tue, 19 Aug 2014 09:16:18 +0000 (05:16 -0400)]
lmbench: fix doc install failure

Fix the failure:
cp: cannot create regular file `/usr/share/man/man1/bargraph.1': Permission denied
mkdir: cannot create directory `/usr/share/man/man9': Permission denied

(From meta-openembedded rev: b2b80a1ee81a191c1a95ad5055c9492657b7f32c)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolmbench: fix lmbench memory check failure
Jackie Huang [Tue, 19 Aug 2014 09:16:17 +0000 (05:16 -0400)]
lmbench: fix lmbench memory check failure

lmbench can't proceed on some targets.  The memory check fails because the
memory latency of each page is longer then 10us, which is a time limit set
in the original memsize.c.

The memory latency is very different on different targets due to the
hardware and current system load.  The targets with slower memory
chips or heavy system load need much longer time to read or write
the memory.

This fix changes the fixed time limit of 10us to a specific value calculated
from the runtime target.

Also set an upper limit of memory size used for lmbench testing.  The memory
check sometimes fails if the target has a large amount of memory, for
example more than 4G.

(From meta-openembedded rev: 7dc1efce3fbb539e955a2be6d8dc72e80200f1e5)

Signed-off-by: Qingming Su <qingming.su@windriver.com>
Signed-off-by: Fupan Li <fupan.li@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agolmbench: Fix "make html" graph failure
Jackie Huang [Tue, 19 Aug 2014 09:16:16 +0000 (05:16 -0400)]
lmbench: Fix "make html" graph failure

The html-list perl script cannot parse the first line of the result
files about the lmbench version.

Additional fixes are to make the result's html pages easier to understand.

(From meta-openembedded rev: fca294b76eb2477fb23bf412b2188fdbffad6629)

Signed-off-by: Lin Yu <lin.yu@windriver.com>
Signed-off-by: Fupan Li <fupan.li@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agofcgi: move recipe and patches to correct folder
YangHaibo [Tue, 19 Aug 2014 07:01:49 +0000 (15:01 +0800)]
fcgi: move recipe and patches to correct folder

(From meta-openembedded rev: ff134012611bc9f93237e4a4372b87c3ceaaf1a3)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: YangHaibo <b40869@freescale.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agonumactl: fix the ptest
Roy.Li [Tue, 19 Aug 2014 06:28:31 +0000 (14:28 +0800)]
numactl: fix the ptest

1. one test case is not installed
2. install a copy of numactl into ptest dir, since the test
script is using the relative path to run numactl

(From meta-openembedded rev: 6edd5b336455627f0540238d9d63e45d633cd249)

Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoautofs: uprev it to 5.1.0
Roy Li [Tue, 19 Aug 2014 03:31:35 +0000 (11:31 +0800)]
autofs: uprev it to 5.1.0

1. Uprev it to 5.1.0, add remove the unneed patches
2. fix a building failure since not include stdarg.h
3. using pkg-config to check xml and krb5
4. force STRIP to empty to not strip the file

(From meta-openembedded rev: 5e1098f2c2e1a553e9e816e12982190bb9bdf762)

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agostrongswan: uprev to version 5.2.0
Jackie Huang [Mon, 18 Aug 2014 07:05:02 +0000 (03:05 -0400)]
strongswan: uprev to version 5.2.0

* removed two patches which were already integrated in 5.2.0:
  strongswan-4.3.3-5.1.1_asn1_unwrap.patch
  strongswan-5.0.0-5.1.2_reject_child_sa.patch

(From meta-openembedded rev: 778ddba7010febf0b5c8029f09e83a3288eaa18b)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agoiw: uprev to version 3.15
Jackie Huang [Mon, 18 Aug 2014 03:21:12 +0000 (23:21 -0400)]
iw: uprev to version 3.15

- change to use tar.gz since bz2 is no longer provided in upstream
- adjust the patch for new version

(From meta-openembedded rev: c73e26932dcbb8bbe1895ba969e0c41cd9bbf850)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
9 years agortmpdump: Integrate v2.4
Andrei Gherzan [Sun, 17 Aug 2014 15:56:41 +0000 (17:56 +0200)]
rtmpdump: Integrate v2.4

Change-Id: I2d8e84189674074385c41f50dc535081e9c845af
(From meta-openembedded rev: f17c1486c15e35006891be9d53b2175364afe363)

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>