Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/3] Package Updates
@ 2012-05-25  8:50 Radu Moisan
  2012-05-25  8:50 ` [PATCH 1/3] foomatic-filters: update to version 4.0.15 Radu Moisan
                   ` (3 more replies)
  0 siblings, 4 replies; 30+ messages in thread
From: Radu Moisan @ 2012-05-25  8:50 UTC (permalink / raw)
  To: openembedded-core

This patchset updates dbus, mtd-utils and foomatic-filters.

The following changes since commit 0f795f81fe5ad3ef78c21a177eca90fbc8810f81:

  qemu: disable vnc-jpeg compression (2012-05-24 08:53:40 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib rmoisan/updates
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=rmoisan/updates

Radu Moisan (3):
  foomatic-filters: update to version 4.0.15
  mtd-utils: Update to version 1.5.0
  dbus: Update to version 1.5.12

 .../dbus/{dbus-1.4.16 => dbus-1.5.12}/dbus-1.init  |    0
 .../dbus/{dbus-1.4.16 => dbus-1.5.12}/tmpdir.patch |    0
 meta/recipes-core/dbus/dbus_1.4.16.bb              |    7 -------
 meta/recipes-core/dbus/dbus_1.5.12.bb              |    7 +++++++
 .../add-exclusion-to-mkfs-jffs2-git-2.patch        |    0
 .../mtd/{mtd-utils_1.4.9.bb => mtd-utils_1.5.0.bb} |    2 +-
 ...filters_4.0.7.bb => foomatic-filters_4.0.15.bb} |    6 +++---
 7 files changed, 11 insertions(+), 11 deletions(-)
 rename meta/recipes-core/dbus/{dbus-1.4.16 => dbus-1.5.12}/dbus-1.init (100%)
 rename meta/recipes-core/dbus/{dbus-1.4.16 => dbus-1.5.12}/tmpdir.patch (100%)
 delete mode 100644 meta/recipes-core/dbus/dbus_1.4.16.bb
 create mode 100644 meta/recipes-core/dbus/dbus_1.5.12.bb
 rename meta/recipes-devtools/mtd/{mtd-utils-1.4.9 => mtd-utils-1.5.0}/add-exclusion-to-mkfs-jffs2-git-2.patch (100%)
 rename meta/recipes-devtools/mtd/{mtd-utils_1.4.9.bb => mtd-utils_1.5.0.bb} (98%)
 rename meta/recipes-extended/foomatic/{foomatic-filters_4.0.7.bb => foomatic-filters_4.0.15.bb} (90%)

-- 
1.7.9.5




^ permalink raw reply	[flat|nested] 30+ messages in thread
* Re: [PATCH 0/3] Package Updates
@ 2012-05-28 10:55 Burton, Ross
  2012-05-28 11:21 ` Radu Moisan
  0 siblings, 1 reply; 30+ messages in thread
From: Burton, Ross @ 2012-05-28 10:55 UTC (permalink / raw)
  To: OE-core; +Cc: koen

Hi,

First, sorry for the thread breaking, I've just joined this list and I
didn't get this mail.

Koen Kooi wrote:
>>  dbus: Update to version 1.5.12
>
> First: how was this tested?
> Second: From the dbus website:
>
>        The current stable branch is D-Bus 1.4.x. This is the recommended
> version for most purposes.
>        The current development branch is D-Bus 1.5.x, which will lead to a
> 1.6.x stable branch in future.
>
> Why are you deleting the stable branch based recipe and add one from
> the development branch?

The definition of stable and unstable in DBus isn't as hard and fast
as you'd really like -- the 1.5.x cycle is very slow and mostly stable
from a crashy point of view.

I'd say there is a good rationale for having both 1.4.x (.20, so that
also needs an upgrade) and 1.5.x in oe-core.  The default should be
1.4 for obvious reasons (it's the stable release), and 1.5 should be
there for people who need the improvements.  In particular there has
been a lot of work on performance, so anyone heavily using dbus (i.e.
anything using Telepathy, which is where the improvements came from)
should look at 1.5 because it will give a noticeable improvement on
slower hardware.

Ross



^ permalink raw reply	[flat|nested] 30+ messages in thread
* Re: [PATCH 0/3] Package Updates
@ 2012-05-29  7:01 Sarbu, Florin-Ionut (Florin)
  2012-05-29  7:25 ` Radu Moisan
  0 siblings, 1 reply; 30+ messages in thread
