Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] uhttpmock: update to 0.11.0; msgraph: update to 0.2.3
@ 2024-06-25 23:02 cinerea0
  2024-06-26  2:04 ` [PR PATCH] [Merged]: " cinerea0
  0 siblings, 1 reply; 2+ messages in thread
From: cinerea0 @ 2024-06-25 23:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cinerea0/void-packages msgraph
https://github.com/void-linux/void-packages/pull/51003

uhttpmock: update to 0.11.0; msgraph: update to 0.2.3
#### Testing the changes
- I tested the changes in this PR: **briefly**



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

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

From 2fa26c2d2a70ef8715375df361da12c96d8c5361 Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Tue, 25 Jun 2024 19:01:03 -0400
Subject: [PATCH 1/2] uhttpmock: update to 0.11.0

---
 .../uhttpmock/patches/add-http2-support.patch | 37 -------------------
 srcpkgs/uhttpmock/template                    |  6 +--
 2 files changed, 3 insertions(+), 40 deletions(-)
 delete mode 100644 srcpkgs/uhttpmock/patches/add-http2-support.patch

diff --git a/srcpkgs/uhttpmock/patches/add-http2-support.patch b/srcpkgs/uhttpmock/patches/add-http2-support.patch
deleted file mode 100644
index 16830b1e0f3645..00000000000000
--- a/srcpkgs/uhttpmock/patches/add-http2-support.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 46e86c50044e07c7427233495c0c21adfdb47891 Mon Sep 17 00:00:00 2001
-From: Jan-Michael Brummer <jan-michael.brummer1@volkswagen.de>
-Date: Fri, 8 Mar 2024 19:58:43 +0100
-Subject: [PATCH] Add HTTP/2 support
-
----
- libuhttpmock/uhm-server.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/libuhttpmock/uhm-server.c b/libuhttpmock/uhm-server.c
-index 4451a91..da5d3a5 100644
---- a/libuhttpmock/uhm-server.c
-+++ b/libuhttpmock/uhm-server.c
-@@ -873,6 +873,9 @@ trace_to_soup_message (const gchar *trace, GUri *base_uri)
- 	} else if (strncmp (trace, "HTTP/1.0", strlen ("HTTP/1.0")) == 0) {
- 		http_version = SOUP_HTTP_1_0;
- 		trace += strlen ("HTTP/1.0");
-+	} else if (strncmp (trace, "HTTP/2", strlen ("HTTP/2")) == 0) {
-+		http_version = SOUP_HTTP_2_0;
-+		trace += strlen ("HTTP/2");
- 	} else {
- 		g_warning ("Unrecognised HTTP version ‘%s’.", trace);
- 		http_version = SOUP_HTTP_1_1;
-@@ -914,6 +917,9 @@ trace_to_soup_message (const gchar *trace, GUri *base_uri)
- 	} else if (strncmp (trace, "HTTP/1.0", strlen ("HTTP/1.0")) == 0) {
- 		http_version = SOUP_HTTP_1_0;
- 		trace += strlen ("HTTP/1.0");
-+	} else if (strncmp (trace, "HTTP/2", strlen ("HTTP/2")) == 0) {
-+		http_version = SOUP_HTTP_2_0;
-+		trace += strlen ("HTTP/2");
- 	} else {
- 		g_warning ("Unrecognised HTTP version ‘%s’.", trace);
- 	}
--- 
-GitLab
-
-
diff --git a/srcpkgs/uhttpmock/template b/srcpkgs/uhttpmock/template
index 7d37bcf49941ee..9d93b68a0012ad 100644
--- a/srcpkgs/uhttpmock/template
+++ b/srcpkgs/uhttpmock/template
@@ -1,7 +1,7 @@
 # Template file for 'uhttpmock'
 pkgname=uhttpmock
-version=0.10.0
-revision=2
+version=0.11.0
+revision=1
 build_style=meson
 build_helper="gir"
 configure_args="$(vopt_bool gtk_doc gtk_doc)"
@@ -13,7 +13,7 @@ license="LGPL-2.1-or-later"
 homepage="https://gitlab.freedesktop.org/pwithnall/uhttpmock/"
 changelog="https://gitlab.freedesktop.org/pwithnall/uhttpmock/-/raw/main/NEWS"
 distfiles="https://gitlab.freedesktop.org/pwithnall/uhttpmock/-/archive/${version}/uhttpmock-${version}.tar.gz"
-checksum=a4294a9e0f0c619957cefc34e55561990519c25468f07cb7c4e5aa7368ef840b
+checksum=453f7cc20ca90c5214e4d2f3e77cbeaa6d6fb0f69b7bdbf39050cb69a6e09a19
 
 build_options="gtk_doc"
 

From 22e50431c6d0fef9ab0119fad6fca876f48e37bd Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Tue, 25 Jun 2024 19:01:21 -0400
Subject: [PATCH 2/2] msgraph: update to 0.2.3

---
 srcpkgs/msgraph/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/msgraph/template b/srcpkgs/msgraph/template
index 74ff62c5541f61..bcb5a1e252d96f 100644
--- a/srcpkgs/msgraph/template
+++ b/srcpkgs/msgraph/template
@@ -1,6 +1,6 @@
 # Template file for 'msgraph'
 pkgname=msgraph
-version=0.2.2
+version=0.2.3
 revision=1
 build_style=meson
 build_helper=gir
@@ -14,7 +14,7 @@ license="LGPL-3.0-or-later"
 homepage="https://gitlab.gnome.org/GNOME/msgraph"
 changelog="https://gitlab.gnome.org/GNOME/msgraph/-/raw/main/NEWS"
 distfiles="${GNOME_SITE}/msgraph/${version%.*}/msgraph-${version}.tar.xz"
-checksum=12cc954f750bb137ace8500fe9355d26e6e00ef6ccaab2950e9d360e92758335
+checksum=ed42e800cb7f0a07477cd9e3e744cdc1a240a6ad7ab96b8a875806267a9fddb0
 
 build_options="gtk_doc"
 

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

* Re: [PR PATCH] [Merged]: uhttpmock: update to 0.11.0; msgraph: update to 0.2.3
  2024-06-25 23:02 [PR PATCH] uhttpmock: update to 0.11.0; msgraph: update to 0.2.3 cinerea0
@ 2024-06-26  2:04 ` cinerea0
  0 siblings, 0 replies; 2+ messages in thread
From: cinerea0 @ 2024-06-26  2:04 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

uhttpmock: update to 0.11.0; msgraph: update to 0.2.3
https://github.com/void-linux/void-packages/pull/51003

Description:
#### Testing the changes
- I tested the changes in this PR: **briefly**



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

end of thread, other threads:[~2024-06-26  2:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-25 23:02 [PR PATCH] uhttpmock: update to 0.11.0; msgraph: update to 0.2.3 cinerea0
2024-06-26  2:04 ` [PR PATCH] [Merged]: " cinerea0

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).