Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/freebsd-ports.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ftp
diff options
context:
space:
mode:
authorSerhii (Sergey) Kozlov <skozlov@FreeBSD.org>2022-05-02 01:37:25 +0300
committerSerhii (Sergey) Kozlov <skozlov@FreeBSD.org>2022-05-02 01:39:18 +0300
commitdcc9f0932e89fdacf5b8e34de6e1a1b85e5dbdab (patch)
tree5649fe31fa6a5c11ce86d8b77dc139cf034ab682 /ftp
parentcc683ead3e373031271dc50dca92560a0c4709e0 (diff)
ftp/sftpgo: update to 2.2.3
- Remove one patch (merged upstream) Changelog: https://github.com/drakkan/sftpgo/releases/tag/v2.2.3
Diffstat (limited to 'ftp')
-rw-r--r--ftp/sftpgo/Makefile3
-rw-r--r--ftp/sftpgo/distinfo6
-rw-r--r--ftp/sftpgo/files/patch-vendor_github.com_shirou_gopsutil_v3_process_process__freebsd.go12
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) {