From: Sarbu, Florin-Ionut (Florin) @ 2012-05-29  7:01 UTC (permalink / raw)
  To: 'Radu Moisan',
	'openembedded-core@lists.openembedded.org'

[-- Attachment #1: Type: text/plain, Size: 1534 bytes --]

EXTRA_OECONF+="--enable-tests" may be what you are looking for.

-----Original Message-----
From: Radu Moisan [radu.moisan@intel.com<mailto:radu.moisan@intel.com>]
Sent: Monday, May 28, 2012 11:24 PM Pacific Standard Time
To: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH 0/3] Package Updates



On 05/28/2012 04:26 PM, Andrei Gherzan wrote:
On Mon, May 28, 2012 at 4:24 PM, Radu Moisan <radu.moisan@intel.com<mailto:radu.moisan@intel.com>> wrote:
On 05/28/2012 02:21 PM, Andrei Gherzan wrote:
Dbus comes with a test suite. Running those should be a must.
I could not find how to run the test suite. I've tried dbus-daemon, dbus-monitor, and the rest, but non of them have options for some runtime checks. Other than that I imagine the test suite you mention must come in a separate package. Do we have a recipe for that to? Which image should I build to have that package included and be able to test?


There is an internal test suite for dbus. You can enable building those tests in configure:
"--enable-tests"

@g

So, isn't there a way of specifying build options in some file that bitbake will use afterwards to do the build? For instance where from ./configure is executed (from within bitbake I assume). I tried to take a look over configure file of dbus but could not figure out a way of hardcoding the --enable-tests option (not that hardcoding would be a best choice, but for testing purposes I considered it a choice). Any info on this is much appreciated.

Thanks,
Radu

[-- Attachment #2: Type: text/html, Size: 2503 bytes --]

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [PATCH 0/3] Package Updates
@ 2013-07-23 23:53 Saul Wold
  0 siblings, 0 replies; 30+ messages in thread
From: Saul Wold @ 2013-07-23 23:53 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 8fc6904fe97438478119db6cd23b7b4eb33b50aa:

  curl: add upstream status to patch (2013-07-18 12:21:13 -0700)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib sgw/updates
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/updates

Saul Wold (3):
  consolekit: Update to 0.4.6
  mklibs-native: Update to 0.1.38
  cups: Update to 1.6.3

 .../mklibs/{mklibs-native_0.1.37.bb => mklibs-native_0.1.38.bb}   | 4 ++--
 meta/recipes-extended/cups/{cups_1.6.2.bb => cups_1.6.3.bb}       | 4 ++--
 .../consolekit/{consolekit_0.4.5.bb => consolekit_0.4.6.bb}       | 8 +++-----
 3 files changed, 7 insertions(+), 9 deletions(-)
 rename meta/recipes-devtools/mklibs/{mklibs-native_0.1.37.bb => mklibs-native_0.1.38.bb} (80%)
 rename meta/recipes-extended/cups/{cups_1.6.2.bb => cups_1.6.3.bb} (80%)
 rename meta/recipes-support/consolekit/{consolekit_0.4.5.bb => consolekit_0.4.6.bb} (90%)

-- 
1.8.1.4



^ permalink raw reply	[flat|nested] 30+ messages in thread
* [PATCH 0/3] Package Updates
@ 2013-08-05 21:07 Saul Wold
  0 siblings, 0 replies; 30+ messages in thread
From: Saul Wold @ 2013-08-05 21:07 UTC (permalink / raw)
  To: openembedded-core


The following changes since commit bc6258f88705b0e7989089a8666ac5e5d2355823:

  grep: Add patch for texinfo 5.1 (2013-08-02 08:21:17 -0700)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib sgw/updates
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/updates

Saul Wold (3):
  mc: upgrade to 4.8.10
  util-linux: upgrade to 2.23.2
  man-pages: upgrade to 3.53

 .../util-linux/{util-linux_2.23.1.bb => util-linux_2.23.2.bb}         | 4 ++--
 .../man-pages/{man-pages_3.52.bb => man-pages_3.53.bb}                | 4 ++--
 meta/recipes-extended/mc/{mc_4.8.9.bb => mc_4.8.10.bb}                | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)
 rename meta/recipes-core/util-linux/{util-linux_2.23.1.bb => util-linux_2.23.2.bb} (83%)
 rename meta/recipes-extended/man-pages/{man-pages_3.52.bb => man-pages_3.53.bb} (82%)
 rename meta/recipes-extended/mc/{mc_4.8.9.bb => mc_4.8.10.bb} (93%)

