* [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4
@ 2016-12-04 12:22 Romain Naour
2016-12-04 12:22 ` [Buildroot] [PATCH] package/efl: use liblz4 from lz4 package Romain Naour
2016-12-04 14:33 ` [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4 Thomas Petazzoni
0 siblings, 2 replies; 4+ messages in thread
From: Romain Naour @ 2016-12-04 12:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
package/enlightenment/enlightenment.hash | 4 ++--
package/enlightenment/enlightenment.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/enlightenment/enlightenment.hash b/package/enlightenment/enlightenment.hash
index 6c82bdc..ba66918 100644
--- a/package/enlightenment/enlightenment.hash
+++ b/package/enlightenment/enlightenment.hash
@@ -1,2 +1,2 @@
-# From https://www.enlightenment.org/news/e-0.21.3-release
-sha256 b90517d3de780023043b6e3ade30f686bd2cdcf5b66d24155b50da720e665fd2 enlightenment-0.21.3.tar.xz
+# From https://www.enlightenment.org/news/e-0.21.4-release
+sha256 0ed1a7c768017b2afa02cf94d9c532e9f960b6a4a7e79954770424dfb6b1bf20 enlightenment-0.21.4.tar.xz
diff --git a/package/enlightenment/enlightenment.mk b/package/enlightenment/enlightenment.mk
index 98f537d..1cbf598 100644
--- a/package/enlightenment/enlightenment.mk
+++ b/package/enlightenment/enlightenment.mk
@@ -4,7 +4,7 @@
#
################################################################################
-ENLIGHTENMENT_VERSION = 0.21.3
+ENLIGHTENMENT_VERSION = 0.21.4
ENLIGHTENMENT_SOURCE = enlightenment-$(ENLIGHTENMENT_VERSION).tar.xz
ENLIGHTENMENT_SITE = http://download.enlightenment.org/rel/apps/enlightenment
ENLIGHTENMENT_LICENSE = BSD-2c
--
2.5.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] package/efl: use liblz4 from lz4 package
2016-12-04 12:22 [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4 Romain Naour
@ 2016-12-04 12:22 ` Romain Naour
2016-12-04 14:32 ` Thomas Petazzoni
2016-12-04 14:33 ` [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4 Thomas Petazzoni
1 sibling, 1 reply; 4+ messages in thread
From: Romain Naour @ 2016-12-04 12:22 UTC (permalink / raw)
To: buildroot
Efl libraries bundle a copy of liblz4 which is also provided by
lz4 Buildroot package. Switch to liblz4 from lz4 package.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
package/efl/Config.in | 1 +
package/efl/efl.mk | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/package/efl/Config.in b/package/efl/Config.in
index 7ae8c05..c51fc56 100644
--- a/package/efl/Config.in
+++ b/package/efl/Config.in
@@ -16,6 +16,7 @@ config BR2_PACKAGE_EFL
select BR2_PACKAGE_LIBCURL # Ecore_con_url, runtime dependency
# https://phab.enlightenment.org/T2728
select BR2_PACKAGE_LUAJIT # Lua support broken
+ select BR2_PACKAGE_LZ4
select BR2_PACKAGE_UTIL_LINUX
# libblkid is part of required tools, see EFL's README.
select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
diff --git a/package/efl/efl.mk b/package/efl/efl.mk
index a4a5c71..5db57f6 100644
--- a/package/efl/efl.mk
+++ b/package/efl/efl.mk
@@ -20,7 +20,7 @@ EFL_LICENSE_FILES = \
EFL_INSTALL_STAGING = YES
EFL_DEPENDENCIES = host-pkgconf host-efl host-luajit dbus freetype \
- jpeg luajit udev util-linux zlib
+ jpeg luajit lz4 udev util-linux zlib
# Configure options:
# --disable-lua-old: build elua for the target.
@@ -28,6 +28,7 @@ EFL_DEPENDENCIES = host-pkgconf host-efl host-luajit dbus freetype \
# --disable-sdl: disable sdl2 support.
# --disable-spectre: disable spectre image loader.
# --disable-xinput22: disable X11 XInput v2.2+ support.
+# --enable-liblz4: use liblz4 from lz4 package.
# --with-doxygen: disable doxygen documentation
EFL_CONF_OPTS = \
--with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc \
@@ -43,6 +44,7 @@ EFL_CONF_OPTS = \
--disable-spectre \
--disable-xinput22 \
--disable-wayland \
+ --enable-liblz4 \
--with-doxygen=no
# Disable untested configuration warning.
--
2.5.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] package/efl: use liblz4 from lz4 package
2016-12-04 12:22 ` [Buildroot] [PATCH] package/efl: use liblz4 from lz4 package Romain Naour
@ 2016-12-04 14:32 ` Thomas Petazzoni
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-12-04 14:32 UTC (permalink / raw)
To: buildroot
Hello,
On Sun, 4 Dec 2016 13:22:05 +0100, Romain Naour wrote:
> Efl libraries bundle a copy of liblz4 which is also provided by
> lz4 Buildroot package. Switch to liblz4 from lz4 package.
>
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
> package/efl/Config.in | 1 +
> package/efl/efl.mk | 4 +++-
> 2 files changed, 4 insertions(+), 1 deletion(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4
2016-12-04 12:22 [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4 Romain Naour
2016-12-04 12:22 ` [Buildroot] [PATCH] package/efl: use liblz4 from lz4 package Romain Naour
@ 2016-12-04 14:33 ` Thomas Petazzoni
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-12-04 14:33 UTC (permalink / raw)
To: buildroot
Hello,
On Sun, 4 Dec 2016 13:22:04 +0100, Romain Naour wrote:
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
> package/enlightenment/enlightenment.hash | 4 ++--
> package/enlightenment/enlightenment.mk | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-12-04 14:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-04 12:22 [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4 Romain Naour
2016-12-04 12:22 ` [Buildroot] [PATCH] package/efl: use liblz4 from lz4 package Romain Naour
2016-12-04 14:32 ` Thomas Petazzoni
2016-12-04 14:33 ` [Buildroot] [PATCH] package/enlightenment: bump to version 0.21.4 Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox