* [Buildroot] [PATCH 1/1] package/capnproto: bump version to 0.10.4
@ 2023-07-24 11:45 Koen Martens
0 siblings, 0 replies; 4+ messages in thread
From: Koen Martens @ 2023-07-24 11:45 UTC (permalink / raw)
To: buildroot
Signed-off-by: Koen Martens <gmc@sonologic.nl>
---
package/capnproto/capnproto.hash | 2 +-
package/capnproto/capnproto.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/capnproto/capnproto.hash
b/package/capnproto/capnproto.hash
index 0faf69d069..aa722a4242 100644
--- a/package/capnproto/capnproto.hash
+++ b/package/capnproto/capnproto.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 e07446f56043c983e009038e69d18ff86a2924909f0b518ccf47eccf5ac03919
capnproto-0.10.3.tar.gz
+sha256 c6f25940688c87ddb24e0c4e475c3213d9b044aad2ba305439cc8c224f559da6
capnproto-0.10.4.tar.gz
sha256
9564998c8d7f270a61a8b89869a8d17a9d5e3783b64027788b5e339ec8479e10 LICENSE
diff --git a/package/capnproto/capnproto.mk b/package/capnproto/capnproto.mk
index 84acf5fc65..7424a1420f 100644
--- a/package/capnproto/capnproto.mk
+++ b/package/capnproto/capnproto.mk
@@ -4,7 +4,7 @@
#
################################################################################
-CAPNPROTO_VERSION = 0.10.3
+CAPNPROTO_VERSION = 0.10.4
CAPNPROTO_SITE = $(call github,capnproto,capnproto,v$(CAPNPROTO_VERSION))
CAPNPROTO_LICENSE = MIT
CAPNPROTO_LICENSE_FILES = LICENSE
--
2.34.1
--
Software architecture & engineering: https://www.sonologic.se/
Sci-fi: https://www.koenmartens.nl/
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/capnproto: bump version to 0.10.4
@ 2023-07-24 12:42 Koen Martens
2023-07-28 20:35 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 4+ messages in thread
From: Koen Martens @ 2023-07-24 12:42 UTC (permalink / raw)
To: buildroot
Signed-off-by: Koen Martens <gmc@sonologic.nl>
---
package/capnproto/capnproto.hash | 2 +-
package/capnproto/capnproto.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/capnproto/capnproto.hash
b/package/capnproto/capnproto.hash
index 0faf69d069..aa722a4242 100644
--- a/package/capnproto/capnproto.hash
+++ b/package/capnproto/capnproto.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 e07446f56043c983e009038e69d18ff86a2924909f0b518ccf47eccf5ac03919
capnproto-0.10.3.tar.gz
+sha256 c6f25940688c87ddb24e0c4e475c3213d9b044aad2ba305439cc8c224f559da6
capnproto-0.10.4.tar.gz
sha256
9564998c8d7f270a61a8b89869a8d17a9d5e3783b64027788b5e339ec8479e10 LICENSE
diff --git a/package/capnproto/capnproto.mk b/package/capnproto/capnproto.mk
index 84acf5fc65..7424a1420f 100644
--- a/package/capnproto/capnproto.mk
+++ b/package/capnproto/capnproto.mk
@@ -4,7 +4,7 @@
#
################################################################################
-CAPNPROTO_VERSION = 0.10.3
+CAPNPROTO_VERSION = 0.10.4
CAPNPROTO_SITE = $(call github,capnproto,capnproto,v$(CAPNPROTO_VERSION))
CAPNPROTO_LICENSE = MIT
CAPNPROTO_LICENSE_FILES = LICENSE
--
Software architecture & engineering: https://www.sonologic.se/
Sci-fi: https://www.koenmartens.nl/
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/capnproto: bump version to 0.10.4
2023-07-24 12:42 [Buildroot] [PATCH 1/1] package/capnproto: bump version to 0.10.4 Koen Martens
@ 2023-07-28 20:35 ` Thomas Petazzoni via buildroot
2023-07-30 8:18 ` Koen Martens
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-28 20:35 UTC (permalink / raw)
To: Koen Martens; +Cc: buildroot
Hello Koen,
On Mon, 24 Jul 2023 14:42:08 +0200
Koen Martens <kmartens@sonologic.se> wrote:
> Signed-off-by: Koen Martens <gmc@sonologic.nl>
> ---
> package/capnproto/capnproto.hash | 2 +-
> package/capnproto/capnproto.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Your patch was line-wrapped, so it couldn't be applied as-is. Could you
try to use "git send-email" for your next patches?
As the patch was trivial, I fixed things up manually and applied, but
it would be annoying to do on a more complicated patch.
Thanks for your contribution!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/capnproto: bump version to 0.10.4
2023-07-28 20:35 ` Thomas Petazzoni via buildroot
@ 2023-07-30 8:18 ` Koen Martens
0 siblings, 0 replies; 4+ messages in thread
From: Koen Martens @ 2023-07-30 8:18 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: buildroot
Hi Thomas,
My apologies. It isn't often that I'm contributing on a project that
still uses email for sending around patches, so every time I have to
rediscover the intricacies of this particular workflow. I'll try and pay
more attention next time!
git send-email sadly won't work out of the box for me, even after I
install the optional packages, because of ISP restrictions. I'll see if
I can find some time to figure out all the required options for it to
send out through my mail server.
Cheers,
Koen
On 2023-07-28 22:35, Thomas Petazzoni wrote:
> Hello Koen,
>
> On Mon, 24 Jul 2023 14:42:08 +0200
> Koen Martens <kmartens@sonologic.se> wrote:
>
>> Signed-off-by: Koen Martens <gmc@sonologic.nl>
>> ---
>> package/capnproto/capnproto.hash | 2 +-
>> package/capnproto/capnproto.mk | 2 +-
>> 2 files changed, 2 insertions(+), 2 deletions(-)
> Your patch was line-wrapped, so it couldn't be applied as-is. Could you
> try to use "git send-email" for your next patches?
>
> As the patch was trivial, I fixed things up manually and applied, but
> it would be annoying to do on a more complicated patch.
>
> Thanks for your contribution!
>
> Thomas
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-30 8:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-24 12:42 [Buildroot] [PATCH 1/1] package/capnproto: bump version to 0.10.4 Koen Martens
2023-07-28 20:35 ` Thomas Petazzoni via buildroot
2023-07-30 8:18 ` Koen Martens
-- strict thread matches above, loose matches on Subject: below --
2023-07-24 11:45 Koen Martens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox