Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v5 0/6] The big webkitgtk bump
@ 2015-07-14 19:42 Gustavo Zacarias
  2015-07-14 19:42 ` [Buildroot] [PATCH v5 1/6] Makefile: save MAKE_VERSION Gustavo Zacarias
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2015-07-14 19:42 UTC (permalink / raw)
  To: buildroot

Fifth take at the webkit/midori bump...

There's support for libgtk2 & libgtk3, though libgtk2 is always needed
for the plugin system.

GL* support was only tested via mesa software renderer.

Wayland support wasn't enabled because it still needs gtk2 (plugins) -
this could possibly be patched away.

Multimedia support is automatic via detection of gst1-plugins-base,
ideally this should be an option but right now opencv+gst generate a
dependency loop if gstreamer1 is selected. Also codecs will need to be
catered by the user via the appropiate gst selects.

MIPS support was disabled pending libatomic support for
__sync_fetch_and_add_8 which is handled there for some 32-bit
architectures.
Update for v2: MIPS(eb) SIGBUSes, so disabled in general, kept the
libatomic tweak for reference. MIPSel untested.
Update for v4: Little-endian works so enabled.

Possible TODOs:
Wayland in a proper way, granite support, gcr support, more arch
testing/support.

v5:
* Add license info to webkitgtk24 [Yann]
* Avoid MAKE_VERSION clobber [Yann / Gustavo]
* Bump vala to 0.28 and patch midori [Gustavo]

v4:
* Bump to version 2.4.9 [Gustavo]

* Install MiniBrowser (the test browser for gtk3+) [Gustavo]

* Enable mipsel & mips64el [Gustavo]
  These seem to work with the emulator, only big-endian is broken.

* Fix make 3.81 workaround, it was doing the opposite [Gustavo]

* Add libatomic fix for SuperH as well [Gustavo]
  It's required to build properly, but runtime testing says it
  doesn't work, though it might be related with Qemu not being
  able to emulate more than 64MB RAM for sh4-r2d.

* Update deprecation version to 2015.08

v3:
* Work around make 3.81 looping bug for webkitgtk24. [Gustavo]

* Fold libatomic patches.
  webkitgtk24 requires libatomic for i386 support.
  While a better solution is desirable for other packages such as
  strongswan on microblazeel there's no final solution yet, and it
  most likely will require copying them anyway. [Gustavo]

* Add host variants of: harfbuzz, cairo, pango, librsvg.
  host-librsvg is required by midori for rsvg-convert.
  The rest are just dependencies of host-librsvg. [Gustavo]

v2:
* Needs NPTL [Gustavo]
  It uses pthread_getattr_np()

* Handle libatomic [Gustavo]
  Needed for i386, mips & mipsel at least.

* Deprecate libgail, no longer used by any package [Gustavo]

v1:

* Bump webkitgtk to version 2.4.x in a versioned package.
  This is because midori can't use 2.6.x or 2.8.x and this way we can
  have another webkitgtk package in parallel for other uses.
  The series is still security-supported upstream.

* Bump midori to version 0.5.9.
  No effort was made to enable support for the old webkit 1.x. series,
  it may be possible to do so but it makes no sense.

* Deprecate old webkit package.
  Security bugs, build issues, general instability.

Gustavo Zacarias (6):
  Makefile: save MAKE_VERSION
  webkitgtk24: new package
  midori: bump to version 0.5.9
  vala: bump to version 0.28.0
  webkit: mark as deprecated
  libgail: mark as deprecated

 Makefile                                    |   7 +-
 package/Config.in                           |   1 +
 package/libgail/Config.in                   |   2 +
 package/midori/0001-disable-libnotify.patch |  43 ++++++++++
 package/midori/0002-new-vala.patch          |  26 ++++++
 package/midori/Config.in                    |  39 ++++++---
 package/midori/midori.hash                  |   2 +
 package/midori/midori.mk                    |  54 ++++++-------
 package/vala/vala.hash                      |   4 +-
 package/vala/vala.mk                        |   4 +-
 package/webkit/Config.in                    |   3 +
 package/webkitgtk24/0001-fix-ppc32.patch    |  34 ++++++++
 package/webkitgtk24/Config.in               |  59 ++++++++++++++
 package/webkitgtk24/webkitgtk24.hash        |   2 +
 package/webkitgtk24/webkitgtk24.mk          | 120 ++++++++++++++++++++++++++++
 15 files changed, 355 insertions(+), 45 deletions(-)
 create mode 100644 package/midori/0001-disable-libnotify.patch
 create mode 100644 package/midori/0002-new-vala.patch
 create mode 100644 package/midori/midori.hash
 create mode 100644 package/webkitgtk24/0001-fix-ppc32.patch
 create mode 100644 package/webkitgtk24/Config.in
 create mode 100644 package/webkitgtk24/webkitgtk24.hash
 create mode 100644 package/webkitgtk24/webkitgtk24.mk

-- 
2.3.6

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

end of thread, other threads:[~2015-07-14 22:27 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-14 19:42 [Buildroot] [PATCH v5 0/6] The big webkitgtk bump Gustavo Zacarias
2015-07-14 19:42 ` [Buildroot] [PATCH v5 1/6] Makefile: save MAKE_VERSION Gustavo Zacarias
2015-07-14 21:22   ` Arnout Vandecappelle
2015-07-14 21:30     ` Gustavo Zacarias
2015-07-14 19:42 ` [Buildroot] [PATCH v5 2/6] webkitgtk24: new package Gustavo Zacarias
2015-07-14 19:42 ` [Buildroot] [PATCH v5 3/6] midori: bump to version 0.5.9 Gustavo Zacarias
2015-07-14 19:42 ` [Buildroot] [PATCH v5 4/6] vala: bump to version 0.28.0 Gustavo Zacarias
2015-07-14 21:54   ` Thomas Petazzoni
2015-07-14 22:12     ` Gustavo Zacarias
2015-07-14 22:27       ` Thomas Petazzoni
2015-07-14 19:42 ` [Buildroot] [PATCH v5 5/6] webkit: mark as deprecated Gustavo Zacarias
2015-07-14 19:42 ` [Buildroot] [PATCH v5 6/6] libgail: " Gustavo Zacarias

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