Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 00/11] flutter package improvements
@ 2024-01-02 23:59 Adam Duskett
  2024-01-02 23:59 ` [Buildroot] [PATCH v3 01/11] package/Config.in: move flutter-pi Adam Duskett
                   ` (10 more replies)
  0 siblings, 11 replies; 26+ messages in thread
From: Adam Duskett @ 2024-01-02 23:59 UTC (permalink / raw)
  To: buildroot; +Cc: Adam Duskett

Hello;

Included in this patch series are several packages that improve the current
set of flutter packages available to users.

This is the third set for this patch series that includes the following
changes:

  - I rewrote the commit messages for every patch to be far more comprehensive.
    These commit messages have also been ran through grammarly to ensure that
    there are no typos or glaring gramatical errors.

  - I have dropped the "package/xdg-user-dirs: new package" and
    "package/flutter-gallery: depend on xdg-user-dirs and fix build options"
    commits, as xdg-user-dirs is not needed by Amarula nor was I asked to
    port it. This means that flutter-gallery will still need the
    0001-remove-GetStorage.patch to function.

  - Updated flutter from 3.16.4 to 3.16.5

These packages have been tested on a x86_64 host with an AMD Ryzen 9 6900HS
with Docker 24.0.5:
  - The following distributions:
    - Fedora 39: Host system
    - Ubuntu 22.04: Docker
    - Debian 11: Docker

  - The following targets:
    - BR2_aarch64
    - BR2_arm
    - BR2_x86_64

Also, these packages have tested with the following testing command:

./support/testing/run-tests \
  -d ./dl \
  -o ./output \
  -k \
  tests.package.test_flutter.TestFlutter

I hope that the quality of these patches are to the maintainers satisfaction.
If there are any problems, please feel free to email me directly and I will
respond back as soon as possible.

Adam Duskett

Adam Duskett (11):
  package/Config.in: move flutter-pi
  package/Config.in: move flutter-gallery menu entry
  package/flutter-sdk-bin: bump version to 3.16.5
  package/flutter-engine: bump version to 3.16.5
  package/flutter-pi: bump version to
    f34d7bdbda713ba607b9625541ddfa314d9999a0
  package/flutter-pi: add the charset converter plugin as a menuconfig
    option
  package/flutter-engine: Add profile runtime mode selection
  package/flutter-sdk-bin: add dart arguments for different runtime
    modes
  package/flutter-gallery: add a configure step
  package/flutter-gallery: clean up install_target_cmds
  package/flutter-sdk-bin/Config.in.host: add pub-cache location option

 package/Config.in                             |  4 +-
 package/flutter-engine/Config.in              | 25 ++++++++
 package/flutter-engine/flutter-engine.mk      |  6 +-
 package/flutter-gallery/flutter-gallery.mk    | 17 ++++--
 ...er_surface-properly-fallback-to-surf.patch | 59 -------------------
 package/flutter-pi/Config.in                  |  7 +++
 package/flutter-pi/flutter-pi.hash            |  2 +-
 package/flutter-pi/flutter-pi.mk              |  8 ++-
 package/flutter-sdk-bin/Config.in.host        | 11 ++++
 package/flutter-sdk-bin/flutter-sdk-bin.hash  |  2 +-
 package/flutter-sdk-bin/flutter-sdk-bin.mk    | 25 +++++---
 11 files changed, 87 insertions(+), 79 deletions(-)
 delete mode 100644 package/flutter-pi/0001-src-egl_gbm_render_surface-properly-fallback-to-surf.patch

-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-01-13 20:19 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-02 23:59 [Buildroot] [PATCH v3 00/11] flutter package improvements Adam Duskett
2024-01-02 23:59 ` [Buildroot] [PATCH v3 01/11] package/Config.in: move flutter-pi Adam Duskett
2024-01-10 22:45   ` Yann E. MORIN
2024-01-13 20:18   ` Peter Korsgaard
2024-01-02 23:59 ` [Buildroot] [PATCH v3 02/11] package/Config.in: move flutter-gallery menu entry Adam Duskett
2024-01-10 22:46   ` Yann E. MORIN
2024-01-13 20:18   ` Peter Korsgaard
2024-01-02 23:59 ` [Buildroot] [PATCH v3 03/11] package/flutter-sdk-bin: bump version to 3.16.5 Adam Duskett
2024-01-10 23:21   ` Yann E. MORIN
2024-01-02 23:59 ` [Buildroot] [PATCH v3 04/11] package/flutter-engine: " Adam Duskett
2024-01-10 23:22   ` Yann E. MORIN
2024-01-02 23:59 ` [Buildroot] [PATCH v3 05/11] package/flutter-pi: bump version to f34d7bdbda713ba607b9625541ddfa314d9999a0 Adam Duskett
2024-01-11 18:35   ` Yann E. MORIN
2024-01-02 23:59 ` [Buildroot] [PATCH v3 06/11] package/flutter-pi: add the charset converter plugin as a menuconfig option Adam Duskett
2024-01-11 18:38   ` Yann E. MORIN
2024-01-02 23:59 ` [Buildroot] [PATCH v3 07/11] package/flutter-engine: Add profile runtime mode selection Adam Duskett
2024-01-11 18:43   ` Yann E. MORIN
2024-01-02 23:59 ` [Buildroot] [PATCH v3 08/11] package/flutter-sdk-bin: add dart arguments for different runtime modes Adam Duskett
2024-01-11 18:48   ` Yann E. MORIN
2024-01-11 19:40     ` Adam Duskett
2024-01-11 20:22       ` Yann E. MORIN
2024-01-11 20:28   ` Yann E. MORIN
2024-01-02 23:59 ` [Buildroot] [PATCH v3 09/11] package/flutter-gallery: add a configure step Adam Duskett
2024-01-02 23:59 ` [Buildroot] [PATCH v3 10/11] package/flutter-gallery: clean up install_target_cmds Adam Duskett
2024-01-02 23:59 ` [Buildroot] [PATCH v3 11/11] package/flutter-sdk-bin/Config.in.host: add pub-cache location option Adam Duskett
2024-01-13 17:32   ` Yann E. MORIN

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