Skip to content

Commit b964bb8

Browse files
ldesrochesConchuOD
authored andcommitted
package/egt*: bump versions for linux4microchip-2025.04
Bump the following packages for the 2025.04 release of linux4microchip: egt to 1.11-rc3 egt-benchmark to 1.3-rc1 egt-launcher to 1.5.1 egt-samples to 1.7-rc1 egt-samples-contribution to 1.3-rc1 egt-thermostat to 1.8.1 libplanes to v1.1.0-rc1 Update the egt package as this new version offers soundeffect support that requires alsa and sndfile libraries. Update the minimal requirement for gcc as egt no longer uses c++14, but c++17. Signed-off-by: Ludovic Desroches <[email protected]> Reviewed-by: Nayab Sayed <[email protected]>
1 parent f372dce commit b964bb8

File tree

8 files changed

+18
-10
lines changed

8 files changed

+18
-10
lines changed

package/egt-benchmark/egt-benchmark.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
################################################################################
66

7-
EGT_BENCHMARK_VERSION = 1.2
7+
EGT_BENCHMARK_VERSION = 1.3-rc1
88
EGT_BENCHMARK_SITE = https://github.com/linux4sam/egt-benchmark.git
99
EGT_BENCHMARK_SITE_METHOD = git
1010
EGT_BENCHMARK_GIT_SUBMODULES = YES

package/egt-launcher/egt-launcher.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
################################################################################
66

7-
EGT_LAUNCHER_VERSION = 1.5
7+
EGT_LAUNCHER_VERSION = 1.5.1
88
EGT_LAUNCHER_SITE = https://github.com/linux4sam/egt-launcher.git
99
EGT_LAUNCHER_SITE_METHOD = git
1010
EGT_LAUNCHER_GIT_SUBMODULES = YES

package/egt-samples-contribution/egt-samples-contribution.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
###############################################################################
66

7-
EGT_SAMPLES_CONTRIBUTION_VERSION = 1.2.1
7+
EGT_SAMPLES_CONTRIBUTION_VERSION = 1.3-rc1
88
EGT_SAMPLES_CONTRIBUTION_SITE = https://github.com/linux4sam/egt-samples-contribution.git
99
EGT_SAMPLES_CONTRIBUTION_SITE_METHOD = git
1010
EGT_SAMPLES_CONTRIBUTION_LICENSE = Apache-2.0

package/egt-samples/egt-samples.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
################################################################################
66

7-
EGT_SAMPLES_VERSION = 1.6
7+
EGT_SAMPLES_VERSION = 1.7-rc1
88
EGT_SAMPLES_SITE = https://github.com/linux4sam/egt-samples.git
99
EGT_SAMPLES_SITE_METHOD = git
1010
EGT_SAMPLES_GIT_SUBMODULES = YES

package/egt-thermostat/egt-thermostat.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
################################################################################
66

7-
EGT_THERMOSTAT_VERSION = 1.8
7+
EGT_THERMOSTAT_VERSION = 1.8.1
88
EGT_THERMOSTAT_SITE = https://github.com/linux4sam/egt-thermostat.git
99
EGT_THERMOSTAT_SITE_METHOD = git
1010
EGT_THERMOSTAT_GIT_SUBMODULES = YES

package/egt/Config.in

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ config BR2_PACKAGE_EGT
33
select BR2_PACKAGE_CAIRO
44
depends on BR2_INSTALL_LIBSTDCPP
55
depends on BR2_USE_WCHAR
6-
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # c++14
6+
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_9 # c++17
77
help
88
EGT graphics library for microchip sam9x and sama5 mpu's.
99

10-
comment "egt needs a toolchain w/ C++, gcc >= 5, wchar"
10+
comment "egt needs a toolchain w/ C++, gcc >= 9, wchar"
1111
depends on !BR2_INSTALL_LIBSTDCPP || \
12-
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || \
12+
!BR2_TOOLCHAIN_GCC_AT_LEAST_9 || \
1313
!BR2_USE_WCHAR
1414

1515
if BR2_PACKAGE_EGT
@@ -31,6 +31,14 @@ config BR2_PACKAGE_EGT_MEDIA_SUPPORT
3131
help
3232
If unsure, say Y.
3333

34+
config BR2_PACKAGE_EGT_SOUNDEFFECT_SUPPORT
35+
bool "Compile with soundeffect support"
36+
default y
37+
select BR2_PACKAGE_ALSA_LIB
38+
select BR2_PACKAGE_LIBSNDFILE
39+
help
40+
If unsure, say Y.
41+
3442
config BR2_PACKAGE_EGT_CHART_SUPPORT
3543
bool "Compile with chart support"
3644
default y

package/egt/egt.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
################################################################################
66

7-
EGT_VERSION = 1.10
7+
EGT_VERSION = 1.11-rc3
88
EGT_SITE = https://github.com/linux4sam/egt.git
99
EGT_SITE_METHOD = git
1010
EGT_GIT_SUBMODULES = YES

package/libplanes/libplanes.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
################################################################################
66

7-
LIBPLANES_VERSION = v1.0.5
7+
LIBPLANES_VERSION = v1.1.0-rc1
88
LIBPLANES_SITE = $(call github,linux4sam,libplanes,$(LIBPLANES_VERSION))
99
LIBPLANES_LICENSE = MIT
1010
LIBPLANES_LICENSE_FILES = COPYING

0 commit comments

Comments
 (0)