-- 
1.8.1.4



^ permalink raw reply	[flat|nested] 30+ messages in thread
* [PATCH 0/3] Package Updates
@ 2013-12-10 19:16 Saul Wold
  0 siblings, 0 replies; 30+ messages in thread
From: Saul Wold @ 2013-12-10 19:16 UTC (permalink / raw)
  To: openembedded-core

Did a build with debian packaging and tested dpkg lightly on the target.

Sau!

The following changes since commit 315367ea9526186d5836c64867ce0cd40d9d8412:

  nativesdk.bbclass: support nativesdk to override with the PACKAGES_DYNAMIC statement (2013-12-09 21:36:30 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib sgw/updates
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/updates

Saul Wold (3):
  util-macros: upgrade to 1.18.0
  dpkg: upgrade to 1.17.4
  cracklib: upgrade to 2.9.1

 meta/recipes-devtools/dpkg/{dpkg_1.17.1.bb => dpkg_1.17.4.bb}         | 4 ++--
 .../cracklib/{cracklib_2.9.0.bb => cracklib_2.9.1.bb}                 | 4 ++--
 .../xorg-util/{util-macros_1.17.1.bb => util-macros_1.18.0.bb}        | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)
 rename meta/recipes-devtools/dpkg/{dpkg_1.17.1.bb => dpkg_1.17.4.bb} (75%)
 rename meta/recipes-extended/cracklib/{cracklib_2.9.0.bb => cracklib_2.9.1.bb} (84%)
 rename meta/recipes-graphics/xorg-util/{util-macros_1.17.1.bb => util-macros_1.18.0.bb} (75%)

-- 
1.8.3.1



^ permalink raw reply	[flat|nested] 30+ messages in thread
* [PATCH 0/3] Package Updates
@ 2014-03-10  3:48 Saul Wold
  0 siblings, 0 replies; 30+ messages in thread
From: Saul Wold @ 2014-03-10  3:48 UTC (permalink / raw)
  To: openembedded-core

These are some core packages for larger systems that had updates
that should be included in 1.6.

The bind update provides CVE fixes

Sau!

