* [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency
@ 2022-09-06 10:23 Köry Maincent via buildroot
2022-09-06 10:23 ` [Buildroot] [PATCH v2 2/2] package/python-pillow: remove host-python-pillow support Köry Maincent via buildroot
2022-09-06 11:47 ` [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency Yann E. MORIN
0 siblings, 2 replies; 4+ messages in thread
From: Köry Maincent via buildroot @ 2022-09-06 10:23 UTC (permalink / raw)
To: buildroot
Cc: Kory Maincent, Etienne Carriere, yann.morin.1998,
thomas.petazzoni
From: Kory Maincent <kory.maincent@bootlin.com>
host-python-pillow dependency was needed to build the STMicroelecronics
version during its rc versions but is is not needed anymore in the release.
It is then useless to keep this dependency.
Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
---
boot/optee-os/Config.in | 7 -------
boot/optee-os/optee-os.mk | 4 ----
2 files changed, 11 deletions(-)
diff --git a/boot/optee-os/Config.in b/boot/optee-os/Config.in
index db7a93c10c..5244700bc2 100644
--- a/boot/optee-os/Config.in
+++ b/boot/optee-os/Config.in
@@ -91,13 +91,6 @@ config BR2_TARGET_OPTEE_OS_NEEDS_PYTHON_CRYPTOGRAPHY
python-cryptography. Select this option if optee-os needs
python-cryptography to be built.
-config BR2_TARGET_OPTEE_OS_NEEDS_PYTHON_PILLOW
- bool "OP-TEE OS needs host-python-pillow"
- help
- Some specific OP-TEE OS versions may use python-pillow to
- build the Trusted User Interface feature. Select this
- option if optee-os need python-pillow to be built.
-
config BR2_TARGET_OPTEE_OS_CORE
bool "Build core"
default y
diff --git a/boot/optee-os/optee-os.mk b/boot/optee-os/optee-os.mk
index 136c4b2401..38b0d367ef 100644
--- a/boot/optee-os/optee-os.mk
+++ b/boot/optee-os/optee-os.mk
@@ -36,10 +36,6 @@ else
OPTEE_OS_DEPENDENCIES += host-python-pycryptodomex
endif
-ifeq ($(BR2_TARGET_OPTEE_OS_NEEDS_PYTHON_PILLOW),y)
-OPTEE_OS_DEPENDENCIES += host-python-pillow
-endif
-
ifeq ($(BR2_TARGET_OPTEE_OS_NEEDS_DTC),y)
OPTEE_OS_DEPENDENCIES += host-dtc
endif
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v2 2/2] package/python-pillow: remove host-python-pillow support
2022-09-06 10:23 [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency Köry Maincent via buildroot
@ 2022-09-06 10:23 ` Köry Maincent via buildroot
2022-09-06 11:48 ` Yann E. MORIN
2022-09-06 11:47 ` [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency Yann E. MORIN
1 sibling, 1 reply; 4+ messages in thread
From: Köry Maincent via buildroot @ 2022-09-06 10:23 UTC (permalink / raw)
To: buildroot
Cc: Kory Maincent, Asaf Kahlon, Angelo Compagnucci, thomas.petazzoni,
yann.morin.1998
From: Kory Maincent <kory.maincent@bootlin.com>
host-python-pillow was needed to build optee-os from STMicroelecronics
during its rc versions but is is not needed anymore in the release.
It is then useless to keep this support.
Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
---
package/python-pillow/python-pillow.mk | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/package/python-pillow/python-pillow.mk b/package/python-pillow/python-pillow.mk
index 7cff54e9ea..31725a3e46 100644
--- a/package/python-pillow/python-pillow.mk
+++ b/package/python-pillow/python-pillow.mk
@@ -71,18 +71,4 @@ else
PYTHON_PILLOW_BUILD_OPTS += --disable-webp --disable-webpmux
endif
-HOST_PYTHON_PILLOW_DEPENDENCIES = host-pkgconf
-HOST_PYTHON_PILLOW_BUILD_OPTS = \
- build_ext \
- --disable-freetype \
- --disable-jpeg \
- --disable-lcms \
- --disable-xcb \
- --disable-jpeg2000 \
- --disable-tiff \
- --disable-webp \
- --disable-webpmux
-HOST_PYTHON_PILLOW_INSTALL_OPTS = $(HOST_PYTHON_PILLOW_BUILD_OPTS)
-
$(eval $(python-package))
-$(eval $(host-python-package))
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency
2022-09-06 10:23 [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency Köry Maincent via buildroot
2022-09-06 10:23 ` [Buildroot] [PATCH v2 2/2] package/python-pillow: remove host-python-pillow support Köry Maincent via buildroot
@ 2022-09-06 11:47 ` Yann E. MORIN
1 sibling, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2022-09-06 11:47 UTC (permalink / raw)
To: Köry Maincent; +Cc: Etienne Carriere, thomas.petazzoni, buildroot
Köry, All,
On 2022-09-06 12:23 +0200, Köry Maincent via buildroot spake thusly:
> From: Kory Maincent <kory.maincent@bootlin.com>
>
> host-python-pillow dependency was needed to build the STMicroelecronics
> version during its rc versions but is is not needed anymore in the release.
> It is then useless to keep this dependency.
>
> Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
You forgot to add an entry in Config.in.legacy. But since that option
was never part of a release, we indeed do not want to add a legacy
entry.
Applied to master (yes, master on purpose), thanks.
Regards,
Yann E. MORIN.
> ---
> boot/optee-os/Config.in | 7 -------
> boot/optee-os/optee-os.mk | 4 ----
> 2 files changed, 11 deletions(-)
>
> diff --git a/boot/optee-os/Config.in b/boot/optee-os/Config.in
> index db7a93c10c..5244700bc2 100644
> --- a/boot/optee-os/Config.in
> +++ b/boot/optee-os/Config.in
> @@ -91,13 +91,6 @@ config BR2_TARGET_OPTEE_OS_NEEDS_PYTHON_CRYPTOGRAPHY
> python-cryptography. Select this option if optee-os needs
> python-cryptography to be built.
>
> -config BR2_TARGET_OPTEE_OS_NEEDS_PYTHON_PILLOW
> - bool "OP-TEE OS needs host-python-pillow"
> - help
> - Some specific OP-TEE OS versions may use python-pillow to
> - build the Trusted User Interface feature. Select this
> - option if optee-os need python-pillow to be built.
> -
> config BR2_TARGET_OPTEE_OS_CORE
> bool "Build core"
> default y
> diff --git a/boot/optee-os/optee-os.mk b/boot/optee-os/optee-os.mk
> index 136c4b2401..38b0d367ef 100644
> --- a/boot/optee-os/optee-os.mk
> +++ b/boot/optee-os/optee-os.mk
> @@ -36,10 +36,6 @@ else
> OPTEE_OS_DEPENDENCIES += host-python-pycryptodomex
> endif
>
> -ifeq ($(BR2_TARGET_OPTEE_OS_NEEDS_PYTHON_PILLOW),y)
> -OPTEE_OS_DEPENDENCIES += host-python-pillow
> -endif
> -
> ifeq ($(BR2_TARGET_OPTEE_OS_NEEDS_DTC),y)
> OPTEE_OS_DEPENDENCIES += host-dtc
> endif
> --
> 2.25.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH v2 2/2] package/python-pillow: remove host-python-pillow support
2022-09-06 10:23 ` [Buildroot] [PATCH v2 2/2] package/python-pillow: remove host-python-pillow support Köry Maincent via buildroot
@ 2022-09-06 11:48 ` Yann E. MORIN
0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2022-09-06 11:48 UTC (permalink / raw)
To: Köry Maincent
Cc: Angelo Compagnucci, thomas.petazzoni, Asaf Kahlon, buildroot
Köry, All,
On 2022-09-06 12:23 +0200, Köry Maincent via buildroot spake thusly:
> From: Kory Maincent <kory.maincent@bootlin.com>
>
> host-python-pillow was needed to build optee-os from STMicroelecronics
> during its rc versions but is is not needed anymore in the release.
> It is then useless to keep this support.
>
> Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/python-pillow/python-pillow.mk | 14 --------------
> 1 file changed, 14 deletions(-)
>
> diff --git a/package/python-pillow/python-pillow.mk b/package/python-pillow/python-pillow.mk
> index 7cff54e9ea..31725a3e46 100644
> --- a/package/python-pillow/python-pillow.mk
> +++ b/package/python-pillow/python-pillow.mk
> @@ -71,18 +71,4 @@ else
> PYTHON_PILLOW_BUILD_OPTS += --disable-webp --disable-webpmux
> endif
>
> -HOST_PYTHON_PILLOW_DEPENDENCIES = host-pkgconf
> -HOST_PYTHON_PILLOW_BUILD_OPTS = \
> - build_ext \
> - --disable-freetype \
> - --disable-jpeg \
> - --disable-lcms \
> - --disable-xcb \
> - --disable-jpeg2000 \
> - --disable-tiff \
> - --disable-webp \
> - --disable-webpmux
> -HOST_PYTHON_PILLOW_INSTALL_OPTS = $(HOST_PYTHON_PILLOW_BUILD_OPTS)
> -
> $(eval $(python-package))
> -$(eval $(host-python-package))
> --
> 2.25.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-09-06 11:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-06 10:23 [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency Köry Maincent via buildroot
2022-09-06 10:23 ` [Buildroot] [PATCH v2 2/2] package/python-pillow: remove host-python-pillow support Köry Maincent via buildroot
2022-09-06 11:48 ` Yann E. MORIN
2022-09-06 11:47 ` [Buildroot] [PATCH v2 1/2] boot/optee-os: remove host-python-pillow build dependency Yann E. MORIN
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.