Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] Minor fixes
@ 2011-05-16 20:18 Tom Rini
  2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Tom Rini @ 2011-05-16 20:18 UTC (permalink / raw)
  To: openembedded-core

The following series brings in two minor fixups I've pushed into openembedded
master recently.  openssh was being silly and using ${libdir}exec rather
than ${libexecdir} and we weren't wrapping perl${PV} which breaks relocated
caches where perl-native exists and perl doesn't.

Pull URL: git://git.openembedded.org/openembedded-core-contrib
  Branch: trini/minor-fixes-16may2011
  Browse: http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=trini/minor-fixes-16may2011

Thanks,
    Tom Rini <tom_rini@mentor.com>
---


Tom Rini (2):
  openssh: Don't use ${libdir}exec
  perl-native: create_wrapper on perl${PV} too

 meta/recipes-connectivity/openssh/openssh_5.6p1.bb |    4 ++--
 meta/recipes-devtools/perl/perl-native_5.12.3.bb   |    3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)




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

* [PATCH 1/2] openssh: Don't use ${libdir}exec
  2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
@ 2011-05-16 20:18 ` Tom Rini
  2011-05-16 20:18 ` [PATCH 2/2] perl-native: create_wrapper on perl${PV} too Tom Rini
  2011-05-17 18:23 ` [PATCH 0/2] Minor fixes Saul Wold
  2 siblings, 0 replies; 8+ messages in thread
From: Tom Rini @ 2011-05-16 20:18 UTC (permalink / raw)
  To: openembedded-core

This is 1259e0289ce53198cc6c57a9616c8a1623be502a in OE.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
 meta/recipes-connectivity/openssh/openssh_5.6p1.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-connectivity/openssh/openssh_5.6p1.bb b/meta/recipes-connectivity/openssh/openssh_5.6p1.bb
index d93a773..df7fcad 100644
--- a/meta/recipes-connectivity/openssh/openssh_5.6p1.bb
+++ b/meta/recipes-connectivity/openssh/openssh_5.6p1.bb
@@ -75,8 +75,8 @@ FILES_${PN}-ssh = "${bindir}/ssh.${PN} ${sysconfdir}/ssh/ssh_config"
 FILES_${PN}-sshd = "${sbindir}/sshd ${sysconfdir}/init.d/sshd"
 FILES_${PN}-sshd += "${sysconfdir}/ssh/moduli ${sysconfdir}/ssh/sshd_config"
 FILES_${PN}-sftp = "${bindir}/sftp"
-FILES_${PN}-sftp-server = "${libdir}exec/sftp-server"
-FILES_${PN}-misc = "${bindir}/ssh* ${libdir}exec/ssh*"
+FILES_${PN}-sftp-server = "${libexecdir}/sftp-server"
+FILES_${PN}-misc = "${bindir}/ssh* ${libexecdir}/ssh*"
 FILES_${PN}-keygen = "${bindir}/ssh-keygen"
 
 RDEPENDS_${PN} += "${PN}-scp ${PN}-ssh ${PN}-sshd ${PN}-keygen"
-- 
1.7.0.4




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

* [PATCH 2/2] perl-native: create_wrapper on perl${PV} too
  2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
  2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
@ 2011-05-16 20:18 ` Tom Rini
  2011-05-17 18:23 ` [PATCH 0/2] Minor fixes Saul Wold
  2 siblings, 0 replies; 8+ messages in thread
From: Tom Rini @ 2011-05-16 20:18 UTC (permalink / raw)
  To: openembedded-core

perl${PV} becomes hostperl when building for the target so we need a wrapper
on that too.

This is 1e255fbd296e95ff178d66c4a1fe4875a988d7e1 in OE.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
 meta/recipes-devtools/perl/perl-native_5.12.3.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/perl/perl-native_5.12.3.bb b/meta/recipes-devtools/perl/perl-native_5.12.3.bb
index 0476bdf..c5cd13c 100644
--- a/meta/recipes-devtools/perl/perl-native_5.12.3.bb
+++ b/meta/recipes-devtools/perl/perl-native_5.12.3.bb
@@ -4,7 +4,7 @@ SECTION = "libs"
 LICENSE = "Artistic|GPL"
 LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
 		    file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8"
-PR = "r1"
+PR = "r2"
 
 LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
                     file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8"
@@ -97,6 +97,7 @@ do_install () {
 	done
 
 	create_wrapper ${D}${bindir}/perl PERL5LIB='$PERL5LIB:${STAGING_LIBDIR}/perl/${PV}:${STAGING_LIBDIR}/perl/'
+	create_wrapper ${D}${bindir}/perl${PV} PERL5LIB='$PERL5LIB:${STAGING_LIBDIR}/perl/${PV}:${STAGING_LIBDIR}/perl/'
 }
 do_install_append_nylon() {
 	# get rid of definitions not supported by the gcc version we use for nylon...
-- 
1.7.0.4




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

* Re: [PATCH 0/2] Minor fixes
  2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
  2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
  2011-05-16 20:18 ` [PATCH 2/2] perl-native: create_wrapper on perl${PV} too Tom Rini
