svn commit: r519648 - in head/sysutils/hatop: . files

Koichiro Iwao meta at FreeBSD.org
Tue Dec 10 07:49:48 UTC 2019


Author: meta
Date: Tue Dec 10 07:49:47 2019
New Revision: 519648
URL: https://svnweb.freebsd.org/changeset/ports/519648

Log:
  sysutils/hatop: Fix patch added in previous commit
  
  PR:		242532
  Submitted by:	maintainer

Modified:
  head/sysutils/hatop/Makefile
  head/sysutils/hatop/files/patch-bin_hatop

Modified: head/sysutils/hatop/Makefile
==============================================================================
--- head/sysutils/hatop/Makefile	Tue Dec 10 06:55:44 2019	(r519647)
+++ head/sysutils/hatop/Makefile	Tue Dec 10 07:49:47 2019	(r519648)
@@ -3,7 +3,7 @@
 
 PORTNAME=	hatop
 PORTVERSION=	0.7.7
-PORTREVISION=	3
+PORTREVISION=	4
 DISTVERSIONPREFIX=	v
 CATEGORIES=	sysutils net
 

Modified: head/sysutils/hatop/files/patch-bin_hatop
==============================================================================
--- head/sysutils/hatop/files/patch-bin_hatop	Tue Dec 10 06:55:44 2019	(r519647)
+++ head/sysutils/hatop/files/patch-bin_hatop	Tue Dec 10 07:49:47 2019	(r519648)
@@ -1,5 +1,14 @@
---- bin/hatop.orig	2019-12-03 21:58:07 UTC
+--- bin/hatop.orig	2019-12-09 21:46:21 UTC
 +++ bin/hatop
+@@ -404,7 +404,7 @@ class Socket:
+         data = self._socket.recv(HAPROXY_CLI_BUFSIZE)
+         if not data:
+             raise SocketError('error while waiting for prompt')
+-        return data
++        return data.decode()
+ 
+     def connect(self):
+         # Initialize socket connection
 @@ -414,16 +414,16 @@ class Socket:
          # Enter the interactive socket mode. This requires HAProxy 1.4+ and
          # allows us to error out early if connected to an older version.


More information about the svn-ports-all mailing list