Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] NetworkManager: update to 1.31.1
@ 2021-03-09  3:41 cinerea0
  2021-03-09  3:50 ` cinerea0
                   ` (71 more replies)
  0 siblings, 72 replies; 73+ messages in thread
From: cinerea0 @ 2021-03-09  3:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1591 bytes --]

There is a new pull request by cinerea0 against master on the void-packages repository

https://github.com/cinerea0/void-packages nm
https://github.com/void-linux/void-packages/pull/29342

NetworkManager: update to 1.31.1
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/29342.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-nm-29342.patch --]
[-- Type: text/x-diff, Size: 14274 bytes --]

From ceba21eeb68574c2b1bb8520c13cb300445df554 Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@protonmail.com>
Date: Mon, 8 Mar 2021 22:37:59 -0500
Subject: [PATCH] NetworkManager: update to 1.31.1

---
 .../patches/fix-cross-gir.patch               | 67 ++++++-------------
 .../patches/fix-musl-linux-header.diff        | 15 -----
 .../patches/fix-musl-linux-header.patch       | 19 ++++++
 .../NetworkManager/patches/musl-basic.patch   | 26 +++----
 .../patches/musl-fix-includes.patch           | 48 +------------
 .../patches/musl-network-support.patch        | 21 ++----
 .../patches/musl-use-srand48.patch            | 40 -----------
 srcpkgs/NetworkManager/template               | 14 ++--
 8 files changed, 69 insertions(+), 181 deletions(-)
 delete mode 100644 srcpkgs/NetworkManager/patches/fix-musl-linux-header.diff
 create mode 100644 srcpkgs/NetworkManager/patches/fix-musl-linux-header.patch
 delete mode 100644 srcpkgs/NetworkManager/patches/musl-use-srand48.patch

diff --git a/srcpkgs/NetworkManager/patches/fix-cross-gir.patch b/srcpkgs/NetworkManager/patches/fix-cross-gir.patch
index c283d4dc1059..c0b4344b1c15 100644
--- a/srcpkgs/NetworkManager/patches/fix-cross-gir.patch
+++ b/srcpkgs/NetworkManager/patches/fix-cross-gir.patch
@@ -1,52 +1,29 @@
 Reason: Fix crossbuilding GIR
 Upstream: No, not upstreamable since this is very specific to the Void setup
-diff --git clients/common/meson.build clients/common/meson.build
-index afa257b..50b53e7 100644
---- clients/common/meson.build
-+++ clients/common/meson.build
-@@ -35,7 +35,7 @@ if enable_introspection
-     settings_docs,
-     input: nm_property_docs,
-     output: settings_docs,
--    command: [xsltproc, '--output', '@OUTPUT@', join_paths(meson.current_source_dir(), 'settings-docs.xsl'), '@INPUT@'],
-+    command: [xsltproc, '--output', '@OUTPUT@', join_paths(meson.current_source_dir(), 'settings-docs.xsl'), join_paths(meson.current_source_dir(), '..', '..', '@INPUT@')],
-   )
- 
-   test(
-diff --git libnm/meson.build libnm/meson.build
-index 51ca46d..f14d861 100644
---- libnm/meson.build
-+++ libnm/meson.build
-@@ -236,7 +236,13 @@ if enable_introspection
-     )
-   endif
- 
--  generate_setting_docs = join_paths(meson.current_source_dir(), 'generate-setting-docs.py')
+--- libnm/meson.build.orig	2020-12-28 16:03:30.641850261 +0100
++++ libnm/meson.build	2020-12-28 16:31:54.932136481 +0100
+@@ -276,6 +276,14 @@
+     'GI_TYPELIB_PATH=' + gi_typelib_path,
+     'LD_LIBRARY_PATH=' + ld_library_path,
+   ]
++  
 +  if meson.is_cross_build()
 +    qemu = '/usr/bin/qemu-@XBPS_TARGET_QEMU_MACHINE@-static'
-+    qemu_python3_cmd = qemu + ' -L @XBPS_CROSS_BASE@ @XBPS_CROSS_BASE@/usr/bin/python3'
-+    generate_setting_docs = ['sh', '-c', qemu_python3_cmd, join_paths(meson.current_source_dir(), 'generate-setting-docs.py')]
++    qemu_python3_cmd = qemu + ' -L @XBPS_CROSS_BASE@ @XBPS_CROSS_BASE@/bin/python3'
++    generate_setting_docs = ['sh', '-c', qemu_python3_cmd, join_paths(meson.source_root(), 'tools', 'generate-docs-nm-settings-docs-gir.py')]
 +  else
-+    generate_setting_docs = [python.path(), join_paths(meson.current_source_dir(), 'generate-setting-docs.py')]
++    generate_setting_docs = [python.path(), join_paths(meson.source_root(), 'tools', 'generate-docs-nm-settings-docs-gir.py')]
 +  endif
  
-   gi_typelib_path = run_command('printenv', 'GI_TYPELIB_PATH').stdout()
-   if gi_typelib_path != ''
-@@ -261,7 +267,7 @@ if enable_introspection
-     name,
-     input: libnm_gir[0],
-     output: name,
--    command: [generate_setting_docs_env, python.path(), generate_setting_docs, '--lib-path', meson.current_build_dir(), '--gir', '@INPUT@', '--output', '@OUTPUT@'],
-+    command: [generate_setting_docs_env, generate_setting_docs, '--lib-path', meson.current_build_dir(), '--gir', '@INPUT@', '--output', '@OUTPUT@'],
-     depends: libnm_gir,
-   )
- 
-@@ -270,7 +276,7 @@ if enable_introspection
-     name,
-     input: [libnm_gir[0], nm_settings_docs_overrides],
-     output: name,
--    command: [generate_setting_docs_env, python.path(), generate_setting_docs, '--lib-path', meson.current_build_dir(), '--gir', '@INPUT0@', '--overrides', '@INPUT1@', '--output', '@OUTPUT@'],
-+    command: [generate_setting_docs_env, generate_setting_docs, '--lib-path', meson.current_build_dir(), '--gir', '@INPUT0@', '--overrides', '@INPUT1@', '--output', '@OUTPUT@'],
-     depends: libnm_gir,
-   )
- endif
+   nm_settings_docs_xml_gir = custom_target(
+     'nm-settings-docs-gir.xml',
+@@ -283,8 +291,7 @@
+     output: 'nm-settings-docs-gir.xml',
+     command: [
+       generate_setting_docs_env,
+-      python.path(),
+-      join_paths(meson.source_root(), 'tools', 'generate-docs-nm-settings-docs-gir.py'),
++      generate_setting_docs,
+       '--lib-path', meson.current_build_dir(),
+       '--gir', '@INPUT@',
+       '--output', '@OUTPUT@'
diff --git a/srcpkgs/NetworkManager/patches/fix-musl-linux-header.diff b/srcpkgs/NetworkManager/patches/fix-musl-linux-header.diff
deleted file mode 100644
index 511759214a97..000000000000
--- a/srcpkgs/NetworkManager/patches/fix-musl-linux-header.diff
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git src/systemd/src/libsystemd-network/sd-dhcp6-client.c src/systemd/src/libsystemd-network/sd-dhcp6-client.c
-index f67a45bd2..ec11fa605 100644
---- src/systemd/src/libsystemd-network/sd-dhcp6-client.c
-+++ src/systemd/src/libsystemd-network/sd-dhcp6-client.c
-@@ -8,8 +8,10 @@
- #include <errno.h>
- #include <string.h>
- #include <sys/ioctl.h>
-+#ifdef __GLIBC__
- #include <linux/if_arp.h>
- #include <linux/if_infiniband.h>
-+#endif
- 
- #include "sd-dhcp6-client.h"
- 
diff --git a/srcpkgs/NetworkManager/patches/fix-musl-linux-header.patch b/srcpkgs/NetworkManager/patches/fix-musl-linux-header.patch
new file mode 100644
index 000000000000..97f119c3427f
--- /dev/null
+++ b/srcpkgs/NetworkManager/patches/fix-musl-linux-header.patch
@@ -0,0 +1,19 @@
+--- src/core/systemd/src/libsystemd-network/sd-dhcp6-client.c.orig	2021-02-18 12:23:41.000000000 -0500
++++ src/core/systemd/src/libsystemd-network/sd-dhcp6-client.c	2021-03-08 19:02:10.811793995 -0500
+@@ -7,12 +7,10 @@
+ 
+ #include <errno.h>
+ #include <sys/ioctl.h>
+-#if 0 /* NM_IGNORED */
+-#include <linux/if_arp.h>
+-#else /* NM_IGNORED */
+-#include <net/if_arp.h>
+-#endif /* NM_IGNORED */
+-#include <linux/if_infiniband.h>
++#ifdef __GLIBC__
++#include <linux/if_arp.h>
++#include <linux/if_infiniband.h>
++#endif
+ 
+ #include "sd-dhcp6-client.h"
+ 
diff --git a/srcpkgs/NetworkManager/patches/musl-basic.patch b/srcpkgs/NetworkManager/patches/musl-basic.patch
index 63ea93ada585..51a4653de774 100644
--- a/srcpkgs/NetworkManager/patches/musl-basic.patch
+++ b/srcpkgs/NetworkManager/patches/musl-basic.patch
@@ -1,22 +1,22 @@
 Usual fix for musl libc
---- shared/systemd/src/basic/stdio-util.h.orig
-+++ shared/systemd/src/basic/stdio-util.h
-@@ -19,7 +19,9 @@
-   along with systemd; If not, see <http://www.gnu.org/licenses/>.
- ***/
+--- shared/systemd/src/basic/stdio-util.h.orig	2021-02-18 12:23:41.000000000 -0500
++++ shared/systemd/src/basic/stdio-util.h	2021-03-08 19:18:44.268093394 -0500
+@@ -1,9 +1,9 @@
+ /* SPDX-License-Identifier: LGPL-2.1-or-later */
+ #pragma once
  
+-#if 0 /* NM_IGNORED */
+-#include <printf.h>
+-#endif /* NM_IGNORED */
 +#if defined(__GLIBC__)
- #include <printf.h>
++#include <printf.h>
 +#endif
  #include <stdarg.h>
  #include <stdio.h>
  #include <sys/types.h>
- 
---- shared/systemd/src/basic/sort-util.h	2019-06-09 17:02:48.895695896 +0200
-+++ shared/systemd/src/basic/sort-util.h	2019-06-09 17:03:27.564199937 +0200
-@@ -5,6 +5,12 @@
- 
+@@ -11,6 +11,12 @@
  #include "macro.h"
+ #include "memory-util.h"
  
 +#if !defined(__GLIBC__)
 +typedef int (*__compar_fn_t) (const void*, const void*);
@@ -24,6 +24,6 @@ Usual fix for musl libc
 +typedef int (*__compar_d_fn_t) (const void *, const void *, void *);
 +#endif
 +
- void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size,
-                  __compar_d_fn_t compar, void *arg);
+ #define snprintf_ok(buf, len, fmt, ...) \
+         ((size_t) snprintf(buf, len, fmt, __VA_ARGS__) < (len))
  
diff --git a/srcpkgs/NetworkManager/patches/musl-fix-includes.patch b/srcpkgs/NetworkManager/patches/musl-fix-includes.patch
index 95ffb2d354ea..6b2460e0a10a 100644
--- a/srcpkgs/NetworkManager/patches/musl-fix-includes.patch
+++ b/srcpkgs/NetworkManager/patches/musl-fix-includes.patch
@@ -1,19 +1,5 @@
---- src/devices/nm-device.c.orig	2019-12-17 08:59:49.000000000 +0100
-+++ src/devices/nm-device.c	2020-01-06 17:29:08.678242168 +0100
-@@ -17,7 +17,11 @@
- #include <arpa/inet.h>
- #include <fcntl.h>
- #include <linux/if_addr.h>
-+#if defined(__GLIBC__)
- #include <linux/if_arp.h>
-+#else
-+#include <linux/if.h>
-+#endif
- #include <linux/rtnetlink.h>
- #include <linux/pkt_sched.h>
- 
---- src/nm-manager.c.orig	2020-01-06 17:29:08.682242177 +0100
-+++ src/nm-manager.c	2020-01-06 17:30:50.378482034 +0100
+--- src/core/nm-manager.c.orig	2021-02-18 12:23:41.000000000 -0500
++++ src/core/nm-manager.c	2021-03-08 19:32:39.592516963 -0500
 @@ -15,6 +15,7 @@
  #include <sys/stat.h>
  #include <sys/sendfile.h>
@@ -22,33 +8,3 @@
  
  #include "nm-glib-aux/nm-c-list.h"
  
---- src/platform/nm-linux-platform.c.orig	2019-12-17 08:59:49.000000000 +0100
-+++ src/platform/nm-linux-platform.c	2020-01-06 17:29:08.686242186 +0100
-@@ -6,6 +6,7 @@
- #include "nm-default.h"
- 
- #include "nm-linux-platform.h"
-+#include "wpan/nm-wpan-utils.h"
- 
- #include <arpa/inet.h>
- #include <dlfcn.h>
-@@ -14,7 +15,11 @@
- #include <libudev.h>
- #include <linux/fib_rules.h>
- #include <linux/ip.h>
-+#if defined(__GLIBC__)
- #include <linux/if_arp.h>
-+#else
-+#include <linux/if.h>
-+#endif
- #include <linux/if_bridge.h>
- #include <linux/if_link.h>
- #include <linux/if_tun.h>
-@@ -44,7 +49,6 @@
- #include "nm-platform-private.h"
- #include "wifi/nm-wifi-utils.h"
- #include "wifi/nm-wifi-utils-wext.h"
--#include "wpan/nm-wpan-utils.h"
- #include "nm-glib-aux/nm-io-utils.h"
- #include "nm-udev-aux/nm-udev-utils.h"
- 
diff --git a/srcpkgs/NetworkManager/patches/musl-network-support.patch b/srcpkgs/NetworkManager/patches/musl-network-support.patch
index 0fb63f067b17..098525d6bf1a 100644
--- a/srcpkgs/NetworkManager/patches/musl-network-support.patch
+++ b/srcpkgs/NetworkManager/patches/musl-network-support.patch
@@ -1,20 +1,6 @@
---- libnm-core/nm-utils.h.orig
-+++ libnm-core/nm-utils.h
-@@ -30,7 +30,11 @@
- #include <netinet/in.h>
- 
- /* For ETH_ALEN and INFINIBAND_ALEN */
-+#if defined(__GLIBC__)
- #include <linux/if_ether.h>
-+#else
-+#define ETH_ALEN	6		/* Octets in one ethernet addr	 */
-+#endif
- #include <linux/if_infiniband.h>
- 
- #include "nm-core-enum-types.h"
---- src/platform/wifi/nm-wifi-utils.h.orig
-+++ src/platform/wifi/nm-wifi-utils.h
-@@ -22,7 +22,11 @@
+--- src/core/platform/wifi/nm-wifi-utils.h.orig	2021-02-18 12:23:41.000000000 -0500
++++ src/core/platform/wifi/nm-wifi-utils.h	2021-03-08 19:52:14.450642457 -0500
+@@ -7,7 +7,11 @@
  #ifndef __WIFI_UTILS_H__
  #define __WIFI_UTILS_H__
  
@@ -25,6 +11,7 @@
 +#endif
  
  #include "nm-dbus-interface.h"
+ #include "nm-setting-wireless.h"
  
 --- shared/systemd/src/basic/socket-util.h	2019-03-16 15:41:33.287235649 +0100
 +++ shared/systemd/src/basic/socket-util.h	2019-03-16 15:42:24.273912106 +0100
diff --git a/srcpkgs/NetworkManager/patches/musl-use-srand48.patch b/srcpkgs/NetworkManager/patches/musl-use-srand48.patch
deleted file mode 100644
index 43b689f3bad1..000000000000
--- a/srcpkgs/NetworkManager/patches/musl-use-srand48.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- shared/n-dhcp4/src/n-dhcp4-c-probe.c.orig	2020-01-06 15:35:10.128600647 +0100
-+++ shared/n-dhcp4/src/n-dhcp4-c-probe.c	2020-01-06 15:39:41.446240531 +0100
-@@ -362,7 +362,12 @@ static void n_dhcp4_client_probe_config_
-         seed16v[1] = (u64 >> 16) ^ (u64 >>  0);
-         seed16v[2] = (u64 >> 32) ^ (u64 >> 16);
- 
-+#ifdef __GLIBC__
-         r = seed48_r(seed16v, &config->entropy);
-+#else
-+        r = 0;
-+        seed48(seed16v);
-+#endif
-         c_assert(!r);
- }
- 
-@@ -379,7 +384,12 @@ uint32_t n_dhcp4_client_probe_config_get
-         long int result;
-         int r;
- 
-+#ifdef __GLIBC__
-         r = mrand48_r(&config->entropy, &result);
-+#else
-+        r = 0;
-+        result = mrand48();
-+#endif
-         c_assert(!r);
- 
-         return result;
---- shared/n-dhcp4/src/n-dhcp4-private.h.orig	2020-01-06 15:41:31.941501136 +0100
-+++ shared/n-dhcp4/src/n-dhcp4-private.h	2020-01-06 15:41:55.341556325 +0100
-@@ -267,7 +267,9 @@ struct NDhcp4ClientProbeConfig {
-         bool inform_only;
-         bool init_reboot;
-         struct in_addr requested_ip;
-+#ifdef __GLIBC__
-         struct drand48_data entropy;    /* entropy pool */
-+#endif
-         uint64_t ms_start_delay;        /* max ms to wait before starting probe */
-         NDhcp4ClientProbeOption *options[UINT8_MAX + 1];
-         int8_t request_parameters[UINT8_MAX + 1];
diff --git a/srcpkgs/NetworkManager/template b/srcpkgs/NetworkManager/template
index e482bba98de7..b4528827608c 100644
--- a/srcpkgs/NetworkManager/template
+++ b/srcpkgs/NetworkManager/template
@@ -1,9 +1,7 @@
 # Template file for 'NetworkManager'
-# when updating to 1.24 or newer, drop the compat
-# patch in gnome-control-center and rebuild it
 pkgname=NetworkManager
-version=1.22.10
-revision=2
+version=1.31.1
+revision=1
 build_style=meson
 build_helper="gir qemu"
 configure_args="-Dpolkit_agent=true -Dsystemd_journal=false
@@ -35,7 +33,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://wiki.gnome.org/Projects/NetworkManager"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=2b29ccc1531ba7ebba95a97f40c22b963838e8b6833745efe8e6fb71fd8fca77
+checksum=4c5cba0c00d50b70d92bd1dabd693d9931827bd4007e142e2ca2781c8d7985f1
 lib32disabled=yes
 conf_files="/etc/${pkgname}/${pkgname}.conf"
 make_dirs="
@@ -68,6 +66,12 @@ pre_configure() {
 	fi
 }
 
+do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		ninja -C build test
+	fi
+}
+
 post_install() {
 	vinstall ${FILESDIR}/${pkgname}.conf 644 etc/${pkgname}
 	vinstall ${FILESDIR}/50-org.freedesktop.NetworkManager.rules 644 \

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

end of thread, other threads:[~2021-03-25 15:17 UTC | newest]

Thread overview: 73+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-09  3:41 [PR PATCH] NetworkManager: update to 1.31.1 cinerea0
2021-03-09  3:50 ` cinerea0
2021-03-09  4:37 ` [PR PATCH] [Updated] " cinerea0
2021-03-09  5:07 ` NetworkManager: update to 1.31.1, gnome-control-center: drop NM compat patch cinerea0
2021-03-09  9:04 ` FollieHiyuki
2021-03-15 16:28 ` NetworkManager: update to 1.31.1 cinerea0
2021-03-15 16:55 ` [PR REVIEW] " ericonr
2021-03-15 16:55 ` ericonr
2021-03-15 17:04 ` ericonr
2021-03-16  2:56 ` [PR PATCH] [Updated] " cinerea0
2021-03-16  3:23 ` [PR REVIEW] " cinerea0
2021-03-16  3:33 ` cinerea0
2021-03-16  3:40 ` cinerea0
2021-03-19 18:10 ` [PR PATCH] [Updated] NetworkManager: update to 1.30.2 cinerea0
2021-03-19 18:22 ` cinerea0
2021-03-20  1:03 ` [PR REVIEW] " ericonr
2021-03-20  1:05 ` sgn
2021-03-20  1:26 ` cinerea0
2021-03-20  1:31 ` sgn
2021-03-20  1:35 ` cinerea0
2021-03-20  1:37 ` cinerea0
2021-03-20  2:02 ` sgn
2021-03-20  2:26 ` cinerea0
2021-03-20  2:42 ` sgn
2021-03-20  5:13 ` [PR REVIEW] " cinerea0
2021-03-20  5:34 ` sgn
2021-03-20  6:26 ` Gottox
2021-03-20 16:56 ` [PR PATCH] [Updated] " cinerea0
2021-03-20 17:47 ` cinerea0
2021-03-21  3:48 ` [PR REVIEW] " q66
2021-03-21  4:01 ` cinerea0
2021-03-21 20:29 ` q66
2021-03-21 23:28 ` [PR PATCH] [Updated] " cinerea0
2021-03-21 23:30 ` [PR REVIEW] " cinerea0
2021-03-21 23:43 ` cinerea0
2021-03-22  0:06 ` [PR REVIEW] " q66
2021-03-22  0:19 ` cinerea0
2021-03-22  0:23 ` [PR PATCH] [Updated] " cinerea0
2021-03-22  0:42 ` [PR REVIEW] " ericonr
2021-03-22  1:33 ` cinerea0
2021-03-22  1:48 ` sgn
2021-03-22  1:56 ` [PR REVIEW] " ericonr
2021-03-22  2:43 ` [PR PATCH] [Updated] " cinerea0
2021-03-22  3:38 ` cinerea0
2021-03-22  4:37 ` NetworkManager: update to 1.30.2, gnome-control-center: update to 3.38.5 cinerea0
2021-03-24  0:58 ` [PR REVIEW] " ericonr
2021-03-24  0:58 ` ericonr
2021-03-24  1:11 ` sgn
2021-03-24  1:48 ` ericonr
2021-03-24  2:00 ` cinerea0
2021-03-24  2:11 ` cinerea0
2021-03-24  4:31 ` [PR PATCH] [Updated] " cinerea0
2021-03-24  4:36 ` [PR REVIEW] " cinerea0
2021-03-24  5:04 ` cinerea0
2021-03-24  5:05 ` [PR PATCH] [Updated] " cinerea0
2021-03-24 13:41 ` [PR REVIEW] " ericonr
2021-03-24 15:02 ` [PR PATCH] [Updated] " cinerea0
2021-03-24 15:36 ` cinerea0
2021-03-24 19:28 ` cinerea0
2021-03-24 19:59 ` [PR REVIEW] " cinerea0
2021-03-24 20:21 ` ericonr
2021-03-24 20:22 ` ericonr
2021-03-24 21:24 ` [PR PATCH] [Updated] " cinerea0
2021-03-24 23:53 ` cinerea0
2021-03-25  0:30 ` cinerea0
2021-03-25  1:11 ` [PR REVIEW] " cinerea0
2021-03-25  1:12 ` cinerea0
2021-03-25  1:19 ` cinerea0
2021-03-25  1:49 ` ericonr
2021-03-25  2:20 ` [PR PATCH] [Updated] " cinerea0
2021-03-25  3:14 ` cinerea0
2021-03-25 14:30 ` Gottox
2021-03-25 15:17 ` [PR PATCH] [Merged]: " ericonr

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).