@ 2011-05-17 18:23 ` Saul Wold
  2 siblings, 0 replies; 8+ messages in thread
From: Saul Wold @ 2011-05-17 18:23 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 05/16/2011 01:18 PM, Tom Rini wrote:
> The following series brings in two minor fixups I've pushed into openembedded
> master recently.  openssh was being silly and using ${libdir}exec rather
> than ${libexecdir} and we weren't wrapping perl${PV} which breaks relocated
> caches where perl-native exists and perl doesn't.
>
> Pull URL: git://git.openembedded.org/openembedded-core-contrib
>    Branch: trini/minor-fixes-16may2011
>    Browse: http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=trini/minor-fixes-16may2011
>
> Thanks,
>      Tom Rini<tom_rini@mentor.com>
> ---
>
>
> Tom Rini (2):
>    openssh: Don't use ${libdir}exec
>    perl-native: create_wrapper on perl${PV} too
>
>   meta/recipes-connectivity/openssh/openssh_5.6p1.bb |    4 ++--
>   meta/recipes-devtools/perl/perl-native_5.12.3.bb   |    3 ++-
>   2 files changed, 4 insertions(+), 3 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
Merged into OE-Core

Thanks
	Sau!




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

* [PATCH 0/2] Minor fixes
@ 2012-01-04  1:31 Joshua Lock
  2012-01-04 11:25 ` Richard Purdie
  0 siblings, 1 reply; 8+ messages in thread
From: Joshua Lock @ 2012-01-04  1:31 UTC (permalink / raw)
  To: openembedded-core

A couple of small patches created in the course of putting together a point
release for Yocto 1.1.

Cheers,
Joshua

The following changes since commit de679a3036ebef1c7d7b8ee23f05590c95e498d9:

  pseudo: ensure libs are included in package (2012-01-03 12:10:59 +0000)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib josh/stuff
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=josh/stuff

Joshua Lock (2):
  linux-tools: add binutils to perf DEPENDS
  cogl: ensure we can build on armv4

 .../clutter/cogl/build_for_armv4t.patch            |   23 ++++++++++++++++++++
 meta/recipes-graphics/clutter/cogl_1.8.2.bb        |    5 +++-
 meta/recipes-graphics/clutter/cogl_git.bb          |    5 ++-
 meta/recipes-kernel/linux/linux-tools.inc          |    2 +-
 4 files changed, 31 insertions(+), 4 deletions(-)
 create mode 100644 meta/recipes-graphics/clutter/cogl/build_for_armv4t.patch

-- 
1.7.7.5




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

* Re: [PATCH 0/2] Minor fixes
  2012-01-04  1:31 Joshua Lock
@ 2012-01-04 11:25 ` Richard Purdie
  0 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2012-01-04 11:25 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Tue, 2012-01-03 at 17:31 -0800, Joshua Lock wrote:
> A couple of small patches created in the course of putting together a point
> release for Yocto 1.1.
> 
> Cheers,
> Joshua
> 
> The following changes since commit de679a3036ebef1c7d7b8ee23f05590c95e498d9:
> 
>   pseudo: ensure libs are included in package (2012-01-03 12:10:59 +0000)
> 
> are available in the git repository at:
>   git://git.openembedded.org/openembedded-core-contrib josh/stuff
>   http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=josh/stuff
> 
> Joshua Lock (2):
>   linux-tools: add binutils to perf DEPENDS
>   cogl: ensure we can build on armv4

Merged to master, thanks.

Richard




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

* [PATCH 0/2] Minor fixes
@ 2012-10-03 12:37 Paul Eggleton
  2012-10-05 16:08 ` Saul Wold
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Eggleton @ 2012-10-03 12:37 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit eb96be4db46039752c44dc37ef676eaac04e3dba:

  xf86-video-intel: drop libxvmc dependency (2012-10-03 12:41:03 +0100)

are available in the git repository at:

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

Paul Eggleton (2):
  buildhistory_analysis: update to use explode_dep_versions2()
  rpmresolve: fix reporting of multiple matches error

 meta/lib/oe/buildhistory_analysis.py              |   23 +++++++++++++++++----
 meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c |    6 +++---
 meta/recipes-devtools/rpm/rpmresolve_1.0.bb       |    2 +-
 3 files changed, 23 insertions(+), 8 deletions(-)

-- 
1.7.9.5




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

* Re: [PATCH 0/2] Minor fixes
  2012-10-03 12:37 Paul Eggleton
@ 2012-10-05 16:08 ` Saul Wold
  0 siblings, 0 replies; 8+ messages in thread
From: Saul Wold @ 2012-10-05 16:08 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: openembedded-core

On 10/03/2012 05:37 AM, Paul Eggleton wrote:
> The following changes since commit eb96be4db46039752c44dc37ef676eaac04e3dba:
>
>    xf86-video-intel: drop libxvmc dependency (2012-10-03 12:41:03 +0100)
>
> are available in the git repository at:
>
>    git://git.openembedded.org/openembedded-core-contrib paule/fixes2
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes2
>
> Paul Eggleton (2):
>    buildhistory_analysis: update to use explode_dep_versions2()
>    rpmresolve: fix reporting of multiple matches error
>
>   meta/lib/oe/buildhistory_analysis.py              |   23 +++++++++++++++++----
>   meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c |    6 +++---
>   meta/recipes-devtools/rpm/rpmresolve_1.0.bb       |    2 +-
>   3 files changed, 23 insertions(+), 8 deletions(-)
>
Merged into OE-Core

Thanks
	Sau!




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

end of thread, other threads:[~2012-10-05 16:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
2011-05-16 20:18 ` [PATCH 2/2] perl-native: create_wrapper on perl${PV} too Tom Rini
2011-05-17 18:23 ` [PATCH 0/2] Minor fixes Saul Wold
  -- strict thread matches above, loose matches on Subject: below --
2012-01-04  1:31 Joshua Lock
2012-01-04 11:25 ` Richard Purdie
2012-10-03 12:37 Paul Eggleton
2012-10-05 16:08 ` Saul Wold

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