From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@buildroot.org
Cc: Titouan Christophe <titouanchristophe@gmail.com>,
Julien Olivain <ju.o@free.fr>,
Ricardo Martincoski <ricardo.martincoski@gmail.com>
Subject: [Buildroot] [PATCH 001/107] support/testing: drop python2 tests
Date: Wed, 9 Feb 2022 17:50:27 +0100 [thread overview]
Message-ID: <20220209165213.4498-2-peter@korsgaard.com> (raw)
In-Reply-To: <20220209165213.4498-1-peter@korsgaard.com>
Python2 for the target is about to get removed, so drop the tests using it.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
.../tests/package/sample_python_subprocess32.py | 6 ------
support/testing/tests/package/test_bmap_tools.py | 8 --------
support/testing/tests/package/test_crudini.py | 8 --------
support/testing/tests/package/test_libftdi1.py | 12 ------------
support/testing/tests/package/test_python.py | 14 --------------
support/testing/tests/package/test_python_argh.py | 9 ---------
.../testing/tests/package/test_python_bitstring.py | 10 ----------
support/testing/tests/package/test_python_can.py | 11 -----------
support/testing/tests/package/test_python_cbor.py | 11 -----------
support/testing/tests/package/test_python_click.py | 9 ---------
.../tests/package/test_python_constantly.py | 10 ----------
support/testing/tests/package/test_python_gnupg.py | 10 ----------
.../tests/package/test_python_incremental.py | 11 -----------
.../testing/tests/package/test_python_passlib.py | 11 -----------
.../testing/tests/package/test_python_pexpect.py | 10 ----------
.../testing/tests/package/test_python_pynacl.py | 11 -----------
.../testing/tests/package/test_python_pyyaml.py | 11 -----------
.../tests/package/test_python_subprocess32.py | 11 -----------
.../testing/tests/package/test_python_ubjson.py | 11 -----------
19 files changed, 194 deletions(-)
delete mode 100644 support/testing/tests/package/sample_python_subprocess32.py
delete mode 100644 support/testing/tests/package/test_python_subprocess32.py
diff --git a/support/testing/tests/package/sample_python_subprocess32.py b/support/testing/tests/package/sample_python_subprocess32.py
deleted file mode 100644
index 8579745cc8..0000000000
--- a/support/testing/tests/package/sample_python_subprocess32.py
+++ /dev/null
@@ -1,6 +0,0 @@
-import subprocess32
-
-output = subprocess32.check_output(["ls", "-l", "/dev/null"])
-print(output)
-assert("/dev/null" in output)
-assert("No such" not in output)
diff --git a/support/testing/tests/package/test_bmap_tools.py b/support/testing/tests/package/test_bmap_tools.py
index baa23154f8..a179027633 100644
--- a/support/testing/tests/package/test_bmap_tools.py
+++ b/support/testing/tests/package/test_bmap_tools.py
@@ -45,14 +45,6 @@ class TestBmapTools(BRTest):
self.assertRunOk(cmd, timeout=20)
-class TestPy2BmapTools(TestBmapTools):
- __test__ = True
- config = TestBmapTools.config + \
- """
- BR2_PACKAGE_PYTHON=y
- """
-
-
class TestPy3BmapTools(TestBmapTools):
__test__ = True
config = TestBmapTools.config + \
diff --git a/support/testing/tests/package/test_crudini.py b/support/testing/tests/package/test_crudini.py
index e320d3207e..470a714eb6 100644
--- a/support/testing/tests/package/test_crudini.py
+++ b/support/testing/tests/package/test_crudini.py
@@ -33,14 +33,6 @@ class TestCrudiniBase(TestPythonPackageBase):
self.assertEqual(out, ['this-is-the-magic-value'])
-class TestCrudiniPy2(TestCrudiniBase):
- __test__ = True
- config = TestCrudiniBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- """
-
-
class TestCrudiniPy3(TestCrudiniBase):
__test__ = True
config = TestCrudiniBase.config + \
diff --git a/support/testing/tests/package/test_libftdi1.py b/support/testing/tests/package/test_libftdi1.py
index 78c928484c..5c29dea04f 100644
--- a/support/testing/tests/package/test_libftdi1.py
+++ b/support/testing/tests/package/test_libftdi1.py
@@ -1,18 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Libftdi1(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_LIBFTDI1=y
- BR2_PACKAGE_LIBFTDI1_PYTHON_BINDINGS=y
- """
- sample_scripts = ["tests/package/sample_libftdi1.py"]
- timeout = 40
-
-
class TestPythonPy3Libftdi1(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python.py b/support/testing/tests/package/test_python.py
index 60da8765c4..f29aff6624 100644
--- a/support/testing/tests/package/test_python.py
+++ b/support/testing/tests/package/test_python.py
@@ -39,20 +39,6 @@ class TestPythonBase(infra.basetest.BRTest):
self.assertEqual(exit_code, 1)
-class TestPython2(TestPythonBase):
- config = TestPythonBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- """
-
- def test_run(self):
- self.login()
- self.version_test("Python 2")
- self.math_floor_test()
- self.libc_time_test()
- self.zlib_test()
-
-
class TestPython3(TestPythonBase):
config = TestPythonBase.config + \
"""
diff --git a/support/testing/tests/package/test_python_argh.py b/support/testing/tests/package/test_python_argh.py
index de4b4cbe74..887d9acd46 100644
--- a/support/testing/tests/package/test_python_argh.py
+++ b/support/testing/tests/package/test_python_argh.py
@@ -27,15 +27,6 @@ class TestPythonArgh(TestPythonPackageBase):
self.assertEqual(exit_code, 2)
-class TestPythonPy2Argh(TestPythonArgh):
- __test__ = True
- config = TestPythonArgh.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_ARGH=y
- """
-
-
class TestPythonPy3Argh(TestPythonArgh):
__test__ = True
config = TestPythonArgh.config + \
diff --git a/support/testing/tests/package/test_python_bitstring.py b/support/testing/tests/package/test_python_bitstring.py
index 63b3fdb69c..bd358a2fc5 100644
--- a/support/testing/tests/package/test_python_bitstring.py
+++ b/support/testing/tests/package/test_python_bitstring.py
@@ -1,16 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Bitstring(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_BITSTRING=y
- """
- sample_scripts = ["tests/package/sample_python_bitstring.py"]
-
-
class TestPythonPy3Bitstring(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_can.py b/support/testing/tests/package/test_python_can.py
index d509d05dbb..dba5539c5d 100644
--- a/support/testing/tests/package/test_python_can.py
+++ b/support/testing/tests/package/test_python_can.py
@@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Can(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_CAN=y
- """
- sample_scripts = ["tests/package/sample_python_can.py"]
- timeout = 40
-
-
class TestPythonPy3Can(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_cbor.py b/support/testing/tests/package/test_python_cbor.py
index 9da3503763..23a1e3e701 100644
--- a/support/testing/tests/package/test_python_cbor.py
+++ b/support/testing/tests/package/test_python_cbor.py
@@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Cbor(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_CBOR=y
- """
- sample_scripts = ["tests/package/sample_python_cbor_enc.py",
- "tests/package/sample_python_cbor_dec.py"]
-
-
class TestPythonPy3Cbor(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_click.py b/support/testing/tests/package/test_python_click.py
index db57d3aa9f..0ee9702cce 100644
--- a/support/testing/tests/package/test_python_click.py
+++ b/support/testing/tests/package/test_python_click.py
@@ -26,15 +26,6 @@ class TestPythonClick(TestPythonPackageBase):
self.assertEqual(exit_code, 2)
-class TestPythonPy2Click(TestPythonClick):
- __test__ = True
- config = TestPythonClick.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_CLICK=y
- """
-
-
class TestPythonPy3Click(TestPythonClick):
__test__ = True
config = TestPythonClick.config + \
diff --git a/support/testing/tests/package/test_python_constantly.py b/support/testing/tests/package/test_python_constantly.py
index 5be01c4f8c..edcb9bfd69 100644
--- a/support/testing/tests/package/test_python_constantly.py
+++ b/support/testing/tests/package/test_python_constantly.py
@@ -1,16 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Constantly(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_CONSTANTLY=y
- """
- sample_scripts = ["tests/package/sample_python_constantly.py"]
-
-
class TestPythonPy3Constantly(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_gnupg.py b/support/testing/tests/package/test_python_gnupg.py
index 0c71f6b6d0..8861115130 100644
--- a/support/testing/tests/package/test_python_gnupg.py
+++ b/support/testing/tests/package/test_python_gnupg.py
@@ -1,16 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2GnuPG(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_GNUPG=y
- """
- sample_scripts = ["tests/package/sample_python_gnupg.py"]
-
-
class TestPythonPy3GnuPG(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_incremental.py b/support/testing/tests/package/test_python_incremental.py
index 49800d8937..4c53d61321 100644
--- a/support/testing/tests/package/test_python_incremental.py
+++ b/support/testing/tests/package/test_python_incremental.py
@@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Incremental(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_INCREMENTAL=y
- """
- sample_scripts = ["tests/package/sample_python_incremental.py"]
- timeout = 30
-
-
class TestPythonPy3Incremental(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_passlib.py b/support/testing/tests/package/test_python_passlib.py
index 7c85882bf8..e12e86d91b 100644
--- a/support/testing/tests/package/test_python_passlib.py
+++ b/support/testing/tests/package/test_python_passlib.py
@@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Passlib(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_PASSLIB=y
- """
- sample_scripts = ["tests/package/sample_python_passlib.py"]
- timeout = 30
-
-
class TestPythonPy3Passlib(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_pexpect.py b/support/testing/tests/package/test_python_pexpect.py
index ba31cdbdbe..70037a7d3c 100644
--- a/support/testing/tests/package/test_python_pexpect.py
+++ b/support/testing/tests/package/test_python_pexpect.py
@@ -1,16 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Pexpect(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_PEXPECT=y
- """
- sample_scripts = ["tests/package/sample_python_pexpect.py"]
-
-
class TestPythonPy3Pexpect(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_pynacl.py b/support/testing/tests/package/test_python_pynacl.py
index f4dd54940a..cef8a7e780 100644
--- a/support/testing/tests/package/test_python_pynacl.py
+++ b/support/testing/tests/package/test_python_pynacl.py
@@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Pynacl(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_PYNACL=y
- """
- sample_scripts = ["tests/package/sample_python_pynacl.py"]
- timeout = 10
-
-
class TestPythonPy3Pynacl(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_pyyaml.py b/support/testing/tests/package/test_python_pyyaml.py
index cd45a57b86..9d0a351f72 100644
--- a/support/testing/tests/package/test_python_pyyaml.py
+++ b/support/testing/tests/package/test_python_pyyaml.py
@@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Pyyaml(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_PYYAML=y
- """
- sample_scripts = ["tests/package/sample_python_pyyaml_enc.py",
- "tests/package/sample_python_pyyaml_dec.py"]
-
-
class TestPythonPy3Pyyaml(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_subprocess32.py b/support/testing/tests/package/test_python_subprocess32.py
deleted file mode 100644
index d2878046d1..0000000000
--- a/support/testing/tests/package/test_python_subprocess32.py
+++ /dev/null
@@ -1,11 +0,0 @@
-from tests.package.test_python import TestPythonPackageBase
-
-
-class TestPythonPy2Subprocess32(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_SUBPROCESS32=y
- """
- sample_scripts = ["tests/package/sample_python_subprocess32.py"]
diff --git a/support/testing/tests/package/test_python_ubjson.py b/support/testing/tests/package/test_python_ubjson.py
index 85c707e292..a15dbd54b8 100644
--- a/support/testing/tests/package/test_python_ubjson.py
+++ b/support/testing/tests/package/test_python_ubjson.py
@@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
-class TestPythonPy2Ubjson(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_UBJSON=y
- """
- sample_scripts = ["tests/package/sample_python_ubjson_enc.py",
- "tests/package/sample_python_ubjson_dec.py"]
-
-
class TestPythonPy3Ubjson(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
--
2.20.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2022-02-09 17:09 UTC|newest]
Thread overview: 119+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-09 16:50 [Buildroot] [PATCH 000/107] Drop python 2.7 Peter Korsgaard
2022-02-09 16:50 ` Peter Korsgaard [this message]
2022-02-09 16:50 ` [Buildroot] [PATCH 002/107] package/python: drop target package Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 003/107] package/alsa-lib: drop python2 support Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 004/107] package/bmap-tools: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 005/107] package/boost: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 006/107] package/cifs-utils: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 007/107] package/cracklib: move python support to python3 Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 008/107] package/crudini: drop python2 support Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 009/107] package/dbus-python: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 010/107] package/docker-compose: drop reference to BR2_PACKAGE_PYTHON Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 011/107] package/dstat: drop python2 support Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 012/107] package/evemu: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 013/107] package/fail2ban: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 014/107] package/glsandbox-player: drop reference to python2 Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 015/107] package/gpsd: drop python2 support Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 016/107] package/gst1-devtools: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 017/107] package/i2c-tools: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 018/107] package/iotop: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 019/107] package/jack2: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 020/107] package/kmod: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 021/107] package/libcec: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 022/107] package/libevent: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 023/107] package/libftdi1: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 024/107] package/libiio: " Peter Korsgaard
2022-02-14 11:59 ` Paul Cercueil
2022-02-09 16:50 ` [Buildroot] [PATCH 025/107] package/libpwquality: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 026/107] package/libsigrokdecode: drop reference to python2 Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 027/107] package/libsoc: drop python2 support Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 028/107] package/lttng-libust: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 029/107] package/networkd-dispatcher: drop reference to python2 Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 030/107] package/nftables: drop python2 support Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 031/107] package/ogre: " Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 032/107] package/opkg-utils: drop reference to python2 Peter Korsgaard
2022-02-09 16:50 ` [Buildroot] [PATCH 033/107] package/owfs: drop python support Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 034/107] package/python-aenum: drop python2 support Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 035/107] package/python-argon2-cffi: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 036/107] package/python-bsdiff4: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 037/107] package/python-can: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 038/107] package/python-couchdb: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 039/107] package/python-dicttoxml: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 040/107] package/python-dpkt: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 041/107] package/python-esptool: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 042/107] package/python-fire: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 043/107] package/python-flask: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 044/107] package/python-jsonschema: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 045/107] package/python-libconfig: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 046/107] package/python-logbook: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 047/107] package/python-lxml: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 048/107] package/python-m2crypto: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 049/107] package/python-pexpect: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 050/107] package/python-pickleshare: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 051/107] package/python-pymodbus: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 052/107] package/python-pyqrcode: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 053/107] package/python-pyqt5: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 054/107] package/python-pyroute2: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 055/107] package/python-pyudev: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 056/107] package/python-raven: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 057/107] package/python-reentry: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 058/107] package/python-remi: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 059/107] package/python-scapy: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 060/107] package/python-sentry-sdk: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 061/107] package/python-setuptools: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 062/107] package/python-sip: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 063/107] package/python-txtorcon: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 064/107] package/python-typing-extensions: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 065/107] package/python-urllib3: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 066/107] package/python-web2py: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 067/107] package/python-webob: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 068/107] package/python-websocket-client: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 069/107] package/python-werkzeug: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 070/107] package/python-whoosh: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 071/107] package/python-xlrd: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 072/107] package/python-xmltodict: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 073/107] package/python3: drop references to python2 Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 074/107] package/ranger: drop python2 support Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 075/107] package/selinux-python: drop reference to python2 Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 076/107] package/snmpclitools: drop python2 support Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 077/107] package/supervisor: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 078/107] package/suricata: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 079/107] package/syslog-ng: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 080/107] package/tovid: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 081/107] package/trace-cmd: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 082/107] package/util-linux: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 083/107] package/zfs: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 084/107] package/python: drop host package Peter Korsgaard
2022-02-09 21:34 ` Yann E. MORIN
2022-02-09 16:51 ` [Buildroot] [PATCH 085/107] package/python-backports-abc: drop python2 specific package Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 086/107] package/python-backports-shutil-get-terminal-size: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 087/107] package/python-backports-ssl-match-hostname: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 088/107] package/python-futures: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 089/107] package/python-id3: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 090/107] package/python-ipaddr: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 091/107] package/python-ipaddress: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 092/107] package/python-mad: " Peter Korsgaard
2022-02-09 16:51 ` [Buildroot] [PATCH 093/107] package/python-nfc: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 094/107] package/python-pam: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 095/107] package/python-pathlib2: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 096/107] package/python-pypcap: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 097/107] package/python-pyro: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 098/107] package/python-singledispatch: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 099/107] package/python-subprocess32: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 100/107] package/python-typing: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 101/107] package/python-yieldfrom: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 102/107] package/python-configobj: " Peter Korsgaard
2022-02-09 21:36 ` Yann E. MORIN
2022-02-09 21:56 ` Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 103/107] package/python-dialog: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 104/107] package/python-enum: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 105/107] package/python-enum34: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 106/107] package/python-functools32: " Peter Korsgaard
2022-02-09 16:52 ` [Buildroot] [PATCH 107/107] docs/manual: drop python2 references Peter Korsgaard
2022-02-09 21:33 ` [Buildroot] [PATCH 000/107] Drop python 2.7 Yann E. MORIN
2022-02-10 17:15 ` Arnout Vandecappelle
2022-02-10 17:31 ` Marcus Hoffmann
2022-02-10 21:55 ` Peter Korsgaard
2022-02-10 20:37 ` Yann E. MORIN
2022-02-10 21:18 ` Peter Korsgaard
2022-02-10 21:59 ` James Hilliard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220209165213.4498-2-peter@korsgaard.com \
--to=peter@korsgaard.com \
--cc=buildroot@buildroot.org \
--cc=ju.o@free.fr \
--cc=ricardo.martincoski@gmail.com \
--cc=titouanchristophe@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox