Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 01/10] package/python3: add optional support for lzma
@ 2016-10-09 12:46 Bernd Kuhls
  2016-10-09 12:46 ` [Buildroot] [PATCH v4 02/10] package/python-couchdb: new package Bernd Kuhls
                   ` (9 more replies)
  0 siblings, 10 replies; 20+ messages in thread
From: Bernd Kuhls @ 2016-10-09 12:46 UTC (permalink / raw)
  To: buildroot

Needed by the upcoming python-mwscrape2slob package.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
v4: no changes
v3: no changes, included in mwscrape2slob patch series
v2: never released

 package/python3/Config.in  | 6 ++++++
 package/python3/python3.mk | 4 ++++
 2 files changed, 10 insertions(+)

diff --git a/package/python3/Config.in b/package/python3/Config.in
index 0f4fc88..29ee5e3 100644
--- a/package/python3/Config.in
+++ b/package/python3/Config.in
@@ -98,6 +98,12 @@ config BR2_PACKAGE_PYTHON3_PYEXPAT
 	help
 	  pyexpat and xml libraries for Python3.
 
+config BR2_PACKAGE_PYTHON3_XZ
+	select BR2_PACKAGE_XZ
+	bool "xz module"
+	help
+	  xz (a.k.a lzma) module for Python3
+
 config BR2_PACKAGE_PYTHON3_ZLIB
 	bool "zlib module"
 	select BR2_PACKAGE_ZLIB
diff --git a/package/python3/python3.mk b/package/python3/python3.mk
index 393b9fb..b3f31c0 100644
--- a/package/python3/python3.mk
+++ b/package/python3/python3.mk
@@ -103,6 +103,10 @@ ifeq ($(BR2_PACKAGE_PYTHON3_BZIP2),y)
 PYTHON3_DEPENDENCIES += bzip2
 endif
 
+ifeq ($(BR2_PACKAGE_PYTHON3_XZ),y)
+PYTHON3_DEPENDENCIES += xz
+endif
+
 ifeq ($(BR2_PACKAGE_PYTHON3_ZLIB),y)
 PYTHON3_DEPENDENCIES += zlib
 endif
-- 
2.9.3

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

end of thread, other threads:[~2016-10-09 21:05 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-09 12:46 [Buildroot] [PATCH v4 01/10] package/python3: add optional support for lzma Bernd Kuhls
2016-10-09 12:46 ` [Buildroot] [PATCH v4 02/10] package/python-couchdb: new package Bernd Kuhls
2016-10-09 20:52   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 03/10] package/python-futures: " Bernd Kuhls
2016-10-09 20:52   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 04/10] package/python-pylru: " Bernd Kuhls
2016-10-09 20:55   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 05/10] package/python-mwclient: " Bernd Kuhls
2016-10-09 13:05   ` Yegor Yefremov
2016-10-09 20:56   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 06/10] package/python-mwscrape: " Bernd Kuhls
2016-10-09 21:00   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 07/10] package/python-cssutils: " Bernd Kuhls
2016-10-09 21:05   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 08/10] package/python-pyicu: " Bernd Kuhls
2016-10-09 21:05   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 09/10] package/python-slob: " Bernd Kuhls
2016-10-09 21:05   ` Thomas Petazzoni
2016-10-09 12:46 ` [Buildroot] [PATCH v4 10/10] package/python-mwscrape2slob: " Bernd Kuhls
2016-10-09 20:50 ` [Buildroot] [PATCH v4 01/10] package/python3: add optional support for lzma Thomas Petazzoni

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