All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target
@ 2020-09-12 11:56 Titouan Christophe
  2020-09-12 11:56 ` [Buildroot] [PATCH 2/2] package/python: " Titouan Christophe
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Titouan Christophe @ 2020-09-12 11:56 UTC (permalink / raw)
  To: buildroot

Buildroot generates Linux systems, so there is no need to have
MS Windows executables in there.

This reduces the target filesystem size by about 2MB:
$ du -hcs usr/lib/python3.8/distutils/command/wininst-*.exe
60K usr/lib/python3.8/distutils/command/wininst-6.0.exe
64K usr/lib/python3.8/distutils/command/wininst-7.1.exe
60K usr/lib/python3.8/distutils/command/wininst-8.0.exe
192K    usr/lib/python3.8/distutils/command/wininst-9.0.exe
220K    usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe
188K    usr/lib/python3.8/distutils/command/wininst-10.0.exe
220K    usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe
448K    usr/lib/python3.8/distutils/command/wininst-14.0.exe
576K    usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe
2,0M    total

Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
---
 package/python3/python3.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/python3/python3.mk b/package/python3/python3.mk
index 31e7ca3d3a..3c2f71e448 100644
--- a/package/python3/python3.mk
+++ b/package/python3/python3.mk
@@ -212,6 +212,7 @@ define PYTHON3_REMOVE_USELESS_FILES
 	rm -f $(TARGET_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR)m-config
 	rm -f $(TARGET_DIR)/usr/bin/python3-config
 	rm -f $(TARGET_DIR)/usr/bin/smtpd.py.3
+	rm -f $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/distutils/command/wininst*.exe
 	for i in `find $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/config-$(PYTHON3_VERSION_MAJOR)m-*/ \
 		-type f -not -name Makefile` ; do \
 		rm -f $$i ; \
-- 
2.25.3

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

* [Buildroot] [PATCH 2/2] package/python: do not install MS Windows installers on the target
  2020-09-12 11:56 [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target Titouan Christophe
@ 2020-09-12 11:56 ` Titouan Christophe
  2020-09-15 18:10   ` Peter Korsgaard
  2020-09-13 14:21 ` [Buildroot] [PATCH 1/2] package/python3: " Thomas Petazzoni
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Titouan Christophe @ 2020-09-12 11:56 UTC (permalink / raw)
  To: buildroot

Buildroot generates Linux systems, so there is no need to have
MS Windows executables in there.

This reduces the target filesystem size by about 600kB:
$ du -hcs usr/lib/python2.7/distutils/command/wininst-*.exe
60K usr/lib/python2.7/distutils/command/wininst-6.0.exe
64K usr/lib/python2.7/distutils/command/wininst-7.1.exe
60K usr/lib/python2.7/distutils/command/wininst-8.0.exe
192K    usr/lib/python2.7/distutils/command/wininst-9.0.exe
220K    usr/lib/python2.7/distutils/command/wininst-9.0-amd64.exe
596K    total

Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
---
 package/python/python.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/python/python.mk b/package/python/python.mk
index ccaaadd012..a08732cb22 100644
--- a/package/python/python.mk
+++ b/package/python/python.mk
@@ -199,6 +199,7 @@ define PYTHON_REMOVE_USELESS_FILES
 	rm -f $(TARGET_DIR)/usr/bin/python2-config
 	rm -f $(TARGET_DIR)/usr/bin/python-config
 	rm -f $(TARGET_DIR)/usr/bin/smtpd.py
+	rm -f $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/distutils/command/wininst*.exe
 	for i in `find $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/config/ \
 		-type f -not -name pyconfig.h -a -not -name Makefile` ; do \
 		rm -f $$i ; \
-- 
2.25.3

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

* [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target
  2020-09-12 11:56 [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target Titouan Christophe
  2020-09-12 11:56 ` [Buildroot] [PATCH 2/2] package/python: " Titouan Christophe
@ 2020-09-13 14:21 ` Thomas Petazzoni
  2020-09-15 16:03 ` Peter Korsgaard
  2020-09-15 18:10 ` Peter Korsgaard
  3 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2020-09-13 14:21 UTC (permalink / raw)
  To: buildroot

On Sat, 12 Sep 2020 13:56:21 +0200
Titouan Christophe <titouan.christophe@railnova.eu> wrote:

> Buildroot generates Linux systems, so there is no need to have
> MS Windows executables in there.
> 
> This reduces the target filesystem size by about 2MB:
> $ du -hcs usr/lib/python3.8/distutils/command/wininst-*.exe
> 60K usr/lib/python3.8/distutils/command/wininst-6.0.exe
> 64K usr/lib/python3.8/distutils/command/wininst-7.1.exe
> 60K usr/lib/python3.8/distutils/command/wininst-8.0.exe
> 192K    usr/lib/python3.8/distutils/command/wininst-9.0.exe
> 220K    usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe
> 188K    usr/lib/python3.8/distutils/command/wininst-10.0.exe
> 220K    usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe
> 448K    usr/lib/python3.8/distutils/command/wininst-14.0.exe
> 576K    usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe
> 2,0M    total
> 
> Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
> ---
>  package/python3/python3.mk | 1 +
>  1 file changed, 1 insertion(+)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target
  2020-09-12 11:56 [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target Titouan Christophe
  2020-09-12 11:56 ` [Buildroot] [PATCH 2/2] package/python: " Titouan Christophe
  2020-09-13 14:21 ` [Buildroot] [PATCH 1/2] package/python3: " Thomas Petazzoni
@ 2020-09-15 16:03 ` Peter Korsgaard
  2020-09-15 18:10 ` Peter Korsgaard
  3 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2020-09-15 16:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Titouan" == Titouan Christophe <titouan.christophe@railnova.eu> writes:

 > Buildroot generates Linux systems, so there is no need to have
 > MS Windows executables in there.

 > This reduces the target filesystem size by about 2MB:
 > $ du -hcs usr/lib/python3.8/distutils/command/wininst-*.exe
 > 60K usr/lib/python3.8/distutils/command/wininst-6.0.exe
 > 64K usr/lib/python3.8/distutils/command/wininst-7.1.exe
 > 60K usr/lib/python3.8/distutils/command/wininst-8.0.exe
 > 192K    usr/lib/python3.8/distutils/command/wininst-9.0.exe
 > 220K    usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe
 > 188K    usr/lib/python3.8/distutils/command/wininst-10.0.exe
 > 220K    usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe
 > 448K    usr/lib/python3.8/distutils/command/wininst-14.0.exe
 > 576K    usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe
 > 2,0M    total

 > Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>

Funky!

It seems like we need to do something similar for python{,3}-setuptools:

# find /usr/ -name \*.exe | grep -v wininst | xargs ls -lahS
-rw-rw-r--    1 root     root       73.5K Sep  8 14:28 /usr/lib/python3.8/site-packages/setuptools/gui-64.exe
-rw-rw-r--    1 root     root       73.0K Sep  8 14:28 /usr/lib/python3.8/site-packages/setuptools/cli-64.exe
-rw-rw-r--    1 root     root       64.0K Sep  8 14:28 /usr/lib/python3.8/site-packages/setuptools/cli-32.exe
-rw-rw-r--    1 root     root       64.0K Sep  8 14:28 /usr/lib/python3.8/site-packages/setuptools/cli.exe
-rw-rw-r--    1 root     root       64.0K Sep  8 14:28 /usr/lib/python3.8/site-packages/setuptools/gui-32.exe
-rw-rw-r--    1 root     root       64.0K Sep  8 14:28 /usr/lib/python3.8/site-packages/setuptools/gui.exe

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target
  2020-09-12 11:56 [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target Titouan Christophe
                   ` (2 preceding siblings ...)
  2020-09-15 16:03 ` Peter Korsgaard
@ 2020-09-15 18:10 ` Peter Korsgaard
  3 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2020-09-15 18:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Titouan" == Titouan Christophe <titouan.christophe@railnova.eu> writes:

 > Buildroot generates Linux systems, so there is no need to have
 > MS Windows executables in there.

 > This reduces the target filesystem size by about 2MB:
 > $ du -hcs usr/lib/python3.8/distutils/command/wininst-*.exe
 > 60K usr/lib/python3.8/distutils/command/wininst-6.0.exe
 > 64K usr/lib/python3.8/distutils/command/wininst-7.1.exe
 > 60K usr/lib/python3.8/distutils/command/wininst-8.0.exe
 > 192K    usr/lib/python3.8/distutils/command/wininst-9.0.exe
 > 220K    usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe
 > 188K    usr/lib/python3.8/distutils/command/wininst-10.0.exe
 > 220K    usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe
 > 448K    usr/lib/python3.8/distutils/command/wininst-14.0.exe
 > 576K    usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe
 > 2,0M    total

 > Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>

Committed to 2020.02.x, 2020.05.x and 2020.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/python: do not install MS Windows installers on the target
  2020-09-12 11:56 ` [Buildroot] [PATCH 2/2] package/python: " Titouan Christophe
@ 2020-09-15 18:10   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2020-09-15 18:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Titouan" == Titouan Christophe <titouan.christophe@railnova.eu> writes:

 > Buildroot generates Linux systems, so there is no need to have
 > MS Windows executables in there.

 > This reduces the target filesystem size by about 600kB:
 > $ du -hcs usr/lib/python2.7/distutils/command/wininst-*.exe
 > 60K usr/lib/python2.7/distutils/command/wininst-6.0.exe
 > 64K usr/lib/python2.7/distutils/command/wininst-7.1.exe
 > 60K usr/lib/python2.7/distutils/command/wininst-8.0.exe
 > 192K    usr/lib/python2.7/distutils/command/wininst-9.0.exe
 > 220K    usr/lib/python2.7/distutils/command/wininst-9.0-amd64.exe
 > 596K    total

 > Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>

Committed to 2020.02.x, 2020.05.x and 2020.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-09-15 18:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-12 11:56 [Buildroot] [PATCH 1/2] package/python3: do not install MS Windows installers on the target Titouan Christophe
2020-09-12 11:56 ` [Buildroot] [PATCH 2/2] package/python: " Titouan Christophe
2020-09-15 18:10   ` Peter Korsgaard
2020-09-13 14:21 ` [Buildroot] [PATCH 1/2] package/python3: " Thomas Petazzoni
2020-09-15 16:03 ` Peter Korsgaard
2020-09-15 18:10 ` Peter Korsgaard

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.