From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@buildroot.org
Subject: [Buildroot] [PATCH 094/107] package/python-pam: drop python2 specific package
Date: Wed, 9 Feb 2022 17:52:00 +0100 [thread overview]
Message-ID: <20220209165213.4498-95-peter@korsgaard.com> (raw)
In-Reply-To: <20220209165213.4498-1-peter@korsgaard.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
Config.in.legacy | 6 +
DEVELOPERS | 1 -
package/Config.in | 1 -
package/python-pam/0001-dealloc.patch | 25 ----
package/python-pam/0002-nofree.patch | 68 ---------
.../0003-memory-errors-CVE2012-1502.patch | 136 ------------------
package/python-pam/Config.in | 16 ---
package/python-pam/python-pam.hash | 3 -
package/python-pam/python-pam.mk | 16 ---
9 files changed, 6 insertions(+), 266 deletions(-)
delete mode 100644 package/python-pam/0001-dealloc.patch
delete mode 100644 package/python-pam/0002-nofree.patch
delete mode 100644 package/python-pam/0003-memory-errors-CVE2012-1502.patch
delete mode 100644 package/python-pam/Config.in
delete mode 100644 package/python-pam/python-pam.hash
delete mode 100644 package/python-pam/python-pam.mk
diff --git a/Config.in.legacy b/Config.in.legacy
index 80adf521f8..386f94e72b 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,12 @@ endif
comment "Legacy options removed in 2022.02"
+config BR2_PACKAGE_PYTHON_PAM
+ bool "python-pam removed"
+ select BR2_LEGACY
+ help
+ Package was removed together with python 2.7 support.
+
config BR2_PACKAGE_PYTHON_NFC
bool "python-nfc removed"
select BR2_LEGACY
diff --git a/DEVELOPERS b/DEVELOPERS
index 7b38d3c0f7..a6ea3793ea 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2248,7 +2248,6 @@ F: package/python-docker-pycreds/
F: package/python-enum/
F: package/python-enum34/
F: package/python-functools32/
-F: package/python-pam/
F: package/python-psutil/
F: package/python-request-id/
F: package/python-semver/
diff --git a/package/Config.in b/package/Config.in
index 8dc91becb0..73e8901a1d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1115,7 +1115,6 @@ menu "External python modules"
source "package/python-opcua-asyncio/Config.in"
source "package/python-packaging/Config.in"
source "package/python-paho-mqtt/Config.in"
- source "package/python-pam/Config.in"
source "package/python-paramiko/Config.in"
source "package/python-parso/Config.in"
source "package/python-passlib/Config.in"
diff --git a/package/python-pam/0001-dealloc.patch b/package/python-pam/0001-dealloc.patch
deleted file mode 100644
index dd4f9610c7..0000000000
--- a/package/python-pam/0001-dealloc.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-[PATCH] fix two bugs in the PAM object deallocation
-
-Fixes https://bugzilla.redhat.com/show_bug.cgi?id=658955
-
-Downloaded from:
-http://pkgs.fedoraproject.org/cgit/PyPAM.git/plain/PyPAM-0.5.0-dealloc.patch
-
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-diff -up PyPAM-0.5.0/PAMmodule.c.dealloc PyPAM-0.5.0/PAMmodule.c
---- PyPAM-0.5.0/PAMmodule.c.dealloc 2011-01-17 22:48:22.000000000 +0100
-+++ PyPAM-0.5.0/PAMmodule.c 2011-01-18 21:24:59.000000000 +0100
-@@ -538,10 +538,11 @@ static void PyPAM_dealloc(PyPAMObject *s
- free(self->service);
- free(self->user);
- free(self->conv);
-- pam_end(self->pamh, PAM_SUCCESS);
-+ if (self->pamh)
-+ pam_end(self->pamh, PAM_SUCCESS);
- dlclose(self->dlh2);
- dlclose(self->dlh1);
-- PyMem_DEL(self);
-+ PyObject_Del(self);
- }
-
- static PyObject * PyPAM_getattr(PyPAMObject *self, char *name)
diff --git a/package/python-pam/0002-nofree.patch b/package/python-pam/0002-nofree.patch
deleted file mode 100644
index 7de8801707..0000000000
--- a/package/python-pam/0002-nofree.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-[PATCH] deallocate the conversation response only in case of error
-
-Fixes https://bugzilla.redhat.com/show_bug.cgi?id=679714
-
-Downloaded from:
-http://pkgs.fedoraproject.org/cgit/PyPAM.git/plain/PyPAM-0.5.0-nofree.patch
-
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-diff --git a/PAMmodule.c b/PAMmodule.c
-index 03cb799..a7ff8a5 100644
---- a/PAMmodule.c
-+++ b/PAMmodule.c
-@@ -24,8 +24,6 @@ typedef struct {
- char *service;
- char *user;
- PyObject *callback;
-- struct pam_response *response_data;
-- int response_len;
- PyObject *user_data;
- void *dlh1, *dlh2;
- } PyPAMObject;
-@@ -54,15 +52,6 @@ static int PyPAM_conv(int num_msg, const struct pam_message **msg,
-
- Py_INCREF(self);
-
-- if (NULL != self->response_data) {
-- for (int i = 0; i < self->response_len; i++) {
-- free(self->response_data[0].resp);
-- }
-- free(self->response_data);
-- self->response_data = NULL;
-- self->response_len = 0;
-- }
--
- PyObject* msgList = PyList_New(num_msg);
-
- for (int i = 0; i < num_msg; i++) {
-@@ -92,6 +81,10 @@ static int PyPAM_conv(int num_msg, const struct pam_message **msg,
- char* resp_text;
- int resp_retcode = 0;
- if (!PyArg_ParseTuple(respTuple, "si", &resp_text, &resp_retcode)) {
-+ while (i > 0) {
-+ free((--spr)->resp);
-+ --i;
-+ }
- free(*resp);
- Py_DECREF(respList);
- return PAM_CONV_ERR;
-@@ -100,10 +93,6 @@ static int PyPAM_conv(int num_msg, const struct pam_message **msg,
- spr->resp_retcode = resp_retcode;
- Py_DECREF(respTuple);
- }
--
-- // Save this so we can free it later.
-- self->response_data = *resp;
-- self->response_len = PyList_Size(respList);
-
- Py_DECREF(respList);
-
-@@ -144,8 +133,6 @@ static PyObject * PyPAM_pam(PyObject *self, PyObject *args)
- p->user = NULL;
- Py_INCREF(Py_None);
- p->callback = Py_None;
-- p->response_data = NULL;
-- p->response_len = 0;
- Py_INCREF(Py_None);
- p->user_data = Py_None;
-
diff --git a/package/python-pam/0003-memory-errors-CVE2012-1502.patch b/package/python-pam/0003-memory-errors-CVE2012-1502.patch
deleted file mode 100644
index 62405db058..0000000000
--- a/package/python-pam/0003-memory-errors-CVE2012-1502.patch
+++ /dev/null
@@ -1,136 +0,0 @@
-[PATCH] Fix Double Free Corruption (CVE2012-1502)
-
-Downloaded from:
-http://pkgs.fedoraproject.org/cgit/PyPAM.git/plain/PyPAM-0.5.0-memory-errors.patch
-
-For details, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-1502
-
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-diff -up PyPAM-0.5.0/PAMmodule.c.memory PyPAM-0.5.0/PAMmodule.c
---- PyPAM-0.5.0/PAMmodule.c.memory 2012-05-07 17:22:54.503914026 +0200
-+++ PyPAM-0.5.0/PAMmodule.c 2012-05-07 17:23:15.644381942 +0200
-@@ -37,33 +37,48 @@ static void PyPAM_Err(PyPAMObject *self,
-
- err_msg = pam_strerror(self->pamh, result);
- error = Py_BuildValue("(si)", err_msg, result);
-- Py_INCREF(PyPAM_Error);
- PyErr_SetObject(PyPAM_Error, error);
-+ Py_XDECREF(error);
- }
-
- static int PyPAM_conv(int num_msg, const struct pam_message **msg,
- struct pam_response **resp, void *appdata_ptr)
- {
-- PyObject *args;
--
-+ PyObject *args, *msgList, *respList, *item;
-+ struct pam_response *response, *spr;
- PyPAMObject* self = (PyPAMObject *) appdata_ptr;
-+
- if (self->callback == NULL)
- return PAM_CONV_ERR;
-
- Py_INCREF(self);
-
-- PyObject* msgList = PyList_New(num_msg);
--
-+ msgList = PyList_New(num_msg);
-+ if (msgList == NULL) {
-+ Py_DECREF(self);
-+ return PAM_CONV_ERR;
-+ }
-+
- for (int i = 0; i < num_msg; i++) {
-- PyList_SetItem(msgList, i,
-- Py_BuildValue("(si)", msg[i]->msg, msg[i]->msg_style));
-+ item = Py_BuildValue("(si)", msg[i]->msg, msg[i]->msg_style);
-+ if (item == NULL) {
-+ Py_DECREF(msgList);
-+ Py_DECREF(self);
-+ return PAM_CONV_ERR;
-+ }
-+ PyList_SetItem(msgList, i, item);
- }
--
-+
- args = Py_BuildValue("(OO)", self, msgList);
-- PyObject* respList = PyEval_CallObject(self->callback, args);
-+ if (args == NULL) {
-+ Py_DECREF(self);
-+ Py_DECREF(msgList);
-+ return PAM_CONV_ERR;
-+ }
-+ respList = PyEval_CallObject(self->callback, args);
- Py_DECREF(args);
- Py_DECREF(self);
--
-+
- if (respList == NULL)
- return PAM_CONV_ERR;
-
-@@ -71,11 +86,15 @@ static int PyPAM_conv(int num_msg, const
- Py_DECREF(respList);
- return PAM_CONV_ERR;
- }
--
-- *resp = (struct pam_response *) malloc(
-+
-+ response = (struct pam_response *) malloc(
- PyList_Size(respList) * sizeof(struct pam_response));
-+ if (response == NULL) {
-+ Py_DECREF(respList);
-+ return PAM_CONV_ERR;
-+ }
-+ spr = response;
-
-- struct pam_response* spr = *resp;
- for (int i = 0; i < PyList_Size(respList); i++, spr++) {
- PyObject* respTuple = PyList_GetItem(respList, i);
- char* resp_text;
-@@ -85,7 +104,7 @@ static int PyPAM_conv(int num_msg, const
- free((--spr)->resp);
- --i;
- }
-- free(*resp);
-+ free(response);
- Py_DECREF(respList);
- return PAM_CONV_ERR;
- }
-@@ -95,7 +114,8 @@ static int PyPAM_conv(int num_msg, const
- }
-
- Py_DECREF(respList);
--
-+ *resp = response;
-+
- return PAM_SUCCESS;
- }
-
-@@ -122,7 +142,11 @@ static PyObject * PyPAM_pam(PyObject *se
- PyPAMObject_Type.ob_type = &PyType_Type;
- p = (PyPAMObject *) PyObject_NEW(PyPAMObject, &PyPAMObject_Type);
-
-+ if (p == NULL)
-+ return NULL;
-+
- if ((spc = (struct pam_conv *) malloc(sizeof(struct pam_conv))) == NULL) {
-+ Py_DECREF((PyObject *)p);
- PyErr_SetString(PyExc_MemoryError, "out of memory");
- return NULL;
- }
-@@ -455,9 +479,15 @@ static PyObject * PyPAM_getenvlist(PyObj
- }
-
- retval = PyList_New(0);
-+ if (retval == NULL)
-+ return NULL;
-
- while ((cp = *(result++)) != NULL) {
- entry = Py_BuildValue("s", cp);
-+ if (entry == NULL) {
-+ Py_DECREF(retval);
-+ return NULL;
-+ }
- PyList_Append(retval, entry);
- Py_DECREF(entry);
- }
diff --git a/package/python-pam/Config.in b/package/python-pam/Config.in
deleted file mode 100644
index 92ba105ebf..0000000000
--- a/package/python-pam/Config.in
+++ /dev/null
@@ -1,16 +0,0 @@
-comment "python-pam needs a toolchain w/ wchar, locale, dynamic library"
- depends on BR2_PACKAGE_PYTHON
- depends on !BR2_ENABLE_LOCALE || !BR2_USE_WCHAR || BR2_STATIC_LIBS
-
-config BR2_PACKAGE_PYTHON_PAM
- bool "python-pam"
- depends on BR2_PACKAGE_PYTHON # C extension not compatible with python3
- depends on BR2_ENABLE_LOCALE # linux-pam
- depends on BR2_USE_WCHAR # linux-pam
- depends on BR2_USE_MMU # linux-pam
- depends on !BR2_STATIC_LIBS # linux-pam
- select BR2_PACKAGE_LINUX_PAM
- help
- PAM (Pluggable Authentication Module) bindings for Python.
-
- https://admin.fedoraproject.org/pkgdb/package/PyPAM/
diff --git a/package/python-pam/python-pam.hash b/package/python-pam/python-pam.hash
deleted file mode 100644
index 303455ae2f..0000000000
--- a/package/python-pam/python-pam.hash
+++ /dev/null
@@ -1,3 +0,0 @@
-# locally computed
-sha256 796ac019b9ee805696d0d277d8fb912fa2391b6ac070dc6f9f1a9a0fadbc3a5a PyPAM-0.5.0.tar.gz
-sha256 ca0061fc1381a3ab242310e4b3f56389f28e3d460eb2fd822ed7a21c6f030532 COPYING
diff --git a/package/python-pam/python-pam.mk b/package/python-pam/python-pam.mk
deleted file mode 100644
index 943e01dd64..0000000000
--- a/package/python-pam/python-pam.mk
+++ /dev/null
@@ -1,16 +0,0 @@
-################################################################################
-#
-# python-pam
-#
-################################################################################
-
-PYTHON_PAM_VERSION = 0.5.0
-PYTHON_PAM_SOURCE = PyPAM-$(PYTHON_PAM_VERSION).tar.gz
-# pangalactic.org gone
-PYTHON_PAM_SITE = http://pkgs.fedoraproject.org/repo/pkgs/PyPAM/PyPAM-0.5.0.tar.gz/f1e7c2c56421dda28a75ace59a3c8871
-PYTHON_PAM_SETUP_TYPE = distutils
-PYTHON_PAM_LICENSE = LGPL-2.1
-PYTHON_PAM_LICENSE_FILES = COPYING
-PYTHON_PAM_DEPENDENCIES = linux-pam
-
-$(eval $(python-package))
--
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:06 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 ` [Buildroot] [PATCH 001/107] support/testing: drop python2 tests Peter Korsgaard
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 ` Peter Korsgaard [this message]
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-95-peter@korsgaard.com \
--to=peter@korsgaard.com \
--cc=buildroot@buildroot.org \
/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