git: a6266a45667f - main - net/pichi: Unbreak by update
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 01 Jan 2024 21:27:15 UTC
The branch main has been updated by bofh:
URL: https://cgit.FreeBSD.org/ports/commit/?id=a6266a45667f7b60ff97de5bcfd4989835a2a672
commit a6266a45667f7b60ff97de5bcfd4989835a2a672
Author: Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2024-01-01 21:26:07 +0000
Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2024-01-01 21:27:11 +0000
net/pichi: Unbreak by update
- Update version 1.5.0=>1.5.1
Changelog: https://github.com/pichi-router/pichi/releases/tag/1.5.1
Approved by: portmgr (just-fix-it)
---
net/pichi/Makefile | 2 +-
net/pichi/distinfo | 6 +++---
net/pichi/files/patch-src_net_http.cpp | 11 -----------
3 files changed, 4 insertions(+), 15 deletions(-)
diff --git a/net/pichi/Makefile b/net/pichi/Makefile
index ec5cd5ec8a96..fb8f0875f8aa 100644
--- a/net/pichi/Makefile
+++ b/net/pichi/Makefile
@@ -1,5 +1,5 @@
PORTNAME= pichi
-DISTVERSION= 1.5.0
+DISTVERSION= 1.5.1
CATEGORIES= net
MAINTAINER= pichi@elude.in
diff --git a/net/pichi/distinfo b/net/pichi/distinfo
index aaa112e1acaa..d933d61e48e7 100644
--- a/net/pichi/distinfo
+++ b/net/pichi/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1627466281
-SHA256 (pichi-router-pichi-1.5.0_GH0.tar.gz) = b6b69ec74572dcf31484ecad850d809b5f38e7d3978a952951344aff496d3398
-SIZE (pichi-router-pichi-1.5.0_GH0.tar.gz) = 2124092
+TIMESTAMP = 1704144011
+SHA256 (pichi-router-pichi-1.5.1_GH0.tar.gz) = 99268097bf1f66e0b42020c168c8575ef02fab9767346dd5d956a1a9f012c645
+SIZE (pichi-router-pichi-1.5.1_GH0.tar.gz) = 2126161
diff --git a/net/pichi/files/patch-src_net_http.cpp b/net/pichi/files/patch-src_net_http.cpp
deleted file mode 100644
index eccacb97c8ca..000000000000
--- a/net/pichi/files/patch-src_net_http.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/net/http.cpp.orig 2022-12-12 17:06:47 UTC
-+++ src/net/http.cpp
-@@ -365,7 +365,7 @@ template <typename Stream> Endpoint HttpIngress<Stream
- * relative_path specified;
- * - relative_path will be forwarded without any change.
- */
-- auto target = req.target().to_string();
-+ auto target = string{cbegin(req.target()), cend(req.target())};
- assertFalse(target.empty(), PichiError::BAD_PROTO, "Empty path");
- if (target[0] != '/') {
- // absolute_path specified, so convert it to relative one.