Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3
@ 2019-08-31 10:05 Romain Naour
  2019-08-31 10:05 ` [Buildroot] [for-next 2/3] package/enlightenment: bump to version 0.23.0 Romain Naour
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Romain Naour @ 2019-08-31 10:05 UTC (permalink / raw)
  To: buildroot

Remove upstream patch and rename the remaining patch.

This version is needed for enlightenment 0.23.0.

See:
https://www.enlightenment.org/news/efl-1.22.3

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 ...INA_VALUE_EMPTY-during-library-init.patch} |  0
 ...missing-__has_attribute-definitions-.patch | 48 -------------------
 package/efl/efl.hash                          |  4 +-
 package/efl/efl.mk                            |  2 +-
 4 files changed, 3 insertions(+), 51 deletions(-)
 rename package/efl/{0002-eina-set-EINA_VALUE_EMPTY-during-library-init.patch => 0001-eina-set-EINA_VALUE_EMPTY-during-library-init.patch} (100%)
 delete mode 100644 package/efl/0001-libunibreak-add-missing-__has_attribute-definitions-.patch

diff --git a/package/efl/0002-eina-set-EINA_VALUE_EMPTY-during-library-init.patch b/package/efl/0001-eina-set-EINA_VALUE_EMPTY-during-library-init.patch
similarity index 100%
rename from package/efl/0002-eina-set-EINA_VALUE_EMPTY-during-library-init.patch
rename to package/efl/0001-eina-set-EINA_VALUE_EMPTY-during-library-init.patch
diff --git a/package/efl/0001-libunibreak-add-missing-__has_attribute-definitions-.patch b/package/efl/0001-libunibreak-add-missing-__has_attribute-definitions-.patch
deleted file mode 100644
index 3b70d15293..0000000000
--- a/package/efl/0001-libunibreak-add-missing-__has_attribute-definitions-.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From c394fba4c4c820ea2b7200306ff033e4bbc12ead Mon Sep 17 00:00:00 2001
-From: Romain Naour <romain.naour@gmail.com>
-Date: Mon, 22 Apr 2019 19:26:09 +0200
-Subject: [PATCH] libunibreak: add missing __has_attribute definitions for old
- compilers
-
-__has_attribute has been introduced with gcc 5 [1].
-
-[1] https://www.gnu.org/software/gcc/gcc-5/changes.html
-
-Fixes:
-http://autobuild.buildroot.net/results/64ab825048fac1654b0d0698740ddf857fcc0afa/build-end.log
-
-Upstream status:
-https://phab.enlightenment.org/T7818
-
-Signed-off-by: Romain Naour <romain.naour@gmail.com>
----
- src/static_libs/libunibreak/wordbreak.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/src/static_libs/libunibreak/wordbreak.c b/src/static_libs/libunibreak/wordbreak.c
-index 017e0fd091..50c830c7cc 100644
---- a/src/static_libs/libunibreak/wordbreak.c
-+++ b/src/static_libs/libunibreak/wordbreak.c
-@@ -209,6 +209,9 @@ static void set_wordbreaks(
-                 posLast = posCur;
-                 break;
-             }
-+#ifndef __has_attribute
-+# define __has_attribute(x) 0
-+#endif
- #if __has_attribute(fallthrough)
-            __attribute__((fallthrough));
- #endif
-@@ -325,6 +328,9 @@ static void set_wordbreaks(
-                 wbcSeqStart = wbcCur;
-                 posLast = posCur;
-             }
-+#ifndef __has_attribute
-+# define __has_attribute(x) 0
-+#endif
- #if __has_attribute(fallthrough)
-            __attribute__((fallthrough));
- #endif
--- 
-2.14.5
-
diff --git a/package/efl/efl.hash b/package/efl/efl.hash
index f9015681ee..c60495418c 100644
--- a/package/efl/efl.hash
+++ b/package/efl/efl.hash
@@ -1,5 +1,5 @@
-# From https://download.enlightenment.org/rel/libs/efl/efl-1.22.2.tar.xz.sha256
-sha256 1699891f825911622de0aa77fe1140eff7335aba619d2352485e54dcff6b1cd0 efl-1.22.2.tar.xz
+# From https://download.enlightenment.org/rel/libs/efl/efl-1.22.3.tar.xz.sha256
+sha256 7e7a4199b1e90d400dab2491db6032f8e0b26bab65ec19c9f8a97a82394331c8 efl-1.22.3.tar.xz
 
 sha256 d949e42ca8fd48d275c397c5fc2ac34c9b63ada715dcaf1a670e17bb62964341  COMPLIANCE
 sha256 1f0597d326e2fdb54aa2f0caec6d8bb0afb9941ef32475f017ed02ca214fcf37  COPYING
diff --git a/package/efl/efl.mk b/package/efl/efl.mk
index 6f7c09ffa3..f1e69f8a23 100644
--- a/package/efl/efl.mk
+++ b/package/efl/efl.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-EFL_VERSION = 1.22.2
+EFL_VERSION = 1.22.3
 EFL_SOURCE = efl-$(EFL_VERSION).tar.xz
 EFL_SITE = http://download.enlightenment.org/rel/libs/efl
 EFL_LICENSE = BSD-2-Clause, LGPL-2.1+, GPL-2.0+, FTL, MIT
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [for-next 2/3] package/enlightenment: bump to version 0.23.0
  2019-08-31 10:05 [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3 Romain Naour
@ 2019-08-31 10:05 ` Romain Naour
  2019-08-31 10:05 ` [Buildroot] [for-next 3/3] package/terminology: bump to version 1.5.0 Romain Naour
  2019-09-23 21:23 ` [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3 Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Romain Naour @ 2019-08-31 10:05 UTC (permalink / raw)
  To: buildroot

This enlightement release include many Wayland improvements
but our packaging depends on Xorg only.

See:
https://www.enlightenment.org/news/e23_release
https://www.phoronix.com/scan.php?page=news_item&px=Enlightenment-0.23-Released

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 4872676bee..f692a67aa1 100644
--- a/package/enlightenment/enlightenment.hash
+++ b/package/enlightenment/enlightenment.hash
@@ -1,3 +1,3 @@
-# From https://www.enlightenment.org/news/e0.22.4_release
-sha256	59f4997c8b59457142870e40f137bc08c9735c84368d32213dacf09c4342fe79	enlightenment-0.22.4.tar.xz
+# From https://www.enlightenment.org/news/e23_release
+sha256	b8c5d040875576d3d3ad8572644f92a65e21291bcee6b0d62f74fbfd482afdf8	enlightenment-0.23.0.tar.xz
 sha256	34dbd501ec9d1c8dcc569c01db9cf9a4b7ee5981614cc9f8f613a97463d27350	COPYING
diff --git a/package/enlightenment/enlightenment.mk b/package/enlightenment/enlightenment.mk
index f0f9834c87..43f79d59da 100644
--- a/package/enlightenment/enlightenment.mk
+++ b/package/enlightenment/enlightenment.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-ENLIGHTENMENT_VERSION = 0.22.4
+ENLIGHTENMENT_VERSION = 0.23.0
 ENLIGHTENMENT_SOURCE = enlightenment-$(ENLIGHTENMENT_VERSION).tar.xz
 ENLIGHTENMENT_SITE = http://download.enlightenment.org/rel/apps/enlightenment
 ENLIGHTENMENT_LICENSE = BSD-2-Clause
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [for-next 3/3] package/terminology: bump to version 1.5.0
  2019-08-31 10:05 [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3 Romain Naour
  2019-08-31 10:05 ` [Buildroot] [for-next 2/3] package/enlightenment: bump to version 0.23.0 Romain Naour
@ 2019-08-31 10:05 ` Romain Naour
  2019-09-23 21:23 ` [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3 Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Romain Naour @ 2019-08-31 10:05 UTC (permalink / raw)
  To: buildroot

See:
https://www.enlightenment.org/news/2019-07-20-terminology-1.5.0

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 package/terminology/terminology.hash | 4 ++--
 package/terminology/terminology.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/terminology/terminology.hash b/package/terminology/terminology.hash
index 45885ca301..64e7cd9aa2 100644
--- a/package/terminology/terminology.hash
+++ b/package/terminology/terminology.hash
@@ -1,3 +1,3 @@
-# From https://www.enlightenment.org/news/2019-05-24-terminology-1.4.1
-sha256  d7b8b35fa38cb6a8746435c44f3517c47324d4c8362b35878ec90c9254d9a956  terminology-1.4.1.tar.xz
+# From https://download.enlightenment.org/rel/apps/terminology/terminology-1.5.0.tar.xz.sha256sum
+sha256  de55e503b382bb7c42a7def04c5ef7bff01e3e1fb0b379a4591544899eab8a6c  terminology-1.5.0.tar.xz
 sha256  a907d434f4691990ed8f2826ff7546672e9934a26c798351da12ed544dadc628  COPYING
diff --git a/package/terminology/terminology.mk b/package/terminology/terminology.mk
index 633daf5a02..590413e69c 100644
--- a/package/terminology/terminology.mk
+++ b/package/terminology/terminology.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TERMINOLOGY_VERSION = 1.4.1
+TERMINOLOGY_VERSION = 1.5.0
 TERMINOLOGY_SOURCE = terminology-$(TERMINOLOGY_VERSION).tar.xz
 TERMINOLOGY_SITE = https://download.enlightenment.org/rel/apps/terminology
 TERMINOLOGY_LICENSE = BSD-2-Clause
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3
  2019-08-31 10:05 [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3 Romain Naour
  2019-08-31 10:05 ` [Buildroot] [for-next 2/3] package/enlightenment: bump to version 0.23.0 Romain Naour
  2019-08-31 10:05 ` [Buildroot] [for-next 3/3] package/terminology: bump to version 1.5.0 Romain Naour
@ 2019-09-23 21:23 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-09-23 21:23 UTC (permalink / raw)
  To: buildroot

On Sat, 31 Aug 2019 12:05:06 +0200
Romain Naour <romain.naour@gmail.com> wrote:

> Remove upstream patch and rename the remaining patch.
> 
> This version is needed for enlightenment 0.23.0.
> 
> See:
> https://www.enlightenment.org/news/efl-1.22.3
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
>  ...INA_VALUE_EMPTY-during-library-init.patch} |  0
>  ...missing-__has_attribute-definitions-.patch | 48 -------------------
>  package/efl/efl.hash                          |  4 +-
>  package/efl/efl.mk                            |  2 +-
>  4 files changed, 3 insertions(+), 51 deletions(-)
>  rename package/efl/{0002-eina-set-EINA_VALUE_EMPTY-during-library-init.patch => 0001-eina-set-EINA_VALUE_EMPTY-during-library-init.patch} (100%)
>  delete mode 100644 package/efl/0001-libunibreak-add-missing-__has_attribute-definitions-.patch

Thanks, series applied!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-09-23 21:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-31 10:05 [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3 Romain Naour
2019-08-31 10:05 ` [Buildroot] [for-next 2/3] package/enlightenment: bump to version 0.23.0 Romain Naour
2019-08-31 10:05 ` [Buildroot] [for-next 3/3] package/terminology: bump to version 1.5.0 Romain Naour
2019-09-23 21:23 ` [Buildroot] [for-next 1/3] package/efl: bump to version 1.22.3 Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox