Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH/next 01/31] package/kodi-visualisation-goom: new package
Date: Mon, 29 Feb 2016 23:37:41 +0100	[thread overview]
Message-ID: <20160229233741.347b5d69@free-electrons.com> (raw)
In-Reply-To: <1456006176-21308-2-git-send-email-bernd.kuhls@t-online.de>

Bernd,

I've applied your patch to the next branch, but still have a few
comments, see below.

On Sat, 20 Feb 2016 23:09:06 +0100, Bernd Kuhls wrote:

>  config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
> diff --git a/package/kodi-visualisation-goom/0001-cross-compile.patch b/package/kodi-visualisation-goom/0001-cross-compile.patch
> new file mode 100644
> index 0000000..8dd0fe9
> --- /dev/null
> +++ b/package/kodi-visualisation-goom/0001-cross-compile.patch
> @@ -0,0 +1,32 @@
> +Fix cross-compilation
> +
> +Use the cross-compiler and not the host version.
> +
> +Patch sent upstream:
> +https://github.com/notspiff/visualization.goom/pull/4

You received some comments in this pull request. Could you address
them, so that the patch can move forward and hopefully be applied at
some point?

> +diff -uNr visualization.goom-fb5933ba5b2143d055cc7749dc60a82f6002b305.org/CMakeLists.txt visualization.goom-fb5933ba5b2143d055cc7749dc60a82f6002b305/CMakeLists.txt
> +--- visualization.goom-fb5933ba5b2143d055cc7749dc60a82f6002b305.org/CMakeLists.txt	2014-10-31 11:34:21.000000000 +0100
> ++++ visualization.goom-fb5933ba5b2143d055cc7749dc60a82f6002b305/CMakeLists.txt	2015-07-19 19:49:43.340054342 +0200
> +@@ -13,6 +13,10 @@
> +                     ${KODI_INCLUDE_DIR}
> +                     ${PROJECT_SOURCE_DIR}/lib/goom2k4-0/src)
> + 
> ++get_filename_component( COMPILER_FILENAME "${CMAKE_C_COMPILER}" NAME )
> ++string( REGEX REPLACE "-[^-]+$" ""
> ++        TOOLCHAIN_NAME "${COMPILER_FILENAME}" )
> ++
> + include(ExternalProject)
> + set(update_command "")
> + if(BOOTSTRAP_IN_TREE OR NOT DEFINED BOOTSTRAP_IN_TREE)
> +@@ -20,7 +24,7 @@
> + endif()
> + externalproject_add(libgoom SOURCE_DIR ${PROJECT_SOURCE_DIR}/lib/goom2k4-0
> +                     "${update_command}"
> +-                    CONFIGURE_COMMAND ${PROJECT_SOURCE_DIR}/lib/goom2k4-0/configure --disable-shared --enable-static --with-pic --prefix=<INSTALL_DIR>
> ++                    CONFIGURE_COMMAND ${PROJECT_SOURCE_DIR}/lib/goom2k4-0/configure --disable-shared --enable-static --with-pic --prefix=<INSTALL_DIR> --host=${TOOLCHAIN_NAME}

I really hate those CMake packages that internally call an an autotools
configure script :-/

> diff --git a/package/kodi-visualisation-goom/Config.in b/package/kodi-visualisation-goom/Config.in
> new file mode 100644
> index 0000000..c1f1751
> --- /dev/null
> +++ b/package/kodi-visualisation-goom/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_KODI_VISUALISATION_GOOM
> +	bool "kodi-visualisation-goom"
> +	depends on BR2_PACKAGE_KODI_GL
> +	help
> +	  GOOM visualiser for Kodi
> +
> +	  https://github.com/notspiff/visualization.goom
> +
> +comment "goom needs an OpenGL backend"

This should have been:

comment "kodi-visualisation-goom needs an OpenGL backend"

I've fixed that when applying.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

  reply	other threads:[~2016-02-29 22:37 UTC|newest]

Thread overview: 69+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-20 22:09 [Buildroot] [PATCH/next 00/31] package/kodi: bump version to 16.0-Jarvis Bernd Kuhls
2016-02-20 22:09 ` [Buildroot] [PATCH/next 01/31] package/kodi-visualisation-goom: new package Bernd Kuhls
2016-02-29 22:37   ` Thomas Petazzoni [this message]
2016-02-20 22:09 ` [Buildroot] [PATCH/next 02/31] package/kodi-screensaver-rsxs: " Bernd Kuhls
2016-02-29 22:40   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 03/31] package/libplatform: bump version, add hash Bernd Kuhls
2016-02-29 22:41   ` Thomas Petazzoni
2016-03-01  9:40     ` Stanislav Vlasic
2016-02-20 22:09 ` [Buildroot] [PATCH/next 04/31] package/libcec: " Bernd Kuhls
2016-02-29 22:42   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 05/31] package/kodi-platform: " Bernd Kuhls
2016-02-29 22:43   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 06/31] package/kodi: bump version to 16.0-Jarvis Bernd Kuhls
2016-02-29 22:45   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 07/31] package/kodi: enable samba support with uClibc toolchain Bernd Kuhls
2016-02-29 22:45   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 08/31] package/kodi: not available using a musl-based toolchain Bernd Kuhls
2016-02-29 22:46   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 09/31] package/kodi: reorder select/depends Bernd Kuhls
2016-02-29 22:46   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 10/31] package/kodi: Remove dependency for BR2_STATIC_LIBS from sub packages Bernd Kuhls
2016-02-29 22:53   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 11/31] package/kodi: Remove dependency for BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 " Bernd Kuhls
2016-02-29 22:53   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 12/31] package/ffmpeg: Remove patch not needed anymore for Kodi 16.0-Jarvis Bernd Kuhls
2016-02-29 22:53   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 13/31] package/kodi-audio??coder-*: mass version bump, add hashes Bernd Kuhls
2016-03-02 22:57   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 14/31] package/kodi-pvr-*: " Bernd Kuhls
2016-03-02 22:57   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 15/31] package/kodi-screensaver/visualisation-*: " Bernd Kuhls
2016-03-02 22:57   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 16/31] package/kodi-visualisation-shadertoy: bump version, add hash Bernd Kuhls
2016-03-02 22:57   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 17/31] package/kodi-screensaver-crystalmorph: " Bernd Kuhls
2016-03-05 14:40   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 18/31] package/kodi-visualisation-waveforhue: " Bernd Kuhls
2016-03-05 14:40   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 19/31] package/kodi-screensaver-asterwave: new package Bernd Kuhls
2016-03-05 14:45   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 20/31] package/kodi-screensaver-cpblobs: " Bernd Kuhls
2016-03-05 14:46   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 21/31] package/kodi-screensaver-matrixtrails: " Bernd Kuhls
2016-03-05 14:47   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 22/31] package/kodi-screensaver-planestate: " Bernd Kuhls
2016-03-05 14:48   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 23/31] package/kodi-visualisation-fishbmc: " Bernd Kuhls
2016-03-05 14:50   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 24/31] package/kodi-visualisation-fountain: " Bernd Kuhls
2016-03-05 14:51   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 25/31] package/kodi-pvr-hdhomerun: " Bernd Kuhls
2016-03-05 14:53   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 26/31] package/kodi-audiodecoder-opus: " Bernd Kuhls
2016-03-05 15:00   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 27/31] package/kodi-adsp-freesurround: " Bernd Kuhls
2016-03-05 15:03   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 28/31] package/kodi-adsp-basic: " Bernd Kuhls
2016-03-05 15:05   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 29/31] package/kodi-adsp-biquad-filters: " Bernd Kuhls
2016-03-05 15:06   ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 30/31] package/vsxu: " Bernd Kuhls
2016-03-05 15:15   ` Thomas Petazzoni
2016-03-05 17:43     ` Bernd Kuhls
2016-03-05 18:26       ` Thomas Petazzoni
2016-03-05 21:36         ` Bernd Kuhls
2016-03-05 18:17     ` Bernd Kuhls
2016-03-05 18:28       ` Thomas Petazzoni
2016-02-20 22:09 ` [Buildroot] [PATCH/next 31/31] package/kodi-visualisation-vsxu: " Bernd Kuhls
2016-03-05 15:16   ` Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160229233741.347b5d69@free-electrons.com \
    --to=thomas.petazzoni@free-electrons.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox