* [Buildroot] [PATCH] package/pounce: New package
@ 2023-07-08 19:35 Ismael Luceno
0 siblings, 0 replies; 6+ messages in thread
From: Ismael Luceno @ 2023-07-08 19:35 UTC (permalink / raw)
To: buildroot; +Cc: Ismael Luceno
Simple IRC bouncer.
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
---
DEVELOPERS | 1 +
package/Config.in | 1 +
package/pounce/Config.in | 18 ++++++++++++++++++
package/pounce/pounce.hash | 3 +++
package/pounce/pounce.mk | 14 ++++++++++++++
5 files changed, 37 insertions(+)
create mode 100644 package/pounce/Config.in
create mode 100644 package/pounce/pounce.hash
create mode 100644 package/pounce/pounce.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 188c579010a5..cbcd7a7527ea 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1322,6 +1322,7 @@ F: package/exempi/
N: Ismael Luceno <ismael@iodev.co.uk>
F: package/axel/
F: package/mawk/
+F: package/pounce/
N: Jagan Teki <jagan@amarulasolutions.com>
F: board/amarula/
diff --git a/package/Config.in b/package/Config.in
index bff090a66163..b2bda179a402 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2444,6 +2444,7 @@ endif
source "package/phytool/Config.in"
source "package/pimd/Config.in"
source "package/pixiewps/Config.in"
+ source "package/pounce/Config.in"
source "package/pound/Config.in"
source "package/pppd/Config.in"
source "package/pptp-linux/Config.in"
diff --git a/package/pounce/Config.in b/package/pounce/Config.in
new file mode 100644
index 000000000000..83bb66643652
--- /dev/null
+++ b/package/pounce/Config.in
@@ -0,0 +1,18 @@
+config BR2_PACKAGE_POUNCE
+ bool "pounce"
+ select BR2_PACKAGE_LIBRESSL
+ help
+ pounce is a multi-client, TLS-only IRC bouncer. It maintains a
+ persistent connection to an IRC server, acting as a proxy and
+ buffer for a number of clients. When a client connects, any
+ messages received since it last disconnected will be relayed to
+ it. Unlike some other bouncers, pounce uses a single buffer for
+ all IRC messages, which acts as a queue from which each client
+ reads messages independently.
+
+ pounce speaks regular modern IRC to both servers and clients, using
+ the server-time extension to indicate when messages originally
+ occurred. Clients identify themselves to pounce by their IRC
+ usernames.
+
+ https://git.causal.agency/pounce/
diff --git a/package/pounce/pounce.hash b/package/pounce/pounce.hash
new file mode 100644
index 000000000000..a827bd389f40
--- /dev/null
+++ b/package/pounce/pounce.hash
@@ -0,0 +1,3 @@
+# Locally computed
+sha256 97f245556b1cc940553fca18f4d7d82692e6c11a30f612415e5e391e5d96604e pounce-3.1.tar.gz
+sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
diff --git a/package/pounce/pounce.mk b/package/pounce/pounce.mk
new file mode 100644
index 000000000000..b9a0bf06a8d9
--- /dev/null
+++ b/package/pounce/pounce.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# pounce
+#
+################################################################################
+
+POUNCE_VERSION = 3.1
+POUNCE_SITE = https://git.causal.agency/pounce/
+POUNCE_SOURCE = pounce-$(POUNCE_VERSION).tar.gz
+POUNCE_LICENSE = GPL-3.0+
+POUNCE_LICENSE_FILES = LICENSE
+POUNCE_DEPENDENCIES = libressl
+
+$(eval $(autotools-package))
--
2.40.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH] package/pounce: New package
@ 2023-07-08 19:36 Ismael Luceno
2023-07-12 19:38 ` Yann E. MORIN
0 siblings, 1 reply; 6+ messages in thread
From: Ismael Luceno @ 2023-07-08 19:36 UTC (permalink / raw)
To: buildroot; +Cc: Ismael Luceno
Simple IRC bouncer.
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
---
DEVELOPERS | 1 +
package/Config.in | 1 +
package/pounce/Config.in | 18 ++++++++++++++++++
package/pounce/pounce.hash | 3 +++
package/pounce/pounce.mk | 14 ++++++++++++++
5 files changed, 37 insertions(+)
create mode 100644 package/pounce/Config.in
create mode 100644 package/pounce/pounce.hash
create mode 100644 package/pounce/pounce.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 188c579010a5..cbcd7a7527ea 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1322,6 +1322,7 @@ F: package/exempi/
N: Ismael Luceno <ismael@iodev.co.uk>
F: package/axel/
F: package/mawk/
+F: package/pounce/
N: Jagan Teki <jagan@amarulasolutions.com>
F: board/amarula/
diff --git a/package/Config.in b/package/Config.in
index bff090a66163..b2bda179a402 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2444,6 +2444,7 @@ endif
source "package/phytool/Config.in"
source "package/pimd/Config.in"
source "package/pixiewps/Config.in"
+ source "package/pounce/Config.in"
source "package/pound/Config.in"
source "package/pppd/Config.in"
source "package/pptp-linux/Config.in"
diff --git a/package/pounce/Config.in b/package/pounce/Config.in
new file mode 100644
index 000000000000..83bb66643652
--- /dev/null
+++ b/package/pounce/Config.in
@@ -0,0 +1,18 @@
+config BR2_PACKAGE_POUNCE
+ bool "pounce"
+ select BR2_PACKAGE_LIBRESSL
+ help
+ pounce is a multi-client, TLS-only IRC bouncer. It maintains a
+ persistent connection to an IRC server, acting as a proxy and
+ buffer for a number of clients. When a client connects, any
+ messages received since it last disconnected will be relayed to
+ it. Unlike some other bouncers, pounce uses a single buffer for
+ all IRC messages, which acts as a queue from which each client
+ reads messages independently.
+
+ pounce speaks regular modern IRC to both servers and clients, using
+ the server-time extension to indicate when messages originally
+ occurred. Clients identify themselves to pounce by their IRC
+ usernames.
+
+ https://git.causal.agency/pounce/
diff --git a/package/pounce/pounce.hash b/package/pounce/pounce.hash
new file mode 100644
index 000000000000..a827bd389f40
--- /dev/null
+++ b/package/pounce/pounce.hash
@@ -0,0 +1,3 @@
+# Locally computed
+sha256 97f245556b1cc940553fca18f4d7d82692e6c11a30f612415e5e391e5d96604e pounce-3.1.tar.gz
+sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
diff --git a/package/pounce/pounce.mk b/package/pounce/pounce.mk
new file mode 100644
index 000000000000..b0a28efd91bd
--- /dev/null
+++ b/package/pounce/pounce.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# pounce
+#
+################################################################################
+
+POUNCE_VERSION = 3.1
+POUNCE_SITE = https://git.causal.agency/pounce/snapshot
+POUNCE_SOURCE = pounce-$(POUNCE_VERSION).tar.gz
+POUNCE_LICENSE = GPL-3.0+
+POUNCE_LICENSE_FILES = LICENSE
+POUNCE_DEPENDENCIES = libressl
+
+$(eval $(autotools-package))
--
2.40.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH] package/pounce: New package
2023-07-08 19:36 [Buildroot] [PATCH] package/pounce: New package Ismael Luceno
@ 2023-07-12 19:38 ` Yann E. MORIN
0 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2023-07-12 19:38 UTC (permalink / raw)
To: Ismael Luceno; +Cc: buildroot
Ismael, All,
On 2023-07-08 21:36 +0200, Ismael Luceno spake thusly:
> Simple IRC bouncer.
>
> Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
> ---
[--SNIP--]
> diff --git a/package/pounce/Config.in b/package/pounce/Config.in
> new file mode 100644
> index 000000000000..83bb66643652
> --- /dev/null
> +++ b/package/pounce/Config.in
> @@ -0,0 +1,18 @@
> +config BR2_PACKAGE_POUNCE
> + bool "pounce"
> + select BR2_PACKAGE_LIBRESSL
$ ./utils/docker-run make check-package
package/pounce/Config.in:3: BR2_PACKAGE_LIBRESSL is part of a "choice" and should not be "select"ed
However, the situation is tricky: it seems that pounce does indeed
require libressl, and not libopenssl, because it really wants libtls.
In Buildroot, libopenssl and libressl are exclusive one to the other; we
then have two possible situations for a package:
- works equally well with either libopenssl or libressl
- only works with libopenssl
We have no way to represent this new case for pounce, which is:
- only work with libressl.
So, the only solution is to actually depend on libressl:
config BR2_PACKAGE_POUNCE
bool "pounce"
depends on BR2_PACKAGE_LIBRESSL
[...]
comment "pounce needs openssl support w/ libressl"
depends on !BR2_PACKAGE_LIBRESSL
Unfortunately, for now, this is the only case, so we'll need a few other
cases before we look into providing a way to fore-se;ect libressl...
> + help
> + pounce is a multi-client, TLS-only IRC bouncer. It maintains a
> + persistent connection to an IRC server, acting as a proxy and
> + buffer for a number of clients. When a client connects, any
> + messages received since it last disconnected will be relayed to
> + it. Unlike some other bouncers, pounce uses a single buffer for
> + all IRC messages, which acts as a queue from which each client
> + reads messages independently.
> +
> + pounce speaks regular modern IRC to both servers and clients, using
> + the server-time extension to indicate when messages originally
> + occurred. Clients identify themselves to pounce by their IRC
> + usernames.
> +
> + https://git.causal.agency/pounce/
$ ./utils/docker-run make check-package
package/pounce/Config.in:8: help text: <tab><2 spaces><62 chars> (http://nightly.buildroot.org/#writing-rules-config-in)
package/pounce/Config.in:9: help text: <tab><2 spaces><62 chars> (http://nightly.buildroot.org/#writing-rules-config-in)
package/pounce/Config.in:13: help text: <tab><2 spaces><62 chars> (http://nightly.buildroot.org/#writing-rules-config-in)
Also, I think a better "homepage" would be:
https://git.causal.agency/pounce/about/
> diff --git a/package/pounce/pounce.hash b/package/pounce/pounce.hash
> new file mode 100644
> index 000000000000..a827bd389f40
> --- /dev/null
> +++ b/package/pounce/pounce.hash
> @@ -0,0 +1,3 @@
> +# Locally computed
> +sha256 97f245556b1cc940553fca18f4d7d82692e6c11a30f612415e5e391e5d96604e pounce-3.1.tar.gz
> +sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
> diff --git a/package/pounce/pounce.mk b/package/pounce/pounce.mk
> new file mode 100644
> index 000000000000..b0a28efd91bd
> --- /dev/null
> +++ b/package/pounce/pounce.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# pounce
> +#
> +################################################################################
> +
> +POUNCE_VERSION = 3.1
> +POUNCE_SITE = https://git.causal.agency/pounce/snapshot
> +POUNCE_SOURCE = pounce-$(POUNCE_VERSION).tar.gz
$ ./utils/docker-run make check-package
package/pounce/pounce.mk:9: remove default value of _SOURCE variable (http://nightly.buildroot.org/#generic-package-reference)
> +POUNCE_LICENSE = GPL-3.0+
> +POUNCE_LICENSE_FILES = LICENSE
> +POUNCE_DEPENDENCIES = libressl
> +
> +$(eval $(autotools-package))
It is not an autotools package: the configure script is hand-written, so
it should not use the autotools infra.
The configure script calls pkg-config, so you need it in the
dependencies.
The configure script is not playing nice with cross-compilation: it
calls 'uname' to decide what to do, which is incorrect. It happens that
we are running on linux and targetting linux, so it works by accident.
We should however make sure that this is going to always be the case.
POUNCE_DEPENDENCIES = host=pkgconf libressl
define POUNCE_FAKE_UNAME
$(Q)mkdir -p $(@D)/bin
$(Q)printf '#!/bin/sh\necho Linux\n' >$(@D)/bin/uname
$(Q)chmod 755 $(@D)/bin/uname
endef
POUNCE_POST_EXTRACT_HOOKS += POUNCE_FAKE_UNAME
define POUNCE_CONFIGURE_CMDS
cd $(@D) && \
PATH=$(@D)/bin:$(BR_PATH) \
./configure \
--prefix=/usr
endef
define POUNCE_BUILD_CMDS
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_MAKE_ENV) \
$(MAKE) \
-C $(@D)
endef
define POUNCE_INSTALL_TARGET_CMDS
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_MAKE_ENV) \
$(MAKE) \
-C $(@D) \
DESTDIR=$(TARGET_DIR) \
install
endef
$(eval $(generic-package))
Of course, totally untested... ;-)
Can you update, check, and respin, please?
Regards,
Yann E. MORIN.
> --
> 2.40.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH] package/pounce: New package
@ 2023-08-14 11:36 Ismael Luceno
2023-08-14 11:59 ` Yann E. MORIN
0 siblings, 1 reply; 6+ messages in thread
From: Ismael Luceno @ 2023-08-14 11:36 UTC (permalink / raw)
To: buildroot; +Cc: Ismael Luceno
Simple IRC bouncer.
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
---
DEVELOPERS | 1 +
package/Config.in | 1 +
package/pounce/Config.in | 18 ++++++++++++++++++
package/pounce/pounce.hash | 3 +++
package/pounce/pounce.mk | 14 ++++++++++++++
5 files changed, 37 insertions(+)
create mode 100644 package/pounce/Config.in
create mode 100644 package/pounce/pounce.hash
create mode 100644 package/pounce/pounce.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 6ffa3ee693a8..4dad3d474ad0 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1338,6 +1338,7 @@ F: package/exempi/
N: Ismael Luceno <ismael@iodev.co.uk>
F: package/axel/
F: package/mawk/
+F: package/pounce/
N: Jagan Teki <jagan@amarulasolutions.com>
F: board/amarula/
diff --git a/package/Config.in b/package/Config.in
index 54cddc39140d..783683dd5201 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2458,6 +2458,7 @@ endif
source "package/phytool/Config.in"
source "package/pimd/Config.in"
source "package/pixiewps/Config.in"
+ source "package/pounce/Config.in"
source "package/pound/Config.in"
source "package/pppd/Config.in"
source "package/pptp-linux/Config.in"
diff --git a/package/pounce/Config.in b/package/pounce/Config.in
new file mode 100644
index 000000000000..83bb66643652
--- /dev/null
+++ b/package/pounce/Config.in
@@ -0,0 +1,18 @@
+config BR2_PACKAGE_POUNCE
+ bool "pounce"
+ select BR2_PACKAGE_LIBRESSL
+ help
+ pounce is a multi-client, TLS-only IRC bouncer. It maintains a
+ persistent connection to an IRC server, acting as a proxy and
+ buffer for a number of clients. When a client connects, any
+ messages received since it last disconnected will be relayed to
+ it. Unlike some other bouncers, pounce uses a single buffer for
+ all IRC messages, which acts as a queue from which each client
+ reads messages independently.
+
+ pounce speaks regular modern IRC to both servers and clients, using
+ the server-time extension to indicate when messages originally
+ occurred. Clients identify themselves to pounce by their IRC
+ usernames.
+
+ https://git.causal.agency/pounce/
diff --git a/package/pounce/pounce.hash b/package/pounce/pounce.hash
new file mode 100644
index 000000000000..a827bd389f40
--- /dev/null
+++ b/package/pounce/pounce.hash
@@ -0,0 +1,3 @@
+# Locally computed
+sha256 97f245556b1cc940553fca18f4d7d82692e6c11a30f612415e5e391e5d96604e pounce-3.1.tar.gz
+sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
diff --git a/package/pounce/pounce.mk b/package/pounce/pounce.mk
new file mode 100644
index 000000000000..b0a28efd91bd
--- /dev/null
+++ b/package/pounce/pounce.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# pounce
+#
+################################################################################
+
+POUNCE_VERSION = 3.1
+POUNCE_SITE = https://git.causal.agency/pounce/snapshot
+POUNCE_SOURCE = pounce-$(POUNCE_VERSION).tar.gz
+POUNCE_LICENSE = GPL-3.0+
+POUNCE_LICENSE_FILES = LICENSE
+POUNCE_DEPENDENCIES = libressl
+
+$(eval $(autotools-package))
--
2.41.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH] package/pounce: New package
2023-08-14 11:36 Ismael Luceno
@ 2023-08-14 11:59 ` Yann E. MORIN
2023-08-14 12:12 ` Ismael Luceno
0 siblings, 1 reply; 6+ messages in thread
From: Yann E. MORIN @ 2023-08-14 11:59 UTC (permalink / raw)
To: Ismael Luceno; +Cc: buildroot
Ismael, All,
On 2023-08-14 13:36 +0200, Ismael Luceno spake thusly:
> Simple IRC bouncer.
>
> Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
You did not take into account a single one of the comments I made in
my previous review:
https://lore.kernel.org/buildroot/20230712193831.GI188780@scaer/
Please read that review and act upon the comments before you submit
again.
If you have some concerns or questions about some of what I said, please
address those by replying to my review mail.
Regards,
Yann E. MORIN.
> ---
> DEVELOPERS | 1 +
> package/Config.in | 1 +
> package/pounce/Config.in | 18 ++++++++++++++++++
> package/pounce/pounce.hash | 3 +++
> package/pounce/pounce.mk | 14 ++++++++++++++
> 5 files changed, 37 insertions(+)
> create mode 100644 package/pounce/Config.in
> create mode 100644 package/pounce/pounce.hash
> create mode 100644 package/pounce/pounce.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 6ffa3ee693a8..4dad3d474ad0 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -1338,6 +1338,7 @@ F: package/exempi/
> N: Ismael Luceno <ismael@iodev.co.uk>
> F: package/axel/
> F: package/mawk/
> +F: package/pounce/
>
> N: Jagan Teki <jagan@amarulasolutions.com>
> F: board/amarula/
> diff --git a/package/Config.in b/package/Config.in
> index 54cddc39140d..783683dd5201 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -2458,6 +2458,7 @@ endif
> source "package/phytool/Config.in"
> source "package/pimd/Config.in"
> source "package/pixiewps/Config.in"
> + source "package/pounce/Config.in"
> source "package/pound/Config.in"
> source "package/pppd/Config.in"
> source "package/pptp-linux/Config.in"
> diff --git a/package/pounce/Config.in b/package/pounce/Config.in
> new file mode 100644
> index 000000000000..83bb66643652
> --- /dev/null
> +++ b/package/pounce/Config.in
> @@ -0,0 +1,18 @@
> +config BR2_PACKAGE_POUNCE
> + bool "pounce"
> + select BR2_PACKAGE_LIBRESSL
> + help
> + pounce is a multi-client, TLS-only IRC bouncer. It maintains a
> + persistent connection to an IRC server, acting as a proxy and
> + buffer for a number of clients. When a client connects, any
> + messages received since it last disconnected will be relayed to
> + it. Unlike some other bouncers, pounce uses a single buffer for
> + all IRC messages, which acts as a queue from which each client
> + reads messages independently.
> +
> + pounce speaks regular modern IRC to both servers and clients, using
> + the server-time extension to indicate when messages originally
> + occurred. Clients identify themselves to pounce by their IRC
> + usernames.
> +
> + https://git.causal.agency/pounce/
> diff --git a/package/pounce/pounce.hash b/package/pounce/pounce.hash
> new file mode 100644
> index 000000000000..a827bd389f40
> --- /dev/null
> +++ b/package/pounce/pounce.hash
> @@ -0,0 +1,3 @@
> +# Locally computed
> +sha256 97f245556b1cc940553fca18f4d7d82692e6c11a30f612415e5e391e5d96604e pounce-3.1.tar.gz
> +sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
> diff --git a/package/pounce/pounce.mk b/package/pounce/pounce.mk
> new file mode 100644
> index 000000000000..b0a28efd91bd
> --- /dev/null
> +++ b/package/pounce/pounce.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# pounce
> +#
> +################################################################################
> +
> +POUNCE_VERSION = 3.1
> +POUNCE_SITE = https://git.causal.agency/pounce/snapshot
> +POUNCE_SOURCE = pounce-$(POUNCE_VERSION).tar.gz
> +POUNCE_LICENSE = GPL-3.0+
> +POUNCE_LICENSE_FILES = LICENSE
> +POUNCE_DEPENDENCIES = libressl
> +
> +$(eval $(autotools-package))
> --
> 2.41.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH] package/pounce: New package
2023-08-14 11:59 ` Yann E. MORIN
@ 2023-08-14 12:12 ` Ismael Luceno
0 siblings, 0 replies; 6+ messages in thread
From: Ismael Luceno @ 2023-08-14 12:12 UTC (permalink / raw)
To: Yann E. MORIN; +Cc: buildroot
On 14/Aug/2023 13:59, Yann E. MORIN wrote:
<...>
> You did not take into account a single one of the comments I made in
> my previous review:
<...>
Ah, sorry, I sent it again by accident.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-08-14 12:12 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-08 19:36 [Buildroot] [PATCH] package/pounce: New package Ismael Luceno
2023-07-12 19:38 ` Yann E. MORIN
-- strict thread matches above, loose matches on Subject: below --
2023-08-14 11:36 Ismael Luceno
2023-08-14 11:59 ` Yann E. MORIN
2023-08-14 12:12 ` Ismael Luceno
2023-07-08 19:35 Ismael Luceno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox