diff options
author | Edward Hervey <bilboed@bilboed.com> | 2015-08-16 18:03:25 +0200 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2015-08-16 18:03:25 +0200 |
commit | ff87925304c88f15e814f34bea010d5ecf5d5d71 (patch) | |
tree | 4eda634dbb1b0bfdc85fdc5bd6538d2a553ef13f | |
parent | 067c7b9e4ff8b5229cad6e3f8b68c8211f58e59b (diff) |
recipes/gettext*: Bump to 0.19.5.1
-rw-r--r-- | recipes/build-tools/gettext-m4.recipe | 4 | ||||
-rw-r--r-- | recipes/build-tools/gettext-tools.recipe | 4 | ||||
-rw-r--r-- | recipes/gettext.recipe | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/build-tools/gettext-m4.recipe b/recipes/build-tools/gettext-m4.recipe index 14605cef..7cb3a08b 100644 --- a/recipes/build-tools/gettext-m4.recipe +++ b/recipes/build-tools/gettext-m4.recipe @@ -3,10 +3,10 @@ import shutil class Recipe(recipe.Recipe): name = 'gettext-m4' - version = '0.19.4' + version = '0.19.5.1' stype = SourceType.TARBALL tarball_dirname = 'gettext-%(version)s' - url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.4.tar.gz' + url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.5.1.tar.gz' # only libraries are LGPLv2+, tools are GPLv3+ and defined below licenses = [License.LGPLv2Plus] autoreconf = True diff --git a/recipes/build-tools/gettext-tools.recipe b/recipes/build-tools/gettext-tools.recipe index 77631059..bb3a84d9 100644 --- a/recipes/build-tools/gettext-tools.recipe +++ b/recipes/build-tools/gettext-tools.recipe @@ -3,12 +3,12 @@ from cerbero.utils import shell class Recipe(recipe.Recipe): name = 'gettext-tools' - version = '0.19.4' + version = '0.19.5.1' licenses = [License.GPLv3] srcdir = 'gettext-tools' stype = SourceType.TARBALL tarball_dirname = 'gettext-%(version)s' - url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.4.tar.gz' + url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.5.1.tar.gz' platform_deps = { Platform.DARWIN: ['libiconv', 'sed'], Platform.WINDOWS: ['libiconv', 'mingw-runtime'],} diff --git a/recipes/gettext.recipe b/recipes/gettext.recipe index c723c257..c31ab1b0 100644 --- a/recipes/gettext.recipe +++ b/recipes/gettext.recipe @@ -3,11 +3,11 @@ import shutil class Recipe(recipe.Recipe): name = 'gettext' - version = '0.19.4' + version = '0.19.5.1' # only libraries are LGPLv2+, tools are GPLv3+ and defined below licenses = [License.LGPLv2Plus] stype = SourceType.TARBALL - url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.4.tar.gz' + url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.5.1.tar.gz' srcdir = 'gettext-runtime' patches = ['gettext/0001-Fix-linker-error-redefinition-of-vasprintf.patch'] platform_deps = { |