Saul Wold (3):
  util-linux: Update to 2.24.1
  dhcp: Update to 4.3.0
  bind: Update to 9.9.5

 .../bind-9.8.1-CVE-2012-5166.patch                 |   0
 .../{bind-9.8.1 => bind}/bind-CVE-2011-4313.patch  |   0
 .../{bind-9.8.1 => bind}/bind-CVE-2012-1667.patch  |   0
 .../{bind-9.8.1 => bind}/bind-CVE-2012-3817.patch  |   0
 .../{bind-9.8.1 => bind}/bind-CVE-2013-2266.patch  |   0
 .../bind-Fix-CVE-2012-4244.patch                   |   0
 .../bind/{bind-9.8.1 => bind}/conf.patch           |   0
 .../{bind-9.8.1 => bind}/cross-build-fix.patch     |   0
 .../bind/bind/dont-test-on-host.patch              |  13 ++
 .../make-etc-initd-bind-stop-work.patch            |   0
 .../mips1-not-support-opcode.diff                  |   0
 .../bind/{bind_9.8.1.bb => bind_9.9.5.bb}          |  20 +--
 meta/recipes-connectivity/dhcp/dhcp.inc            |   2 +-
 .../dhcp/dhcp/fix-external-bind.patch              | 115 +++++++-------
 .../dhcp/{dhcp_4.2.5-P1.bb => dhcp_4.3.0.bb}       |   6 +-
 meta/recipes-core/util-linux/util-linux.inc        |  12 +-
 .../util-linux/util-linux/fix-configure.patch      |  20 +--
 .../util-linux/util-linux/util-linux-native.patch  | 173 +++------------------
 .../{util-linux_2.23.2.bb => util-linux_2.24.1.bb} |   6 +-
 19 files changed, 123 insertions(+), 244 deletions(-)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/bind-9.8.1-CVE-2012-5166.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/bind-CVE-2011-4313.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/bind-CVE-2012-1667.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/bind-CVE-2012-3817.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/bind-CVE-2013-2266.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/bind-Fix-CVE-2012-4244.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/conf.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/cross-build-fix.patch (100%)
 create mode 100644 meta/recipes-connectivity/bind/bind/dont-test-on-host.patch
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/make-etc-initd-bind-stop-work.patch (100%)
 rename meta/recipes-connectivity/bind/{bind-9.8.1 => bind}/mips1-not-support-opcode.diff (100%)
 rename meta/recipes-connectivity/bind/{bind_9.8.1.bb => bind_9.9.5.bb} (76%)
 rename meta/recipes-connectivity/dhcp/{dhcp_4.2.5-P1.bb => dhcp_4.3.0.bb} (65%)
 rename meta/recipes-core/util-linux/{util-linux_2.23.2.bb => util-linux_2.24.1.bb} (83%)

-- 
1.8.3.1



^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2014-03-10  3:48 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-25  8:50 [PATCH 0/3] Package Updates Radu Moisan
2012-05-25  8:50 ` [PATCH 1/3] foomatic-filters: update to version 4.0.15 Radu Moisan
2012-05-30 12:03   ` Richard Purdie
2012-05-25  8:50 ` [PATCH 2/3] mtd-utils: Update to version 1.5.0 Radu Moisan
2012-05-25  8:51   ` Martin Jansa
2012-05-25  9:30     ` Radu Moisan
2012-05-25  9:41       ` Radu Moisan
2012-05-25  9:42         ` Andrei Gherzan
2012-05-25  8:50 ` [PATCH 3/3] dbus: Update to version 1.5.12 Radu Moisan
2012-05-25  9:52 ` [PATCH 0/3] Package Updates Koen Kooi
  -- strict thread matches above, loose matches on Subject: below --
2012-05-28 10:55 Burton, Ross
2012-05-28 11:21 ` Radu Moisan
2012-05-28 11:21   ` Andrei Gherzan
2012-05-28 12:07     ` Paul Eggleton
2012-05-28 13:24     ` Radu Moisan
2012-05-28 13:26       ` Andrei Gherzan
2012-05-28 13:30         ` Burton, Ross
2012-05-28 13:44           ` Richard Purdie
2012-05-28 13:47             ` Burton, Ross
2012-05-28 13:58             ` Andrei Gherzan
2012-05-29 12:10               ` Philip Balister
2012-05-29 14:04                 ` Radu Moisan
2012-05-29  6:28         ` Radu Moisan
2012-05-29  6:58           ` Radu Moisan
2012-05-29  7:01 Sarbu, Florin-Ionut (Florin)
2012-05-29  7:25 ` Radu Moisan
2013-07-23 23:53 Saul Wold
2013-08-05 21:07 Saul Wold
2013-12-10 19:16 Saul Wold
2014-03-10  3:48 Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox