git: dcc9f0932e89 - main - ftp/sftpgo: update to 2.2.3

From: Serhii (Sergey) Kozlov <skozlov_at_FreeBSD.org>
Date: Sun, 01 May 2022 22:39:28 UTC
The branch main has been updated by skozlov:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dcc9f0932e89fdacf5b8e34de6e1a1b85e5dbdab

commit dcc9f0932e89fdacf5b8e34de6e1a1b85e5dbdab
Author:     Serhii (Sergey) Kozlov <skozlov@FreeBSD.org>
AuthorDate: 2022-05-01 22:37:25 +0000
Commit:     Serhii (Sergey) Kozlov <skozlov@FreeBSD.org>
CommitDate: 2022-05-01 22:39:18 +0000

    ftp/sftpgo: update to 2.2.3
    
    - Remove one patch (merged upstream)
    
    Changelog:      https://github.com/drakkan/sftpgo/releases/tag/v2.2.3
---
 ftp/sftpgo/Makefile                                          |  3 +--
 ftp/sftpgo/distinfo                                          |  6 +++---
 ...github.com_shirou_gopsutil_v3_process_process__freebsd.go | 12 ------------
 3 files changed, 4 insertions(+), 17 deletions(-)

diff --git a/ftp/sftpgo/Makefile b/ftp/sftpgo/Makefile
index 0c886210c344..6db4b67fc9d7 100644
--- a/ftp/sftpgo/Makefile
+++ b/ftp/sftpgo/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	sftpgo
-PORTVERSION=	2.2.2
-PORTREVISION=	1
+PORTVERSION=	2.2.3
 CATEGORIES=	ftp www
 MASTER_SITES=	https://github.com/drakkan/${PORTNAME}/releases/download/v${DISTVERSION}/
 DISTNAME=	${PORTNAME}_v${PORTVERSION}_src_with_deps
diff --git a/ftp/sftpgo/distinfo b/ftp/sftpgo/distinfo
index 77c9d73bc1d6..c84f83d87593 100644
--- a/ftp/sftpgo/distinfo
+++ b/ftp/sftpgo/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1644188900
-SHA256 (sftpgo_v2.2.2_src_with_deps.tar.xz) = c1779d6a82308540113b0de015291b05768b80a09918945e50ec914f3b99f60e
-SIZE (sftpgo_v2.2.2_src_with_deps.tar.xz) = 9348860
+TIMESTAMP = 1651444299
+SHA256 (sftpgo_v2.2.3_src_with_deps.tar.xz) = 6c8676725e86ee3f6ad46a340a84f0da37cab8b6ea7b6aee86b2b96ba5e6671a
+SIZE (sftpgo_v2.2.3_src_with_deps.tar.xz) = 9550020
diff --git a/ftp/sftpgo/files/patch-vendor_github.com_shirou_gopsutil_v3_process_process__freebsd.go b/ftp/sftpgo/files/patch-vendor_github.com_shirou_gopsutil_v3_process_process__freebsd.go
deleted file mode 100644
index 6011ca54e942..000000000000
--- a/ftp/sftpgo/files/patch-vendor_github.com_shirou_gopsutil_v3_process_process__freebsd.go
+++ /dev/null
@@ -1,12 +0,0 @@
---- vendor/github.com/shirou/gopsutil/v3/process/process_freebsd.go.orig	2022-02-06 14:12:45 UTC
-+++ vendor/github.com/shirou/gopsutil/v3/process/process_freebsd.go
-@@ -115,7 +115,8 @@ func (p *Process) createTimeWithContext(ctx context.Co
- 	if err != nil {
- 		return 0, err
- 	}
--	return k.Start.Sec*1000 + k.Start.Usec/1000, nil
-+	// Pull request: https://github.com/shirou/gopsutil/pull/1246
-+	return int64(k.Start.Sec)*1000 + int64(k.Start.Usec)/1000, nil
- }
- 
- func (p *Process) StatusWithContext(ctx context.Context) ([]string, error) {