cerbero: recipes: It's files_bins, not files_bin

Andoni Morales ylatuya at gmail.com
Mon Dec 1 15:03:56 PST 2014


This fix is not completely correct as the "bins" category expect the name
of a  binary and it's then replaced with bin/$name$extesion. It's intended
to be used for binaries distributed in the bin folder where the extension
changes in Windows with an extra ".exe" but It can't be used for scripts
and it should not include the bin folder itself, just the name of the
executable without the extension.


2014-12-01 12:40 GMT+01:00 Sebastian Dröge <slomo at kemper.freedesktop.org>:

> Module: cerbero
> Branch: master
> Commit: f0d02fbed624b070f1a38abbc8f006efd4ace35b
> URL:
> http://cgit.freedesktop.org/gstreamer/cerbero/commit/?id=f0d02fbed624b070f1a38abbc8f006efd4ace35b
>
> Author: Sebastian Dröge <sebastian at centricular.com>
> Date:   Mon Dec  1 12:35:58 2014 +0100
>
> recipes: It's files_bins, not files_bin
>
> ---
>
>  recipes/build-tools/autoconf.recipe |    2 +-
>  recipes/build-tools/automake.recipe |    2 +-
>  recipes/build-tools/bison.recipe    |    2 +-
>  recipes/build-tools/cmake.recipe    |    2 +-
>  recipes/build-tools/libtool.recipe  |    2 +-
>  recipes/faad2.recipe                |    2 +-
>  recipes/insanity.recipe             |    2 +-
>  recipes/toolchain/gendef.recipe     |    2 +-
>  8 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/recipes/build-tools/autoconf.recipe
> b/recipes/build-tools/autoconf.recipe
> index c405e58..c002cb2 100644
> --- a/recipes/build-tools/autoconf.recipe
> +++ b/recipes/build-tools/autoconf.recipe
> @@ -9,7 +9,7 @@ class Recipe(recipe.Recipe):
>      url = 'http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.xz'
>      deps = ['m4']
>
> -    files_bin = [
> +    files_bins = [
>          'bin/autoconf', 'bin/autoheader',
>          'bin/autom4te', 'bin/autoreconf',
>          'bin/autoscan', 'bin/autoupdate',
> diff --git a/recipes/build-tools/automake.recipe
> b/recipes/build-tools/automake.recipe
> index 36cb5ec..d95b80e 100644
> --- a/recipes/build-tools/automake.recipe
> +++ b/recipes/build-tools/automake.recipe
> @@ -9,6 +9,6 @@ class Recipe(recipe.Recipe):
>      url = 'http://ftp.gnu.org/gnu/automake/automake-1.14.tar.xz'
>      deps = ['autoconf']
>
> -    files_bin = ['bin/automake', 'bin/aclocal',
> +    files_bins = ['bin/automake', 'bin/aclocal',
>                   'bin/automake-1.14', 'bin/aclocal-1.14']
>      files_share = ['share/aclocal-1.14', 'share/automake-1.14']
> diff --git a/recipes/build-tools/bison.recipe
> b/recipes/build-tools/bison.recipe
> index 015f88f..a8c5329 100644
> --- a/recipes/build-tools/bison.recipe
> +++ b/recipes/build-tools/bison.recipe
> @@ -8,7 +8,7 @@ class Recipe(recipe.Recipe):
>      stype = SourceType.TARBALL
>      url = 'http://ftpmirror.gnu.org/bison/bison-3.0.2.tar.gz'
>
> -    files_bin = ['bin/bison']
> +    files_bins = ['bin/bison']
>
>      def extract(self):
>          if os.path.exists(self.build_dir):
> diff --git a/recipes/build-tools/cmake.recipe
> b/recipes/build-tools/cmake.recipe
> index 96d963d..7e8979c 100644
> --- a/recipes/build-tools/cmake.recipe
> +++ b/recipes/build-tools/cmake.recipe
> @@ -15,7 +15,7 @@ class Recipe(recipe.Recipe):
>      configure_tpl = "%(config-sh)s --prefix=%(prefix)s"
>      can_use_configure_cache = False
>
> -    files_bin = ['bin/cmake', 'bin/ccmake']
> +    files_bins = ['bin/cmake', 'bin/ccmake']
>
>      def prepare(self):
>          if self.config.target_platform == Platform.WINDOWS:
> diff --git a/recipes/build-tools/libtool.recipe
> b/recipes/build-tools/libtool.recipe
> index 89be7f2..9479174 100644
> --- a/recipes/build-tools/libtool.recipe
> +++ b/recipes/build-tools/libtool.recipe
> @@ -8,7 +8,7 @@ class Recipe(recipe.Recipe):
>      stype = SourceType.TARBALL
>      url = 'http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz'
>
> -    files_bin = ['bin/libtool', 'bin/libtoolize']
> +    files_bins = ['bin/libtool', 'bin/libtoolize']
>      files_libs = ['libltdl']
>      files_share = ['share/libtool']
>      files_aclocal = [
> diff --git a/recipes/faad2.recipe b/recipes/faad2.recipe
> index afd0d5f..43378ec 100644
> --- a/recipes/faad2.recipe
> +++ b/recipes/faad2.recipe
> @@ -6,6 +6,6 @@ class Recipe(recipe.Recipe):
>      licenses = [License.GPLv2Plus]
>
>      files_libs = ['libfaad']
> -    files_bin = ['faad']
> +    files_bins = ['faad']
>      files_devel = ['include/faad.h', 'include/neaacdec.h',
> 'include/mp4ff.h',
>              'include/mp4ffint.h']
> diff --git a/recipes/insanity.recipe b/recipes/insanity.recipe
> index 7df0cc8..e550a50 100644
> --- a/recipes/insanity.recipe
> +++ b/recipes/insanity.recipe
> @@ -15,7 +15,7 @@ class Recipe(recipe.Recipe):
>          if self.config.platform in [Platform.WINDOWS, Platform.DARWIN]:
>              self.configure_options += ' --disable-gtk-doc'
>
> -    files_bin = ['bin/insanity-compare',
> +    files_bins = ['bin/insanity-compare',
>                   'bin/insanity-dbmerge',
>                   'bin/insanity-dumpresults',
>                   'bin/insanity-dumpresults-json',
> diff --git a/recipes/toolchain/gendef.recipe
> b/recipes/toolchain/gendef.recipe
> index 5ee326c..288f819 100644
> --- a/recipes/toolchain/gendef.recipe
> +++ b/recipes/toolchain/gendef.recipe
> @@ -3,7 +3,7 @@ class Recipe(recipe.Recipe):
>      version = 'v2.0.8'
>      licenses = [License.LGPL]
>      srcdir = 'mingw-w64-tools/gendef'
> -    files_bin = ['bin/gendef.exe']
> +    files_bins = ['bin/gendef.exe']
>
>
>      def prepare(self):
>
>
> _______________________________________________
> gstreamer-commits mailing list
> gstreamer-commits at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/gstreamer-commits
>
>


-- 
Andoni Morales Alastruey

LongoMatch:The Digital Coach
http://www.longomatch.ylatuya.es
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/gstreamer-devel/attachments/20141202/f342a656/attachment.html>


More information about the gstreamer-devel mailing list