Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 0/6] Bump Qt5 to version 5.1.1
@ 2013-09-20  5:43 Fatih Aşıcı
  2013-09-20  5:43 ` [Buildroot] [PATCH v2 1/6] qt5: bump to 5.1.1 Fatih Aşıcı
                   ` (5 more replies)
  0 siblings, 6 replies; 19+ messages in thread
From: Fatih Aşıcı @ 2013-09-20  5:43 UTC (permalink / raw)
  To: buildroot

These patches bump qt5 to the latest stable version (5.1.1). They also add
the new module packages provided with 5.1 series.

Changes v1 -> v2:
  - Mention upstreamed patches and removed configure options in the commit log
    (suggested by Thomas Petazzoni)
  - Give numbers to the patch filenames (suggested by Arnout Vandecappelle and
    Thomas Petazzoni)
  - Remove unused configure options in module packages with a separate patch
    (suggested by Thomas Petazzoni)
  - Write names of license files to .mk files found in new packages (suggested
    by Thomas Petazzoni)

Fatih A??c? (6):
  qt5: bump to 5.1.1
  qt5quickcontrols: new package
  qt5sensors: new package
  qt5serialport: new package
  qt5x11extras: new package
  qt5: remove configure options from module packages

 package/qt5/Config.in                              |    4 ++
 package/qt5/qt5.mk                                 |    4 +-
 package/qt5/qt5base/Config.in                      |    2 +
 ...nce-add-egl-to-CONFIG-to-get-correct-incl.patch |   32 -----------
 ...-Add-egl-cflags-when-opengles2-is-enabled.patch |   32 +++++++++++
 .../qt5/qt5base/qt5base-0002-mkspecs-files.patch   |    5 +-
 package/qt5/qt5base/qt5base.mk                     |   10 ++--
 package/qt5/qt5declarative/qt5declarative.mk       |    2 +-
 .../qt5/qt5graphicaleffects/qt5graphicaleffects.mk |    1 -
 package/qt5/qt5imageformats/qt5imageformats.mk     |    1 -
 .../qt5jsbackend-0002-fix-uclibc.patch             |   33 ------------
 package/qt5/qt5jsbackend/qt5jsbackend.mk           |    1 -
 package/qt5/qt5multimedia/qt5multimedia.mk         |    1 -
 package/qt5/qt5quick1/qt5quick1.mk                 |    4 +-
 package/qt5/qt5quickcontrols/Config.in             |   20 +++++++
 package/qt5/qt5quickcontrols/qt5quickcontrols.mk   |   37 +++++++++++++
 package/qt5/qt5script/qt5script.mk                 |    1 -
 package/qt5/qt5sensors/Config.in                   |   10 ++++
 package/qt5/qt5sensors/qt5sensors.mk               |   56 ++++++++++++++++++++
 package/qt5/qt5serialport/Config.in                |   10 ++++
 package/qt5/qt5serialport/qt5serialport.mk         |   40 ++++++++++++++
 package/qt5/qt5svg/qt5svg.mk                       |    1 -
 package/qt5/qt5webkit/qt5webkit.mk                 |    1 -
 package/qt5/qt5x11extras/Config.in                 |   11 ++++
 package/qt5/qt5x11extras/qt5x11extras.mk           |   40 ++++++++++++++
 package/qt5/qt5xmlpatterns/qt5xmlpatterns.mk       |    1 -
 26 files changed, 276 insertions(+), 84 deletions(-)
 delete mode 100644 package/qt5/qt5base/qt5base-0001-eglconvenience-add-egl-to-CONFIG-to-get-correct-incl.patch
 create mode 100644 package/qt5/qt5base/qt5base-0001-xcb-Add-egl-cflags-when-opengles2-is-enabled.patch
 delete mode 100644 package/qt5/qt5jsbackend/qt5jsbackend-0002-fix-uclibc.patch
 create mode 100644 package/qt5/qt5quickcontrols/Config.in
 create mode 100644 package/qt5/qt5quickcontrols/qt5quickcontrols.mk
 create mode 100644 package/qt5/qt5sensors/Config.in
 create mode 100644 package/qt5/qt5sensors/qt5sensors.mk
 create mode 100644 package/qt5/qt5serialport/Config.in
 create mode 100644 package/qt5/qt5serialport/qt5serialport.mk
 create mode 100644 package/qt5/qt5x11extras/Config.in
 create mode 100644 package/qt5/qt5x11extras/qt5x11extras.mk

-- 
1.7.10.4

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

end of thread, other threads:[~2013-10-26 17:10 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-20  5:43 [Buildroot] [PATCH v2 0/6] Bump Qt5 to version 5.1.1 Fatih Aşıcı
2013-09-20  5:43 ` [Buildroot] [PATCH v2 1/6] qt5: bump to 5.1.1 Fatih Aşıcı
2013-09-20  7:20   ` Espen Frimann Koren
2013-09-20  8:33     ` Fatih Aşıcı
2013-10-04 12:09   ` Ezequiel Garcia
2013-10-05 21:21     ` Fatih Aşıcı
2013-10-14 14:13   ` Ezequiel García
2013-10-26 17:09   ` Peter Korsgaard
2013-09-20  5:43 ` [Buildroot] [PATCH v2 2/6] qt5quickcontrols: new package Fatih Aşıcı
2013-10-26 17:10   ` Peter Korsgaard
2013-09-20  5:43 ` [Buildroot] [PATCH v2 3/6] qt5sensors: " Fatih Aşıcı
2013-10-26 17:10   ` Peter Korsgaard
2013-09-20  5:43 ` [Buildroot] [PATCH v2 4/6] qt5serialport: " Fatih Aşıcı
2013-10-26 17:10   ` Peter Korsgaard
2013-09-20  5:43 ` [Buildroot] [PATCH v2 5/6] qt5x11extras: " Fatih Aşıcı
2013-10-26 17:10   ` Peter Korsgaard
2013-09-20  5:43 ` [Buildroot] [PATCH v2 6/6] qt5: remove configure options from module packages Fatih Aşıcı
2013-09-20 14:52   ` Thomas Petazzoni
2013-10-09 21:15   ` Peter Korsgaard

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