All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch yem-misc-fixes
@ 2012-12-25 18:11 Yann E. MORIN
  2012-12-25 18:11 ` [Buildroot] [PATCH 1/2] package/spice: don't enable GUI if dependencies not met Yann E. MORIN
  2012-12-25 18:11 ` [Buildroot] [PATCH 2/2] package/keyutils: disable on avr32 Yann E. MORIN
  0 siblings, 2 replies; 7+ messages in thread
From: Yann E. MORIN @ 2012-12-25 18:11 UTC (permalink / raw)
  To: buildroot

Hello All!

Here are two fixes for packages I recently submitted.

The following changes since commit 5f70f5caea8a8e229a5adad948b32fe4e3c88289:

  new package: proxychains (2012-12-23 21:57:45 +0100)

are available in the git repository at:
  git://gitorious.org/buildroot/buildroot.git yem-misc-fixes

Yann E. MORIN (2):
      package/spice: don't enable GUI if dependencies not met
      package/keyutils: disable on avr32

 package/keyutils/Config.in |    1 +
 package/spice/Config.in    |    5 +++++
 2 files changed, 6 insertions(+), 0 deletions(-)

Regards,
Yann E. MORIN

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/2] package/spice: don't enable GUI if dependencies not met
  2012-12-25 18:11 [Buildroot] [pull request] Pull request for branch yem-misc-fixes Yann E. MORIN
@ 2012-12-25 18:11 ` Yann E. MORIN
  2012-12-26 22:51   ` Peter Korsgaard
  2012-12-25 18:11 ` [Buildroot] [PATCH 2/2] package/keyutils: disable on avr32 Yann E. MORIN
  1 sibling, 1 reply; 7+ messages in thread
From: Yann E. MORIN @ 2012-12-25 18:11 UTC (permalink / raw)
  To: buildroot

The spice GUI selects unconditionally selects cegui06, but cegui06 requires
threads and C++, so spice GUI must also depend on threads and C++.

Fixes:
    http://autobuild.buildroot.net/results/37f8ee90bb4348db97daef83493005c42a193b91/

Merry X-Mas! ;-)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/spice/Config.in |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/package/spice/Config.in b/package/spice/Config.in
index 1b264e7..5c4975a 100644
--- a/package/spice/Config.in
+++ b/package/spice/Config.in
@@ -35,8 +35,13 @@ config BR2_PACKAGE_SPICE_CLIENT
 	select BR2_PACKAGE_XLIB_LIBXFIXES
 	select BR2_PACKAGE_XLIB_LIBXRANDR
 
+comment "GUI requires a toolchain with threads and C++"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
+
 config BR2_PACKAGE_SPICE_GUI
 	bool "Enable GUI"
+	depends on BR2_TOOLCHAIN_HAS_THREADS    # cegui06
+	depends on BR2_INSTALL_LIBSTDCPP        # cegui06
 	depends on BR2_PACKAGE_SPICE_CLIENT
 	select BR2_PACKAGE_CEGUI06
 	help
-- 
1.7.2.5

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

* [Buildroot] [PATCH 2/2] package/keyutils: disable on avr32
  2012-12-25 18:11 [Buildroot] [pull request] Pull request for branch yem-misc-fixes Yann E. MORIN
  2012-12-25 18:11 ` [Buildroot] [PATCH 1/2] package/spice: don't enable GUI if dependencies not met Yann E. MORIN
@ 2012-12-25 18:11 ` Yann E. MORIN
  2012-12-26 22:57   ` Peter Korsgaard
  1 sibling, 1 reply; 7+ messages in thread
From: Yann E. MORIN @ 2012-12-25 18:11 UTC (permalink / raw)
  To: buildroot

keyutils does not build on avr32 (probably
because the toolchain is way too old).

Fixes:
    http://autobuild.buildroot.net/results/aa86f6a68f5d0ea4914ab259ed270615bc9d6a99/

Merry X-Mas!

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/keyutils/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/keyutils/Config.in b/package/keyutils/Config.in
index 9b5a24b..f77eb52 100644
--- a/package/keyutils/Config.in
+++ b/package/keyutils/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_KEYUTILS
 	bool "keyutils"
+	depends on !BR2_avr32
 	help
 	  These tools are used to control the key management system
 	  built into the Linux kernel.
-- 
1.7.2.5

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

* [Buildroot] [PATCH 1/2] package/spice: don't enable GUI if dependencies not met
  2012-12-25 18:11 ` [Buildroot] [PATCH 1/2] package/spice: don't enable GUI if dependencies not met Yann E. MORIN
@ 2012-12-26 22:51   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2012-12-26 22:51 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> The spice GUI selects unconditionally selects cegui06, but cegui06 requires
 Yann> threads and C++, so spice GUI must also depend on threads and C++.

 Yann> Fixes:
 Yann>     http://autobuild.buildroot.net/results/37f8ee90bb4348db97daef83493005c42a193b91/

 Yann> +++ b/package/spice/Config.in
 Yann> @@ -35,8 +35,13 @@ config BR2_PACKAGE_SPICE_CLIENT
 Yann>  	select BR2_PACKAGE_XLIB_LIBXFIXES
 Yann>  	select BR2_PACKAGE_XLIB_LIBXRANDR
 
 Yann> +comment "GUI requires a toolchain with threads and C++"
 Yann> +	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
 Yann> +

This comment should only be shown if SPICE_CLIENT is enabled, so I've
added the dependency and committed, thanks.

 Yann>  config BR2_PACKAGE_SPICE_GUI
 Yann>  	bool "Enable GUI"
 Yann> +	depends on BR2_TOOLCHAIN_HAS_THREADS    # cegui06
 Yann> +	depends on BR2_INSTALL_LIBSTDCPP        # cegui06

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/keyutils: disable on avr32
  2012-12-25 18:11 ` [Buildroot] [PATCH 2/2] package/keyutils: disable on avr32 Yann E. MORIN
@ 2012-12-26 22:57   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2012-12-26 22:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> keyutils does not build on avr32 (probably
 Yann> because the toolchain is way too old).

 Yann> Fixes:
 Yann>     http://autobuild.buildroot.net/results/aa86f6a68f5d0ea4914ab259ed270615bc9d6a99/

Hmm, that just looks like a warning which the package errors out on as
it uses -Werror and we don't override CFLAGS like we should. How about
moving TARGET_CONFIGURE_OPTS past MAKE instead? ( $(MAKE)
$(TARGET_CONFIGURE_OPTS) -C ..)

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [pull request] Pull request for branch yem-misc-fixes
@ 2013-01-08 12:06 Yann E. MORIN
  0 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2013-01-08 12:06 UTC (permalink / raw)
  To: buildroot

Hello All!

Here are a series to fix the autobuilder issues with dvb-apps.


The following changes since commit 88ef92dfcb22f398809dc6bff9e675a6e29afa21:

  linux: fix double LINUX_APPEND_DTB (2013-01-08 10:12:02 +0100)

are available in the git repository at:
  git://gitorious.org/buildroot/buildroot.git yem-misc-fixes

Yann E. MORIN (2):
      package/dvb-apps: requires largefiles
      package/dvb-apps: requires iconv

 package/dvb-apps/Config.in   |    5 +++++
 package/dvb-apps/dvb-apps.mk |    3 ++-
 2 files changed, 7 insertions(+), 1 deletions(-)

Regards,
Yann E. MORIN

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [pull request] Pull request for branch yem-misc-fixes
@ 2013-01-07 21:52 Yann E. MORIN
  0 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2013-01-07 21:52 UTC (permalink / raw)
  To: buildroot

Hello All!

This series introduces exporting a variable, $(BR2_CONFIG_FILE), that
contains the fully-qualified path to out .config.

In some cases, scripts in support/ need to parse our .config (eg. the
dependency-checking script needs to check the conformity of rxternal
toolchain features).

Also, some Makefile fragments (eg. the crosstool-Ng backend) need to
refer to this config file for make-dependency-checking.

This was currently done in different ad-hoc manners, and is not scalable.

I'll also use it later to retrieve the password encoding scheme when
creating users from packages.


The following changes since commit 13a9fc901f637a1534baa4f08322f3b29ba66b0d:

  libnspr: only pass --{enable,disable}-thumb2 on ARM (2013-01-07 09:11:44 +0100)

are available in the git repository at:
  git://gitorious.org/buildroot/buildroot.git yem-misc-fixes

Yann E. MORIN (3):
      Makefile: export BR2_CONFIG_FILE, pointing to our .config
      support/dependencies: use globally-exported BR2_CONFIG_FILE
      toolchain/crostool-ng: use globally-exported CONFIG_FILE

 Makefile                                         |    4 ++++
 support/dependencies/dependencies.mk             |    1 -
 support/dependencies/dependencies.sh             |   10 +++++-----
 toolchain/toolchain-crosstool-ng/crosstool-ng.mk |    4 ++--
 4 files changed, 11 insertions(+), 8 deletions(-)

Regards,
Yann E. MORIN

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2013-01-08 12:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-25 18:11 [Buildroot] [pull request] Pull request for branch yem-misc-fixes Yann E. MORIN
2012-12-25 18:11 ` [Buildroot] [PATCH 1/2] package/spice: don't enable GUI if dependencies not met Yann E. MORIN
2012-12-26 22:51   ` Peter Korsgaard
2012-12-25 18:11 ` [Buildroot] [PATCH 2/2] package/keyutils: disable on avr32 Yann E. MORIN
2012-12-26 22:57   ` Peter Korsgaard
2013-01-07 21:52 [Buildroot] [pull request] Pull request for branch yem-misc-fixes Yann E. MORIN
2013-01-08 12:06 Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.