mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
ftp/sftpgo: update to 2.2.3
- Remove one patch (merged upstream) Changelog: https://github.com/drakkan/sftpgo/releases/tag/v2.2.3
This commit is contained in:
parent
cc683ead3e
commit
dcc9f0932e
@ -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
|
||||
|
@ -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
|
||||
|
@ -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) {
|
Loading…
Reference in New Issue
Block a user