* [Buildroot] [PATCH 1/1] busybox: preserve ncurses progs/tools
From: Arnout Vandecappelle @ 2017-04-24 20:03 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CANxTyt40oC9PknEk-r7uBOmgjAEGJd4tgpQ-6uYKDksoFYVBxw@mail.gmail.com>
On 24-04-17 17:36, Danomi Manchego wrote:
> Arnout,
>
> On Sun, Apr 23, 2017 at 4:55 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
>> 2. Make sure that busybox doesn't overwrite a tool that already exists. Needs to
>> be done for all the different ways that busybox can install things. Then the
>> order doesn't matter. Great solution, except for the bloatification. Also, it is
>> not great when you have FEATURE_INDIVIDUAL selected in busybox, because a
>> busybox-rebuild will not actually rebuild anything.
>
> Does https://git.buildroot.net/buildroot/commit/?id=802bff9c42376078f28aa49d3eab630120940eb0
> not take care of overwriting tools that already exist?
Hey, I missed that one! So, that means that the dependencies on busybox are in
fact redundant, right? So we could actually revert the busybox.mk part of
33c72344a? Yep, tried that, I'll send a patch.
So in fact, we can remove all dependencies on busybox? That's nice!
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply
* [Buildroot] [PATCH] busybox: no need to disable clear and reset
From: Arnout Vandecappelle @ 2017-04-24 20:13 UTC (permalink / raw)
To: buildroot
Removing clear and reset from the busybox config when the ncurses tools
are enabled is not really needed.
Since commit 802bff9c42, the busybox install will not overwrite
existing programs. Therefore, the tools will be installed correctly
regardless of the order of the build:
- if busybox is built first, the clear and reset apps are installed,
but they will be overwritten by ncurses;
- if ncurses is built first, it will install the clear and reset apps,
and busybox will no longer install them.
We prefer not to modify the busybox configuration when not strictly
necessary, because it is surprising for the user that his configuration
is not applied. Clearly, it's not ideal that busybox is configured with
redundant apps, but if the user wants to shrink it, it's possible to
provide a custom config.
This partially reverts commit 33c72344a8686a136c1da6a056ed6c0945bbf8b7.
Cc: Matthew Weber <matthew.weber@rockwellcollins.com>
Cc: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/busybox/busybox.mk | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index 689830e7f8..a536ed2953 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -148,17 +148,6 @@ define BUSYBOX_MUSL_TWEAKS
endef
endif
-ifeq ($(BR2_PACKAGE_NCURSES_TARGET_PROGS),y)
-# Ncurses package overlaps:
-# /usr/bin/clear
-# /usr/bin/reset -> /usr/bin/tset (symlink)
-#
-define BUSYBOX_DISABLE_NCURSES_PROGS
- $(call KCONFIG_DISABLE_OPT,CONFIG_CLEAR,$(BUSYBOX_BUILD_CONFIG))
- $(call KCONFIG_DISABLE_OPT,CONFIG_RESET,$(BUSYBOX_BUILD_CONFIG))
-endef
-endif
-
define BUSYBOX_INSTALL_UDHCPC_SCRIPT
if grep -q CONFIG_UDHCPC=y $(@D)/.config; then \
$(INSTALL) -m 0755 -D package/busybox/udhcpc.script \
@@ -240,7 +229,6 @@ define BUSYBOX_KCONFIG_FIXUP_CMDS
$(BUSYBOX_SET_WATCHDOG)
$(BUSYBOX_SET_SELINUX)
$(BUSYBOX_MUSL_TWEAKS)
- $(BUSYBOX_DISABLE_NCURSES_PROGS)
endef
define BUSYBOX_CONFIGURE_CMDS
--
2.11.0
^ permalink raw reply related
* [Buildroot] [PATCH] gcc: Fix build failure related to -fPIC for x86_64 -> i686 builds
From: Arnout Vandecappelle @ 2017-04-24 20:21 UTC (permalink / raw)
To: buildroot
In-Reply-To: <8b7a3f29-c200-4292-8efb-8f6f24c3e7c7@cesnet.cz>
On 24-04-17 13:19, Jan Kundr?t wrote:
> On pond?l? 24. dubna 2017 0:06:30 CEST, Arnout Vandecappelle wrote:
>> Indeed. However, I wonder, won't you have a similar problem with other host
>> packages that try to build something without -fPIC?
>
> Here's a list of host packages that I built with no additional patches:
>
[snip an impressive list of packages]
>
> When I try to rebuild some of them (`make host-$foo-rebuild`), I don't see any
> actual compilation for those that I tried (acl, kmod, swig).
Indeed, foo-rebuild will just call 'make' again, but since nothing changed it
will not actually compile anything. If you want to do a clean rebuild you have
to do 'make foo-dirclean foo'
> It seems to me that
> (except for the toolchain) the compilation is only performed when rebuilding the
> package for the target,
Nope, target behaves the same. Even if you changed the toolchain configuration,
'make foo-rebuild' will not rebuild much... foo-rebuild is meant mainly for
OVERRIDE_SRCDIR use cases.
> and in that case, the newly built toolchain which has
> been previously built by Buildroot gets invoked. I.e., the host GCC doesn't get
> triggered after a toolchain has been built, as far as I can see now.
>
> Am I missing something? Is there a host package that I should try to get
> built/rebuilt?
No, if you managed to build all these host packages with the default-PIE host
compiler, then I guess it's OK.
>
>>> BTW, I cannot find my original submission on patchwork. Was that e-mail OK? I
>>> see it in the ML archive [3].
>>
>> I believe it's because you sent it base64-encoded, patchwork only likes
>> plaintext. You didn't use git send-email, did you?
>
> The copy of the original patch submission that I have in my sent folder doesn't
> appear to be base64-encoded -- it was a result of a `git format-patch` with no
> additional transformation after all.
The mail I received through the mailing list was base64-encoded.
> However, I noticed that the outgoing e-mail was missing a Message-ID header, and
> it seems legit to reject these messages for various reasons.
That could indeed be the reason as well. Checking in patchwork sources... Yes
indeed, it checks for From, Subject and Message-Id and drops the mail if those
are not there.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply
* [Buildroot] [PATCH-2017.02.x] nodejs: bump 6.x version to 6.10.2
From: Peter Korsgaard @ 2017-04-24 20:24 UTC (permalink / raw)
To: buildroot
6.10.2 is the latest release in the LTS series, fixing a number of issues:
https://nodejs.org/en/blog/release/v6.10.2/
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/nodejs/Config.in | 2 +-
package/nodejs/nodejs.hash | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/nodejs/Config.in b/package/nodejs/Config.in
index b8c45f5dc..ad5ca050b 100644
--- a/package/nodejs/Config.in
+++ b/package/nodejs/Config.in
@@ -43,7 +43,7 @@ config BR2_PACKAGE_NODEJS_V8_ARCH_SUPPORTS
config BR2_PACKAGE_NODEJS_VERSION_STRING
string
- default "6.9.4" if BR2_PACKAGE_NODEJS_V8_ARCH_SUPPORTS
+ default "6.10.2" if BR2_PACKAGE_NODEJS_V8_ARCH_SUPPORTS
default "0.10.48"
config BR2_PACKAGE_NODEJS_NPM
diff --git a/package/nodejs/nodejs.hash b/package/nodejs/nodejs.hash
index 8c8c5a3c2..4c63f5894 100644
--- a/package/nodejs/nodejs.hash
+++ b/package/nodejs/nodejs.hash
@@ -1,5 +1,5 @@
# From upstream URL: http://nodejs.org/dist/v0.10.48/SHASUMS256.txt
sha256 365a93d9acc076a0d93f087d269f376abeebccad599a9dab72f2f6ed96c8ae6e node-v0.10.48.tar.xz
-# From upstream URL: http://nodejs.org/dist/v6.9.4/SHASUMS256.txt
-sha256 c51d7c61db40455d57428abcadc7eb0f0a08a8878cb1d8ea3c1e211c54532c35 node-v6.9.4.tar.xz
+# From upstream URL: http://nodejs.org/dist/v6.10.2/SHASUMS256.txt
+sha256 80aa11333da99813973a99646e2113c6be5b63f665c0731ed14ecb94cbe846b6 node-v6.10.2.tar.xz
--
2.11.0
^ permalink raw reply related
* [Buildroot] [git commit] perl-gd: bump to version 2.66
From: Peter Korsgaard @ 2017-04-24 20:25 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=bea0cfc5962f60ecae90f092c1f31f106d06697b
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
remove last patch
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
.../0001-gdlib-config-is-now-configurable.patch | 67 ----------------------
package/perl-gd/Config.in | 2 +-
package/perl-gd/perl-gd.hash | 4 +-
package/perl-gd/perl-gd.mk | 6 +-
4 files changed, 5 insertions(+), 74 deletions(-)
diff --git a/package/perl-gd/0001-gdlib-config-is-now-configurable.patch b/package/perl-gd/0001-gdlib-config-is-now-configurable.patch
deleted file mode 100644
index 294279a..0000000
--- a/package/perl-gd/0001-gdlib-config-is-now-configurable.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-From f417f38929fe558d388b9a9343da9b2c0e6984aa Mon Sep 17 00:00:00 2001
-From: Romain Naour <romain.naour@openwide.fr>
-Date: Sat, 20 Dec 2014 23:22:41 +0100
-Subject: [PATCH] Makefile.PL: gdlib-config is now configurable
-
-Signed-off-by: Romain Naour <romain.naour@openwide.fr>
----
- Makefile.PL | 15 +++++++++++++--
- 1 file changed, 13 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index dfe8ad7..0fa6ef3 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -21,7 +21,7 @@ END
- my (@INC, at LIBPATH, at LIBS,$LIBGD_VERSION);
- my $AUTOCONFIG = 0; # global set by try_to_autoconfigure() below
-
--my ($options,$lib_gd_path,$lib_ft_path,$lib_png_path,$lib_jpeg_path,$lib_xpm_path,$lib_zlib_path,$force);
-+my ($options,$lib_gd_path,$lib_ft_path,$lib_png_path,$lib_jpeg_path,$lib_xpm_path,$lib_zlib_path,$force,$gdlib_config_path);
-
- use Getopt::Long;
- my $result = GetOptions("ignore_missing_gd" => \$force,
-@@ -32,6 +32,7 @@ my $result = GetOptions("ignore_missing_gd" => \$force,
- "lib_jpeg_path=s" => \$lib_jpeg_path,
- "lib_xpm_path=s" => \$lib_xpm_path,
- "lib_zlib_path=s" => \$lib_zlib_path,
-+ "gdlib_config_path=s" => \$gdlib_config_path,
- );
-
- unless (try_to_autoconfigure(\$options,\$lib_gd_path,\@INC,\@LIBPATH,\@LIBS) || $force) {
-@@ -75,6 +76,7 @@ Configure GD module.
- -lib_xpm_path path path to libxpm
- -lib_zlib_path path path to libpng
- -ignore_missing_gd Ignore missing or old libgd installations and try to compile anyway
-+ -gdlib_config_path path path to gdlib-config
-
- If no options are passed on the command line. The program will
- attempt to autoconfigure itself with the gdlib-config program (present
-@@ -121,6 +123,15 @@ if( defined($lib_zlib_path) )
- @INC = ("-I$lib_zlib_path/include", @INC);
- @LIBPATH = ("-L$lib_zlib_path/lib", @LIBPATH);
- }
-+if( defined($gdlib_config_path) )
-+{
-+ print "gdlib-config used: $gdlib_config_path\n";
-+}
-+else
-+{
-+ $gdlib_config_path = "gdlib-config";
-+ print "$gdlib_config_path used from the PATH\n";
-+}
- #############################################################################################
-
- if ($^O eq 'VMS'){
-@@ -289,7 +300,7 @@ sub try_to_autoconfigure {
- my ($prefix) = $$lib_gd_path ? ($$lib_gd_path =~ m|(^.*)/lib|) : "";
- my $bindir = $prefix ? "$prefix/bin/" : "";
- my $config = `${bindir}gdlib-config --all` if -e "${bindir}gdlib-config";
-- $config = `gdlib-config --all` if !$config;
-+ $config = `$gdlib_config_path --all` if !$config;
- unless ($config) {
- my %config;
- require ExtUtils::PkgConfig;
---
-1.9.3
-
diff --git a/package/perl-gd/Config.in b/package/perl-gd/Config.in
index 61f7e5d..2b7a265 100644
--- a/package/perl-gd/Config.in
+++ b/package/perl-gd/Config.in
@@ -6,7 +6,7 @@ config BR2_PACKAGE_PERL_GD
select BR2_PACKAGE_FREETYPE
select BR2_PACKAGE_GD
help
- Interface to Gd Graphics Library
+ Perl interface to the gd2 graphics library
https://metacpan.org/release/GD
diff --git a/package/perl-gd/perl-gd.hash b/package/perl-gd/perl-gd.hash
index 07f2471..3fc0628 100644
--- a/package/perl-gd/perl-gd.hash
+++ b/package/perl-gd/perl-gd.hash
@@ -1,3 +1,3 @@
# retrieved by scancpan from http://cpan.metacpan.org/
-md5 b77596aedf8ba92106ada82c7a58dd29 GD-2.59.tar.gz
-sha256 b5f22854be579cd9c1696f4a5175d57f5623d3bf2e75173ffa8038a1a28afad6 GD-2.59.tar.gz
+md5 5c89ea8861810ca41bc4aca98e3fdfda GD-2.66.tar.gz
+sha256 ea28343301b82ea862bc58c0c2d1953a074e23cf8d1d09df94c05c52f1c98281 GD-2.66.tar.gz
diff --git a/package/perl-gd/perl-gd.mk b/package/perl-gd/perl-gd.mk
index 28a1b87..ae3dfbc 100644
--- a/package/perl-gd/perl-gd.mk
+++ b/package/perl-gd/perl-gd.mk
@@ -4,7 +4,7 @@
#
################################################################################
-PERL_GD_VERSION = 2.59
+PERL_GD_VERSION = 2.66
PERL_GD_SOURCE = GD-$(PERL_GD_VERSION).tar.gz
PERL_GD_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RU/RURBAN
PERL_GD_DEPENDENCIES = zlib libpng freetype gd
@@ -12,12 +12,10 @@ PERL_GD_LICENSE = Artistic or GPL-1.0+
PERL_GD_LICENSE_FILES = LICENSE
PERL_GD_CONF_OPTS = \
- -options=FT,PNG \
-lib_gd_path=$(STAGING_DIR)/usr \
-lib_ft_path=$(STAGING_DIR)/usr \
-lib_png_path=$(STAGING_DIR)/usr \
-lib_zlib_path=$(STAGING_DIR)/usr \
- -ignore_missing_gd \
- -gdlib=$(STAGING_DIR)/usr/bin/gdlib-config
+ -gdlib_config_path=$(STAGING_DIR)/usr/bin
$(eval $(perl-package))
^ permalink raw reply related
* [Buildroot] [PATCH] perl-gd: bump to version 2.66
From: Peter Korsgaard @ 2017-04-24 20:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424071543.6757-1-francois.perrad@gadz.org>
>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:
> remove last patch
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] x265: bump version to 2.4
From: Peter Korsgaard @ 2017-04-24 20:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424094521.63027-1-Vincent.Riera@imgtec.com>
>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] x265: bump version to 2.4
From: Peter Korsgaard @ 2017-04-24 20:26 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=acaa2e6f930a445091c3ab0ff75f2ae26e0d2a7d
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/x265/x265.hash | 2 +-
package/x265/x265.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/x265/x265.hash b/package/x265/x265.hash
index d53295c..1ad8170 100644
--- a/package/x265/x265.hash
+++ b/package/x265/x265.hash
@@ -1,2 +1,2 @@
# Locally generated
-sha256 47520ac3424790168ea5c2db4a3cf12ca4d55a1790720007916652f07af3e41f x265_2.3.tar.gz
+sha256 9c2aa718d78f6fecdd783f08ab83b98d3169e5f670404da4c16439306907d729 x265_2.4.tar.gz
diff --git a/package/x265/x265.mk b/package/x265/x265.mk
index 2ea404b..2907ba3 100644
--- a/package/x265/x265.mk
+++ b/package/x265/x265.mk
@@ -4,7 +4,7 @@
#
################################################################################
-X265_VERSION = 2.3
+X265_VERSION = 2.4
X265_SOURCE = x265_$(X265_VERSION).tar.gz
X265_SITE = https://bitbucket.org/multicoreware/x265/downloads
X265_LICENSE = GPL-2.0+
^ permalink raw reply related
* [Buildroot] [PATCH] python-dataproperty: bump version to 0.18.1
From: Peter Korsgaard @ 2017-04-24 20:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424094316.60728-1-Vincent.Riera@imgtec.com>
>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] python-dataproperty: bump version to 0.18.1
From: Peter Korsgaard @ 2017-04-24 20:26 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=3ac9e1e71b3a4c213567fc996951a83def004c42
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/python-dataproperty/python-dataproperty.hash | 4 ++--
package/python-dataproperty/python-dataproperty.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/python-dataproperty/python-dataproperty.hash b/package/python-dataproperty/python-dataproperty.hash
index 21b70b1..1ab0a40 100644
--- a/package/python-dataproperty/python-dataproperty.hash
+++ b/package/python-dataproperty/python-dataproperty.hash
@@ -1,3 +1,3 @@
# md5 from https://pypi.python.org/pypi/dataproperty/json, sha256 locally computed
-md5 211c94a87f11e7e78fae61b20ee654a2 DataProperty-0.17.0.tar.gz
-sha256 6c7daed534e418badf5f0c8b601a353fed2fda40ec9b4e8052dfa8b40a5626a0 DataProperty-0.17.0.tar.gz
+md5 70199d3e6e021810d0d3b4a42c37916f DataProperty-0.18.1.tar.gz
+sha256 950131bd9fb874be606835e5f4a84d99f505d919aed94145932ec010190c7c66 DataProperty-0.18.1.tar.gz
diff --git a/package/python-dataproperty/python-dataproperty.mk b/package/python-dataproperty/python-dataproperty.mk
index b649d43..7e34425 100644
--- a/package/python-dataproperty/python-dataproperty.mk
+++ b/package/python-dataproperty/python-dataproperty.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_DATAPROPERTY_VERSION = 0.17.0
+PYTHON_DATAPROPERTY_VERSION = 0.18.1
PYTHON_DATAPROPERTY_SOURCE = DataProperty-$(PYTHON_DATAPROPERTY_VERSION).tar.gz
-PYTHON_DATAPROPERTY_SITE = https://pypi.python.org/packages/91/35/c47884269202d25f28007a303c2510141c15bd111225fd203fdf9474a0c7
+PYTHON_DATAPROPERTY_SITE = https://pypi.python.org/packages/42/b6/591366869e9fc7b19420ca4c177727f25dcccc07a46cecbda8d6abffa866
PYTHON_DATAPROPERTY_SETUP_TYPE = setuptools
PYTHON_DATAPROPERTY_LICENSE = MIT
PYTHON_DATAPROPERTY_LICENSE_FILES = LICENSE
^ permalink raw reply related
* [Buildroot] [PATCH] harfbuzz: bump version to 1.4.6
From: Peter Korsgaard @ 2017-04-24 20:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424092502.1480-1-Vincent.Riera@imgtec.com>
>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] harfbuzz: bump version to 1.4.6
From: Peter Korsgaard @ 2017-04-24 20:27 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=b53e4f0bb8c0cb55e277d66ad4fe5517512dcef5
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/harfbuzz/harfbuzz.hash | 4 ++--
package/harfbuzz/harfbuzz.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/harfbuzz/harfbuzz.hash b/package/harfbuzz/harfbuzz.hash
index f4fb849..f487191 100644
--- a/package/harfbuzz/harfbuzz.hash
+++ b/package/harfbuzz/harfbuzz.hash
@@ -1,2 +1,2 @@
-# From https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.4.5.tar.bz2.sha256
-sha256 d0e05438165884f21658154c709075feaf98c93ee5c694b951533ac425a9a711 harfbuzz-1.4.5.tar.bz2
+# From https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.4.6.tar.bz2.sha256
+sha256 21a78b81cd20cbffdb04b59ac7edfb410e42141869f637ae1d6778e74928d293 harfbuzz-1.4.6.tar.bz2
diff --git a/package/harfbuzz/harfbuzz.mk b/package/harfbuzz/harfbuzz.mk
index 39e2cfe..f9814ca 100644
--- a/package/harfbuzz/harfbuzz.mk
+++ b/package/harfbuzz/harfbuzz.mk
@@ -4,7 +4,7 @@
#
################################################################################
-HARFBUZZ_VERSION = 1.4.5
+HARFBUZZ_VERSION = 1.4.6
HARFBUZZ_SITE = https://www.freedesktop.org/software/harfbuzz/release
HARFBUZZ_SOURCE = harfbuzz-$(HARFBUZZ_VERSION).tar.bz2
HARFBUZZ_LICENSE = MIT, ISC (ucdn library)
^ permalink raw reply related
* [Buildroot] [PATCH] poppler: bump version to 0.54.0
From: Peter Korsgaard @ 2017-04-24 20:27 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424093311.12097-1-Vincent.Riera@imgtec.com>
>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] poppler: bump version to 0.54.0
From: Peter Korsgaard @ 2017-04-24 20:27 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=bc41dbe658267a70dc2661f51c6d1c9058817b64
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/poppler/poppler.hash | 2 +-
package/poppler/poppler.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/poppler/poppler.hash b/package/poppler/poppler.hash
index 83856a3..4ef5799 100644
--- a/package/poppler/poppler.hash
+++ b/package/poppler/poppler.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 592bf72960c6b5948b67657594b05e72d9a278daf7613c9f3cdff9a5b73096a8 poppler-0.53.0.tar.xz
+sha256 10cca9a67cc2e6f4f9024192b1067c444218bf94430891f43dc819d78536ca31 poppler-0.54.0.tar.xz
diff --git a/package/poppler/poppler.mk b/package/poppler/poppler.mk
index aea90b0..056193c 100644
--- a/package/poppler/poppler.mk
+++ b/package/poppler/poppler.mk
@@ -4,7 +4,7 @@
#
################################################################################
-POPPLER_VERSION = 0.53.0
+POPPLER_VERSION = 0.54.0
POPPLER_SOURCE = poppler-$(POPPLER_VERSION).tar.xz
POPPLER_SITE = http://poppler.freedesktop.org
POPPLER_DEPENDENCIES = fontconfig host-pkgconf
^ permalink raw reply related
* [Buildroot] [git commit] mpv: bump version to 0.25.0
From: Peter Korsgaard @ 2017-04-24 20:27 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=c10724093ae3058d0fb33699c4622a5160e15721
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Remove 0003-fix-build-with-have-gl.patch which is already included in
this release.
Remove --{enable|disable}-standard-gl configure option because it
doesn't exist.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/mpv/0003-fix-build-with-have-gl.patch | 39 ---------------------------
package/mpv/mpv.hash | 2 +-
package/mpv/mpv.mk | 6 ++---
3 files changed, 4 insertions(+), 43 deletions(-)
diff --git a/package/mpv/0003-fix-build-with-have-gl.patch b/package/mpv/0003-fix-build-with-have-gl.patch
deleted file mode 100644
index 0934bc8..0000000
--- a/package/mpv/0003-fix-build-with-have-gl.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 212f6c8206bd4dcc7d8970c5f1632823ae4e783a Mon Sep 17 00:00:00 2001
-From: Michael Forney <mforney@mforney.org>
-Date: Sun, 12 Feb 2017 23:01:21 -0800
-Subject: [PATCH] Fix build with HAVE_GL==0
-
-video/out/opengl/hwdec.h includes video/out/opengl/common.h, which tries
-to include opengl headers.
-
-Downloaded from upstream commit:
-https://github.com/mpv-player/mpv/commit/212f6c8206bd4dcc7d8970c5f1632823ae4e783a
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
----
- options/options.c | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/options/options.c b/options/options.c
-index b711156..0bb36ad 100644
---- a/options/options.c
-+++ b/options/options.c
-@@ -40,7 +40,6 @@
- #include "stream/stream.h"
- #include "video/csputils.h"
- #include "video/hwdec.h"
--#include "video/out/opengl/hwdec.h"
- #include "video/image_writer.h"
- #include "sub/osd.h"
- #include "audio/filter/af.h"
-@@ -53,6 +52,10 @@
- #include "video/out/drm_common.h"
- #endif
-
-+#if HAVE_GL
-+#include "video/out/opengl/hwdec.h"
-+#endif
-+
- extern const char mp_help_text[];
-
- static void print_version(struct mp_log *log)
diff --git a/package/mpv/mpv.hash b/package/mpv/mpv.hash
index e0644a3..10a91cf 100644
--- a/package/mpv/mpv.hash
+++ b/package/mpv/mpv.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 a41854fa0ac35b9c309ad692aaee67c8d4495c3546f11cb4cdd0a124195d3f15 v0.24.0.tar.gz
+sha256 07423ffad6921ec4da32f703cd7fbfb27012301dcb736ac8542ac8e6083b0bce v0.25.0.tar.gz
diff --git a/package/mpv/mpv.mk b/package/mpv/mpv.mk
index 6191821..24ccf8c 100644
--- a/package/mpv/mpv.mk
+++ b/package/mpv/mpv.mk
@@ -4,7 +4,7 @@
#
################################################################################
-MPV_VERSION = 0.24.0
+MPV_VERSION = 0.25.0
MPV_SITE = https://github.com/mpv-player/mpv/archive
MPV_SOURCE = v$(MPV_VERSION).tar.gz
MPV_DEPENDENCIES = \
@@ -134,10 +134,10 @@ endif
# OpenGL support
ifeq ($(BR2_PACKAGE_HAS_LIBGL),y)
-MPV_CONF_OPTS += --enable-gl --enable-standard-gl
+MPV_CONF_OPTS += --enable-gl
MPV_DEPENDENCIES += libgl
else
-MPV_CONF_OPTS += --disable-gl --disable-standard-gl
+MPV_CONF_OPTS += --disable-gl
endif
# pulseaudio support
^ permalink raw reply related
* [Buildroot] [PATCH] mpv: bump version to 0.25.0
From: Peter Korsgaard @ 2017-04-24 20:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424094218.60220-1-Vincent.Riera@imgtec.com>
>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:
> Remove 0003-fix-build-with-have-gl.patch which is already included in
> this release.
> Remove --{enable|disable}-standard-gl configure option because it
> doesn't exist.
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] mongoose: bump to version 6.7
From: Peter Korsgaard @ 2017-04-24 20:28 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=965c5ca57d3a3be9461da8042d91aeaaa477ae21
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Davide Viti <zinosat@tiscali.it>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/mongoose/mongoose.hash | 2 +-
package/mongoose/mongoose.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/mongoose/mongoose.hash b/package/mongoose/mongoose.hash
index c131e48..d5252eb 100644
--- a/package/mongoose/mongoose.hash
+++ b/package/mongoose/mongoose.hash
@@ -1,2 +1,2 @@
# Locally computed:
-sha256 94b934da083afe8abb1c0af5abb8f25294050011793f048166b12f000f9433a0 mongoose-6.2.tar.gz
+sha256 ccc971298db70963d3f13766c3246a3c36ae7e388acfab7ba2180149d9c8c64f mongoose-6.7.tar.gz
diff --git a/package/mongoose/mongoose.mk b/package/mongoose/mongoose.mk
index ad8b08c..36fd8f8 100644
--- a/package/mongoose/mongoose.mk
+++ b/package/mongoose/mongoose.mk
@@ -4,7 +4,7 @@
#
################################################################################
-MONGOOSE_VERSION = 6.2
+MONGOOSE_VERSION = 6.7
MONGOOSE_SITE = $(call github,cesanta,mongoose,$(MONGOOSE_VERSION))
MONGOOSE_LICENSE = GPL-2.0
MONGOOSE_LICENSE_FILES = LICENSE
^ permalink raw reply related
* [Buildroot] [PATCH 1/1] mongoose: bump to version 6.7
From: Peter Korsgaard @ 2017-04-24 20:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170423203310.30473-1-zinosat@tiscali.it>
>>>>> "Davide" == Davide Viti <zinosat@tiscali.it> writes:
> Signed-off-by: Davide Viti <zinosat@tiscali.it>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] binutils: arc: fix 0301-PATCH-check-ldrunpath-length.patch after version bump
From: Peter Korsgaard @ 2017-04-24 20:32 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=fecfb0bacb4d783eaa865f72be40c411a77484f7
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
This commit fixes another brown-paper-bag issue that I've introduced by
my following patch:
toolchain: Bump ARC tools to arc-2017.03-rc1
(5f8ef7e25c5cc5c2e4ae4c8b6e8caa029ddf9a94)
arc-2017.03-rc1 differs a bit from 2.28. And so corresponding
of-the-tree patch should be updated appropriately.
Fixes target binutils build for arc:
http://autobuild.buildroot.net/results/f67/f67c905979870936d8050a505b61186be6dad85d//
[Peter: tweak commit message]
Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
.../binutils/arc-2017.03-rc1/0301-PATCH-check-ldrunpath-length.patch | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/binutils/arc-2017.03-rc1/0301-PATCH-check-ldrunpath-length.patch b/package/binutils/arc-2017.03-rc1/0301-PATCH-check-ldrunpath-length.patch
index f54b1b3..9bb2341 100644
--- a/package/binutils/arc-2017.03-rc1/0301-PATCH-check-ldrunpath-length.patch
+++ b/package/binutils/arc-2017.03-rc1/0301-PATCH-check-ldrunpath-length.patch
@@ -17,8 +17,8 @@ index d4837d0..937da8a 100644
&& command_line.rpath == NULL)
{
path = (const char *) getenv ("LD_RUN_PATH");
-+ if ((lib_path) && (strlen (lib_path) == 0))
-+ lib_path = NULL;
++ if ((path) && (strlen (path) == 0))
++ path = NULL;
if (path
&& gld${EMULATION_NAME}_search_needed (path, &n, force))
break;
^ permalink raw reply related
* [Buildroot] [PATCH] binutils: arc: fix custom patch
From: Peter Korsgaard @ 2017-04-24 20:33 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1493040114-32538-1-git-send-email-vzakhar@synopsys.com>
>>>>> "Vlad" == Vlad Zakharov <Vladislav.Zakharov@synopsys.com> writes:
> This commit fixes another brown-paper-bag issue that I've introduced by
> my following patch:
> toolchain: Bump ARC tools to arc-2017.03-rc1
> (5f8ef7e25c5cc5c2e4ae4c8b6e8caa029ddf9a94)
> arc-2017.03-rc1 differs a bit from 2.28. And so corresponding
> of-the-tree patch should be updated appropriately.
> Fixes target binutils build for arc:
> http://autobuild.buildroot.net/results/f67/f67c905979870936d8050a505b61186be6dad85d//
> Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com>
Committed after tweaking the commit message, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 1/1] busybox: preserve ncurses progs/tools
From: Arnout Vandecappelle @ 2017-04-24 20:59 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87o9vlvc3k.fsf@dell.be.48ers.dk>
On 24-04-17 21:29, Peter Korsgaard wrote:
>>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
>
> Hi,
>
> > Of course, we can also choose to apply solution 3 only to the situation where 1
> > doesn't work because of circular dependencies.
>
> > I can't say which solution is the best. I therefore tend to say: stick to what
> > we have, and find a workaround if needed. In other words, apply this patch, but
> > don't do it for other packages until required.
>
> I'm in the same boat - So agreed!
Well, as Danomi indicated, the current situation is in fact choice 2 (busybox
doesn't overwrite the apps so the order doesn't matter) and not choice 1. So in
fact we can simply remove all the dependencies on busybox.
Anyone feel up to it?
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply
* [Buildroot] [PATCH-2017.02.x] xen: security bump to version 4.7.2
From: Peter Korsgaard @ 2017-04-24 21:29 UTC (permalink / raw)
To: buildroot
The 4.7.2 release brings a number of bugfixes and improvements:
https://www.xenproject.org/downloads/xen-archives/xen-project-47-series/xen-472.html
Including fixes for the following security issues:
XSA-191: x86 null segments not always treated as unusable (CVE-2016-9386)
XSA-192: x86 task switch to VM86 mode mis-handled (CVE-2016-9382)
XSA-193: x86 segment base write emulation lacking canonical address checks
(CVE-2016-9385)
XSA-194: guest 32-bit ELF symbol table load leaking host data (CVE-2016-9384)
XSA-195: x86 64-bit bit test instruction emulation broken (CVE-2016-9383)
XSA-196: x86 software interrupt injection mis-handled
(CVE-2016-9377 CVE-2016-9378)
XSA-197: qemu incautious about shared ring processing (CVE-2016-9381)
XSA-198: delimiter injection vulnerabilities in pygrub
(CVE-2016-9379 CVE-2016-9380)
XSA-199: qemu ioport array overflow (CVE-2016-9637)
XSA-200: x86 CMPXCHG8B emulation fails to ignore operand size override
Files (CVE-2016-9932)
XSA-201: ARM guests may induce host asynchronous abort
(CVE-2016-9815 CVE-2016-9816 CVE-2016-9817 CVE-2016-9818)
XSA-202: x86 PV guests may be able to mask interrupts (CVE-2016-10024)
XSA-203: x86: missing NULL pointer check in VMFUNC emulation (CVE-2016-10025)
XSA-204: x86: Mishandling of SYSCALL singlestep during emulation
(CVE-2016-10013)
XSA-207: memory leak when destroying guest without PT devices
XSA-208: oob access in cirrus bitblt copy (CVE-2017-2615)
XSA-209: cirrus_bitblt_cputovideo does not check if memory region is safe
(CVE-2017-2620)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/xen/xen.hash | 2 +-
package/xen/xen.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/xen/xen.hash b/package/xen/xen.hash
index c3df2431e..2143f4661 100644
--- a/package/xen/xen.hash
+++ b/package/xen/xen.hash
@@ -1,2 +1,2 @@
# Locally computed
-sha256 e87f4b0575e78657ee23d31470a15ecf1ce8c3a92a771cda46bbcd4d0d671ffe xen-4.7.1.tar.gz
+sha256 61494a56d9251e2108080f95b0dc8e3d175f1ba4da34603fc07b91cfebf358d5 xen-4.7.2.tar.gz
diff --git a/package/xen/xen.mk b/package/xen/xen.mk
index 7d32e5270..9ff1b4022 100644
--- a/package/xen/xen.mk
+++ b/package/xen/xen.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XEN_VERSION = 4.7.1
+XEN_VERSION = 4.7.2
XEN_SITE = http://bits.xensource.com/oss-xen/release/$(XEN_VERSION)
XEN_LICENSE = GPLv2
XEN_LICENSE_FILES = COPYING
--
2.11.0
^ permalink raw reply related
* [Buildroot] [PATCH v6 00/31] [PATCH v6 00/31] kodi: bump to version 17.1-Krypton
From: Bernd Kuhls @ 2017-04-24 21:31 UTC (permalink / raw)
To: buildroot
Hi,
this series bumps Kodi to 17.1-Krypton, released 2017/03/21:
https://kodi.tv/kodi-v17-1-krypton/
Patches 0001-0021 must be committed together to avoid having
incompatible package versions in buildroot.
Please note the Kodi needs patched versions of libdvdcss, libdvdread
and libdvdnav. Instead of including the Kodi-specific patches in the
respective buildroot packages we let Kodi build the libraries during
make and provide the pre-downloaded and patched tarballs for it.
Debian chose a similar approach to avoid patching the system versions
of libdvd*:
https://sources.debian.net/src/kodi/2:17.1%2Bdfsg1-2/debian/README.source/#L11
v6 of this series addresses the in-depth review from Yann, many thanks!
Regards, Bernd
v6: rebased
removed patch to disable online check (Yann)
re-ordered addon version bump patches (Yann)
kodi
- removed gmp, leftover code before
CMake-Remove-dependency-on-gmp-and-libintl-from-Find.patch
was added (Yann)
- event clients: added URL to Config.in help text (Yann)
- added dependency to BR2_TOOLCHAIN_HAS_SYNC_4 for pulseaudio,
added comment about libglib2 dependencies (Yann)
- added libxml2 as additional dependency for optional xslt support
(Yann)
- squashed removal of internal rtmp support (Yann)
- added commit note that libva support depends on x11 (Yann)
- added explanation why gcc >= 4.8 is now required (Yann)
- depends on locale support (needs libiconv_open), removed
0002-cmake-add-FindIconv.cmake.patch (Yann)
- removed dependency to host-gettext
kodi-jsonschemabuilder
- updated (Yann)
- share source tarball with kodi package
kodi-texturepacker
- updated (Yann)
- share source tarball with kodi package
kodi-platform: bump (Yann)
libplatform: updated according to Yann's comments
kodi-inputstream-rtmp: add select for the new package in
Config.in.legacy (Yann)
kodi-pvr-mediaportal-tvserver: removed "needs locale support" patch,
kodi itself now depends on locale
kodi-skin-confluence: removed patch for now. Fixing it will require
some time and debugging (it works for me, though, and I would like
to see the working part of the series in buildroot 2017.05, if
possible.
libsquish
- removed patch to remove libsquish (Yann)
- removed Kodi-specific patch
- bumped to 1.15 (Yann)
To-Do
- kodi-screensaver-rsxs: take review from Yann into account
- explain why libva and libvdpau depend on OpenGL
- optimize KODI_CONF_OPTS for -DWITH_ARCH & -DWITH_CPU (includes
much testing), this patch can be committed later. Therefore this
patch is the last one in the series.
v5: removed patches for libdvd*
add dependency to libglib2 for pulseaudio
fix c/cxxflags for gles
BR2_PACKAGE_KODI_LIBVA depends on xorg
squashed patches to enhance supported archs
bumped kodi-pvr-dvblink
enable optional support for OpenGL on arm
v4: package/kodi: switched up CMake, bumped to 17.1
package/libdvd*: static build is not needed anymore
various addon bumps and new optional packages for Kodi
v3: fixed legal-info for libplatform & kodi-skin-confluence
v2: added commit log to "package/kodi: add Kconfig option to make
TexturePacker optional" (Thomas)
Bernd Kuhls (31):
package/kodi-visualisation-fountain: remove package
package/libplatform: bump version
package/kodi-platform: bump version
package/libcec: bump version to 4.0.2
package/xmlstarlet: add host variant
package/kodi-jsonschemabuilder: new host package
package/kodi-texturepacker: new host package
package/kodi: bump to version 17.1-Krypton
package/kodi-pvr-*: mass version bump
package/kodi-pvr-mythtv: bump version to 4.15.0
package/kodi-pvr-nextpvr: bump version to 2.4.11
package/kodi-adsp-basic: bump version
package/kodi-adsp-freesurround: bump version
package/kodi-audioencoder-*: mass version bump
package/kodi-audiodecoder-*: mass version bump
package/kodi-audiodecoder-timidity: bump version
package/kodi-screensaver-*: mass version bump
package/kodi-screensaver-rsxs: bump version
package/kodi-visualisation-*: mass version bump
package/kodi-visualisation-waveforhue: bump version
package/kodi-visualisation-shadertoy: bump version
package/kodi: add optional support for bluez5
package/kodi: libxslt is an optional package
package/kodi: add optional support for pulseaudio
package/kodi: add optional support for event clients
package/kodi: add optional support for lcms2
package/kodi-inputstream-rtmp: new package
package/kodi-inputstream-adaptive: new package
package/libsquish: Remove Kodi-specific patch
package/libsquish: bump version to 1.15
package/kodi: Add support for more archs
Config.in.legacy | 14 +
package/kodi-adsp-basic/kodi-adsp-basic.hash | 2 +-
package/kodi-adsp-basic/kodi-adsp-basic.mk | 4 +-
.../kodi-adsp-freesurround.hash | 2 +-
.../kodi-adsp-freesurround.mk | 4 +-
.../kodi-audiodecoder-modplug.hash | 2 +-
.../kodi-audiodecoder-modplug.mk | 2 +-
.../kodi-audiodecoder-nosefart.hash | 2 +-
.../kodi-audiodecoder-nosefart.mk | 2 +-
.../kodi-audiodecoder-opus.hash | 2 +-
.../kodi-audiodecoder-opus.mk | 2 +-
.../kodi-audiodecoder-sidplay.hash | 2 +-
.../kodi-audiodecoder-sidplay.mk | 2 +-
.../kodi-audiodecoder-snesapu.hash | 2 +-
.../kodi-audiodecoder-snesapu.mk | 2 +-
.../kodi-audiodecoder-stsound.hash | 2 +-
.../kodi-audiodecoder-stsound.mk | 2 +-
package/kodi-audiodecoder-timidity/Config.in | 1 -
.../kodi-audiodecoder-timidity.hash | 2 +-
.../kodi-audiodecoder-timidity.mk | 4 +-
.../kodi-audiodecoder-vgmstream.hash | 2 +-
.../kodi-audiodecoder-vgmstream.mk | 2 +-
.../kodi-audioencoder-flac.hash | 2 +-
.../kodi-audioencoder-flac.mk | 2 +-
.../kodi-audioencoder-lame.hash | 2 +-
.../kodi-audioencoder-lame.mk | 2 +-
.../kodi-audioencoder-vorbis.hash | 2 +-
.../kodi-audioencoder-vorbis.mk | 2 +-
.../kodi-audioencoder-wav.hash | 2 +-
.../kodi-audioencoder-wav/kodi-audioencoder-wav.mk | 2 +-
package/kodi-inputstream-adaptive/Config.in | 8 +
.../kodi-inputstream-adaptive.hash | 2 +
.../kodi-inputstream-adaptive.mk | 13 +
package/kodi-inputstream-rtmp/Config.in | 7 +
.../kodi-inputstream-rtmp.hash | 2 +
.../kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk | 13 +
.../kodi-jsonschemabuilder.hash | 1 +
.../kodi-jsonschemabuilder.mk | 25 +
package/kodi-platform/kodi-platform.hash | 2 +-
package/kodi-platform/kodi-platform.mk | 2 +-
package/kodi-pvr-argustv/kodi-pvr-argustv.hash | 2 +-
package/kodi-pvr-argustv/kodi-pvr-argustv.mk | 4 +-
package/kodi-pvr-dvblink/kodi-pvr-dvblink.hash | 2 +-
package/kodi-pvr-dvblink/kodi-pvr-dvblink.mk | 4 +-
package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.hash | 2 +-
package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.mk | 4 +-
package/kodi-pvr-filmon/kodi-pvr-filmon.hash | 2 +-
package/kodi-pvr-filmon/kodi-pvr-filmon.mk | 4 +-
package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.hash | 2 +-
package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.mk | 4 +-
package/kodi-pvr-hts/kodi-pvr-hts.hash | 2 +-
package/kodi-pvr-hts/kodi-pvr-hts.mk | 4 +-
.../kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.hash | 2 +-
package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.mk | 4 +-
.../kodi-pvr-mediaportal-tvserver.hash | 2 +-
.../kodi-pvr-mediaportal-tvserver.mk | 4 +-
package/kodi-pvr-mythtv/kodi-pvr-mythtv.hash | 2 +-
package/kodi-pvr-mythtv/kodi-pvr-mythtv.mk | 6 +-
...epresentation-of-char_class_e-in-struct-t.patch | 48 -
package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.hash | 2 +-
package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.mk | 4 +-
package/kodi-pvr-njoy/kodi-pvr-njoy.hash | 2 +-
package/kodi-pvr-njoy/kodi-pvr-njoy.mk | 4 +-
package/kodi-pvr-pctv/kodi-pvr-pctv.hash | 2 +-
package/kodi-pvr-pctv/kodi-pvr-pctv.mk | 4 +-
package/kodi-pvr-stalker/kodi-pvr-stalker.hash | 2 +-
package/kodi-pvr-stalker/kodi-pvr-stalker.mk | 4 +-
package/kodi-pvr-vbox/kodi-pvr-vbox.hash | 2 +-
package/kodi-pvr-vbox/kodi-pvr-vbox.mk | 4 +-
package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.hash | 2 +-
package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.mk | 4 +-
package/kodi-pvr-vuplus/kodi-pvr-vuplus.hash | 2 +-
package/kodi-pvr-vuplus/kodi-pvr-vuplus.mk | 4 +-
package/kodi-pvr-wmc/kodi-pvr-wmc.hash | 2 +-
package/kodi-pvr-wmc/kodi-pvr-wmc.mk | 4 +-
.../kodi-screensaver-asteroids.hash | 2 +-
.../kodi-screensaver-asteroids.mk | 2 +-
.../kodi-screensaver-asterwave.hash | 2 +-
.../kodi-screensaver-asterwave.mk | 2 +-
.../kodi-screensaver-biogenesis.hash | 2 +-
.../kodi-screensaver-biogenesis.mk | 2 +-
.../kodi-screensaver-cpblobs.hash | 2 +-
.../kodi-screensaver-cpblobs.mk | 2 +-
.../kodi-screensaver-crystalmorph.hash | 2 +-
.../kodi-screensaver-crystalmorph.mk | 2 +-
.../kodi-screensaver-greynetic.hash | 2 +-
.../kodi-screensaver-greynetic.mk | 2 +-
.../kodi-screensaver-matrixtrails.hash | 2 +-
.../kodi-screensaver-matrixtrails.mk | 2 +-
.../kodi-screensaver-pingpong.hash | 2 +-
.../kodi-screensaver-pingpong.mk | 2 +-
.../kodi-screensaver-planestate.hash | 2 +-
.../kodi-screensaver-planestate.mk | 2 +-
.../kodi-screensaver-pyro.hash | 2 +-
.../kodi-screensaver-pyro/kodi-screensaver-pyro.mk | 2 +-
.../kodi-screensaver-rsxs/0001-cross-compile.patch | 2 +-
.../0002-fix-default-include-dir.patch | 28 +
package/kodi-screensaver-rsxs/Config.in | 1 +
.../kodi-screensaver-rsxs.hash | 2 +-
.../kodi-screensaver-rsxs/kodi-screensaver-rsxs.mk | 5 +-
.../kodi-screensaver-stars.hash | 2 +-
.../kodi-screensaver-stars.mk | 2 +-
.../0001-texturepacker.patch} | 0
package/kodi-texturepacker/kodi-texturepacker.hash | 1 +
package/kodi-texturepacker/kodi-texturepacker.mk | 41 +
.../kodi-visualisation-fishbmc.hash | 2 +-
.../kodi-visualisation-fishbmc.mk | 2 +-
package/kodi-visualisation-fountain/Config.in | 11 -
.../kodi-visualisation-fountain.hash | 2 -
.../kodi-visualisation-fountain.mk | 11 -
.../kodi-visualisation-goom.hash | 2 +-
.../kodi-visualisation-goom.mk | 2 +-
...GLES2-also-search-for-egl-with-pkg-config.patch | 4 +-
package/kodi-visualisation-shadertoy/Config.in | 1 -
.../kodi-visualisation-shadertoy.hash | 2 +-
.../kodi-visualisation-shadertoy.mk | 6 +-
.../kodi-visualisation-spectrum.hash | 2 +-
.../kodi-visualisation-spectrum.mk | 2 +-
.../kodi-visualisation-waveforhue.hash | 2 +-
.../kodi-visualisation-waveforhue.mk | 4 +-
.../kodi-visualisation-waveform.hash | 2 +-
.../kodi-visualisation-waveform.mk | 2 +-
package/kodi/0001-Fixup-include-path.patch | 33 -
....cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch | 42 +
...e-dependency-on-gmp-and-libintl-from-Find.patch | 39 +
...0003-ALSA-fix-device-change-event-support.patch | 67 -
....cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch | 41 -
...exturePacker-fix-compilation-with-gcc-4.6.patch | 53 -
package/kodi/0006-ffmpeg30.patch | 646 ---------
...r-out-of-memory-errors-with-large-numbers.patch | 45 -
...ding-issue-when-reading-certain-id3v1-tag.patch | 82 --
...lib-cximage-6.0-fix-compilation-with-gcc6.patch | 1438 --------------------
...10-curl-support-version-7.5.0-and-upwards.patch | 34 -
...bmc_pvr_types.h-Fix-compilation-with-gcc6.patch | 30 -
package/kodi/0012-Fix_includes_in_amcodec.patch | 38 -
package/kodi/Config.in | 108 +-
package/kodi/kodi.hash | 8 +-
package/kodi/kodi.mk | 335 +++--
package/libcec/libcec.hash | 2 +-
package/libcec/libcec.mk | 4 +-
.../0001-p8-platform-config-fix-lookup-paths.patch | 38 +
...nfig.cmake-fix-paths-for-cross-compilatio.patch | 40 -
package/libplatform/libplatform.hash | 2 +-
package/libplatform/libplatform.mk | 6 +-
package/libsquish/0001-kodi.patch | 327 -----
package/libsquish/libsquish.hash | 3 +-
package/libsquish/libsquish.mk | 2 +-
package/xmlstarlet/xmlstarlet.mk | 3 +
148 files changed, 689 insertions(+), 3264 deletions(-)
create mode 100644 package/kodi-inputstream-adaptive/Config.in
create mode 100644 package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.hash
create mode 100644 package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.mk
create mode 100644 package/kodi-inputstream-rtmp/Config.in
create mode 100644 package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash
create mode 100644 package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk
create mode 120000 package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.hash
create mode 100644 package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.mk
delete mode 100644 package/kodi-pvr-nextpvr/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch
create mode 100644 package/kodi-screensaver-rsxs/0002-fix-default-include-dir.patch
rename package/{kodi/0002-texturepacker.patch => kodi-texturepacker/0001-texturepacker.patch} (100%)
create mode 120000 package/kodi-texturepacker/kodi-texturepacker.hash
create mode 100644 package/kodi-texturepacker/kodi-texturepacker.mk
delete mode 100644 package/kodi-visualisation-fountain/Config.in
delete mode 100644 package/kodi-visualisation-fountain/kodi-visualisation-fountain.hash
delete mode 100644 package/kodi-visualisation-fountain/kodi-visualisation-fountain.mk
delete mode 100644 package/kodi/0001-Fixup-include-path.patch
create mode 100644 package/kodi/0001-kodi-config.cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch
create mode 100644 package/kodi/0002-CMake-Remove-dependency-on-gmp-and-libintl-from-Find.patch
delete mode 100644 package/kodi/0003-ALSA-fix-device-change-event-support.patch
delete mode 100644 package/kodi/0004-kodi-config.cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch
delete mode 100644 package/kodi/0005-native-TexturePacker-fix-compilation-with-gcc-4.6.patch
delete mode 100644 package/kodi/0006-ffmpeg30.patch
delete mode 100644 package/kodi/0007-exif-Fix-for-out-of-memory-errors-with-large-numbers.patch
delete mode 100644 package/kodi/0008-Fix-nullpadding-issue-when-reading-certain-id3v1-tag.patch
delete mode 100644 package/kodi/0009-lib-cximage-6.0-fix-compilation-with-gcc6.patch
delete mode 100644 package/kodi/0010-curl-support-version-7.5.0-and-upwards.patch
delete mode 100644 package/kodi/0011-xbmc_pvr_types.h-Fix-compilation-with-gcc6.patch
delete mode 100644 package/kodi/0012-Fix_includes_in_amcodec.patch
create mode 100644 package/libplatform/0001-p8-platform-config-fix-lookup-paths.patch
delete mode 100644 package/libplatform/0001-platform-config.cmake-fix-paths-for-cross-compilatio.patch
delete mode 100644 package/libsquish/0001-kodi.patch
--
2.11.0
^ permalink raw reply
* [Buildroot] [PATCH v6 01/31] package/kodi-visualisation-fountain: remove package
From: Bernd Kuhls @ 2017-04-24 21:31 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424213206.26247-1-bernd.kuhls@t-online.de>
Remove broken package:
https://github.com/notspiff/visualization.fountain/issues/1#issuecomment-166156021
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
Config.in.legacy | 7 +++++++
package/kodi-visualisation-fountain/Config.in | 11 -----------
.../kodi-visualisation-fountain.hash | 2 --
.../kodi-visualisation-fountain.mk | 11 -----------
package/kodi/Config.in | 1 -
5 files changed, 7 insertions(+), 25 deletions(-)
delete mode 100644 package/kodi-visualisation-fountain/Config.in
delete mode 100644 package/kodi-visualisation-fountain/kodi-visualisation-fountain.hash
delete mode 100644 package/kodi-visualisation-fountain/kodi-visualisation-fountain.mk
diff --git a/Config.in.legacy b/Config.in.legacy
index 8e9f3d175d..a13e4453b2 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -145,6 +145,13 @@ endif
###############################################################################
comment "Legacy options removed in 2017.05"
+config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
+ bool "kodi-visualisation-fountain has been removed"
+ select BR2_LEGACY
+ help
+ According to upstream 'the visualization is not currently
+ in a working shape.'
+
config BR2_PACKAGE_PORTMAP
bool "portmap has been removed"
select BR2_LEGACY
diff --git a/package/kodi-visualisation-fountain/Config.in b/package/kodi-visualisation-fountain/Config.in
deleted file mode 100644
index 570d169338..0000000000
--- a/package/kodi-visualisation-fountain/Config.in
+++ /dev/null
@@ -1,11 +0,0 @@
-config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
- bool "kodi-visualisation-fountain"
- depends on BR2_PACKAGE_HAS_LIBGL # libsoil
- select BR2_PACKAGE_LIBSOIL
- help
- Fountain visualization for Kodi
-
- https://github.com/notspiff/visualization.fountain
-
-comment "kodi-visualisation-fountain needs OpenGL"
- depends on !BR2_PACKAGE_HAS_LIBGL
diff --git a/package/kodi-visualisation-fountain/kodi-visualisation-fountain.hash b/package/kodi-visualisation-fountain/kodi-visualisation-fountain.hash
deleted file mode 100644
index 8dc933effa..0000000000
--- a/package/kodi-visualisation-fountain/kodi-visualisation-fountain.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally computed
-sha256 7b2867f415f22e4bc4ba834034f00117fcf76774aea0afc7bf30b5f2d1991dd7 kodi-visualisation-fountain-f22deacd2396a204694d346f85369ea9ea70e16f.tar.gz
diff --git a/package/kodi-visualisation-fountain/kodi-visualisation-fountain.mk b/package/kodi-visualisation-fountain/kodi-visualisation-fountain.mk
deleted file mode 100644
index 5684402a2a..0000000000
--- a/package/kodi-visualisation-fountain/kodi-visualisation-fountain.mk
+++ /dev/null
@@ -1,11 +0,0 @@
-################################################################################
-#
-# kodi-visualisation-fountain
-#
-################################################################################
-
-KODI_VISUALISATION_FOUNTAIN_VERSION = f22deacd2396a204694d346f85369ea9ea70e16f
-KODI_VISUALISATION_FOUNTAIN_SITE = $(call github,notspiff,visualization.fountain,$(KODI_VISUALISATION_FOUNTAIN_VERSION))
-KODI_VISUALISATION_FOUNTAIN_DEPENDENCIES = kodi libsoil
-
-$(eval $(cmake-package))
diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index f2a3e2e032..f94e2c7c20 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -315,7 +315,6 @@ endmenu
menu "Visualisations"
source "package/kodi-visualisation-fishbmc/Config.in"
- source "package/kodi-visualisation-fountain/Config.in"
source "package/kodi-visualisation-goom/Config.in"
source "package/kodi-visualisation-shadertoy/Config.in"
source "package/kodi-visualisation-spectrum/Config.in"
--
2.11.0
^ permalink raw reply related
* [Buildroot] [PATCH v6 02/31] package/libplatform: bump version
From: Bernd Kuhls @ 2017-04-24 21:31 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170424213206.26247-1-bernd.kuhls@t-online.de>
Replaced patch 0001 with an alternate solution.
Updated license info after
https://github.com/Pulse-Eight/platform/commit/a1e5905874d5cdbce110344558d21a2810dead9c
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
.../0001-p8-platform-config-fix-lookup-paths.patch | 38 ++++++++++++++++++++
...nfig.cmake-fix-paths-for-cross-compilatio.patch | 40 ----------------------
package/libplatform/libplatform.hash | 2 +-
package/libplatform/libplatform.mk | 6 ++--
4 files changed, 42 insertions(+), 44 deletions(-)
create mode 100644 package/libplatform/0001-p8-platform-config-fix-lookup-paths.patch
delete mode 100644 package/libplatform/0001-platform-config.cmake-fix-paths-for-cross-compilatio.patch
diff --git a/package/libplatform/0001-p8-platform-config-fix-lookup-paths.patch b/package/libplatform/0001-p8-platform-config-fix-lookup-paths.patch
new file mode 100644
index 0000000000..d487fd942e
--- /dev/null
+++ b/package/libplatform/0001-p8-platform-config-fix-lookup-paths.patch
@@ -0,0 +1,38 @@
+From 01b5478638c705af29f09ad4ed70289f70a21dcf Mon Sep 17 00:00:00 2001
+From: "Yann E. MORIN" <yann.morin.1998@free.fr>
+Date: Mon, 6 Feb 2017 14:04:47 +0100
+Subject: [PATCH] p8-platform-config: fix lookup paths
+
+Use the proper methods to find the headers and the library.
+
+Signed-off-by: Samuel Martin <s.martin49@gmail.com>
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+---
+ p8-platform-config.cmake.in | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/p8-platform-config.cmake.in b/p8-platform-config.cmake.in
+index 47f30f1..f59418d 100644
+--- a/p8-platform-config.cmake.in
++++ b/p8-platform-config.cmake.in
+@@ -10,7 +10,7 @@
+ #
+ # propagate these properties from one build system to the other
+ set (p8-platform_VERSION "@p8-platform_VERSION_MAJOR at .@p8-platform_VERSION_MINOR@")
+-set (p8-platform_INCLUDE_DIRS @p8-platform_INCLUDE_DIRS@ @CMAKE_INSTALL_PREFIX@/include)
++find_path (p8-platform_INCLUDE_DIRS p8-platform/os.h)
+ set (p8-platform_LIBRARY_DIRS "@CMAKE_LIBRARY_OUTPUT_DIRECTORY@")
+ set (p8-platform_LINKER_FLAGS "@p8-platform_LINKER_FLAGS@")
+ set (p8-platform_CONFIG_VARS "@p8-platform_CONFIG_VARS@")
+@@ -19,7 +19,7 @@ set (p8-platform_CONFIG_VARS "@p8-platform_CONFIG_VARS@")
+ if(WIN32)
+ set (p8-platform_LIBRARY "@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@/p8-platform.lib")
+ else(WIN32)
+- set (p8-platform_LIBRARY "-L at CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@ -lp8-platform")
++ find_library (p8-platform_LIBRARY p8-platform)
+ endif(WIN32)
+ set (p8-platform_LIBRARIES ${p8-platform_LIBRARY} "@p8-platform_LIBRARIES@")
+ mark_as_advanced (p8-platform_LIBRARY)
+--
+2.7.4
+
diff --git a/package/libplatform/0001-platform-config.cmake-fix-paths-for-cross-compilatio.patch b/package/libplatform/0001-platform-config.cmake-fix-paths-for-cross-compilatio.patch
deleted file mode 100644
index 89f35bdb3d..0000000000
--- a/package/libplatform/0001-platform-config.cmake-fix-paths-for-cross-compilatio.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 65ba437ed5514dd5762a796d349ed5db49e40fe7 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Wed, 29 Jul 2015 21:26:16 +0200
-Subject: [PATCH] platform-config.cmake: fix paths for cross-compilation
-
-Headers and library paths in platform-config.cmake must take into
-account ${CMAKE_FIND_ROOT_PATH} to work in cross-compilation.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- platform-config.cmake.in | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/platform-config.cmake.in b/platform-config.cmake.in
-index 7fe35fe..78b5085 100644
---- a/platform-config.cmake.in
-+++ b/platform-config.cmake.in
-@@ -10,16 +10,16 @@
- #
- # propagate these properties from one build system to the other
- set (platform_VERSION "@platform_VERSION_MAJOR at .@platform_VERSION_MINOR@")
--set (platform_INCLUDE_DIRS @platform_INCLUDE_DIRS@ @CMAKE_INSTALL_PREFIX@/include)
-+set (platform_INCLUDE_DIRS ${CMAKE_FIND_ROOT_PATH}/@platform_INCLUDE_DIRS@ ${CMAKE_FIND_ROOT_PATH}/@CMAKE_INSTALL_PREFIX@/include)
- set (platform_LIBRARY_DIRS "@CMAKE_LIBRARY_OUTPUT_DIRECTORY@")
- set (platform_LINKER_FLAGS "@platform_LINKER_FLAGS@")
- set (platform_CONFIG_VARS "@platform_CONFIG_VARS@")
-
- # libraries come from the build tree where this file was generated
- if(WIN32)
-- set (platform_LIBRARY "@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@/platform.lib")
-+ set (platform_LIBRARY "${CMAKE_FIND_ROOT_PATH}/@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@/platform.lib")
- else(WIN32)
-- set (platform_LIBRARY "-L at CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@ -lplatform")
-+ set (platform_LIBRARY "-L${CMAKE_FIND_ROOT_PATH}/@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@ -lplatform")
- endif(WIN32)
- set (platform_LIBRARIES ${platform_LIBRARY} "@platform_LIBRARIES@")
- mark_as_advanced (platform_LIBRARY)
---
-2.5.0
-
diff --git a/package/libplatform/libplatform.hash b/package/libplatform/libplatform.hash
index 8975dfd8ab..5162b43fad 100644
--- a/package/libplatform/libplatform.hash
+++ b/package/libplatform/libplatform.hash
@@ -1,2 +1,2 @@
# Locally computed
-sha256 3603ead8b16a48cb35b1e6dea330a693f10552b1a6ea036c5db9ec248cd8baf5 libplatform-feafe68e3e0b02c3261aefb3d711863ef6fadd38.tar.gz
+sha256 dd07bea9cb5676220586e772f09eab51f1093e5ef0faadee80f7c0e99f5f6c1c libplatform-2d90f98620e25f47702c9e848380c0d93f29462b.tar.gz
diff --git a/package/libplatform/libplatform.mk b/package/libplatform/libplatform.mk
index d0137994de..c805af2e16 100644
--- a/package/libplatform/libplatform.mk
+++ b/package/libplatform/libplatform.mk
@@ -4,10 +4,10 @@
#
################################################################################
-LIBPLATFORM_VERSION = feafe68e3e0b02c3261aefb3d711863ef6fadd38
+LIBPLATFORM_VERSION = 2d90f98620e25f47702c9e848380c0d93f29462b
LIBPLATFORM_SITE = $(call github,Pulse-Eight,platform,$(LIBPLATFORM_VERSION))
-LIBPLATFORM_LICENSE = GPL-2.0+, PHP-3.01
-LIBPLATFORM_LICENSE_FILES = src/os.h src/util/fstrcmp.c
+LIBPLATFORM_LICENSE = GPL-2.0+
+LIBPLATFORM_LICENSE_FILES = src/os.h
LIBPLATFORM_INSTALL_STAGING = YES
$(eval $(cmake-package))
--
2.11.0
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox