Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kitty for openSUSE:Factory checked 
in at 2024-06-24 20:52:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kitty (Old)
 and      /work/SRC/openSUSE:Factory/.kitty.new.18349 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kitty"

Mon Jun 24 20:52:17 2024 rev:34 rq:1182567 version:0.35.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/kitty/kitty.changes      2024-05-31 
22:21:18.873850688 +0200
+++ /work/SRC/openSUSE:Factory/.kitty.new.18349/kitty.changes   2024-06-24 
20:53:07.291932235 +0200
@@ -1,0 +2,17 @@
+Sat Jun 22 06:59:49 UTC 2024 - Scott Bradnick <scott.bradn...@suse.com>
+
+- Update to 0.35.2:
+  * A new option, window_logo_scale to specify how window logos are scaled
+    with respect to the size of the window containing the logo (#7534)
+  * A new option, cursor_shape_unfocused to specify the shape of the text
+    cursor in unfocused OS windows (#7544)
+  * Remote control: Fix empty password not working (#7538)
+  * Wayland: Fix regression in 0.34.0 causing flickering on window resize
+    on NVIDIA drivers (#7493)
+  * Wayland labwc: Fix kitty timing out waiting for compositor to quit
+    messing around with scales on labwc (#7540)
+  * Fix scrollback_indicator_opacity not actually controlling the
+    opacity (#7557)
+  * URL detection: Fix IPv6 hostnames breaking URL detection (#7565)
+
+-------------------------------------------------------------------

Old:
----
  kitty-0.35.1.tar.gz

New:
----
  kitty-0.35.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kitty.spec ++++++
--- /var/tmp/diff_new_pack.CyQafz/_old  2024-06-24 20:53:08.143963406 +0200
+++ /var/tmp/diff_new_pack.CyQafz/_new  2024-06-24 20:53:08.147963552 +0200
@@ -19,7 +19,7 @@
 # sphinx_copybutton not in Factory
 %bcond_with docs
 Name:           kitty
-Version:        0.35.1
+Version:        0.35.2
 Release:        0
 Summary:        A GPU-based terminal emulator
 License:        GPL-3.0-only
@@ -154,7 +154,12 @@
 %endif
 %endif
 %endif
-setup.py --verbose linux-package --prefix %{buildroot}%{_prefix} --libdir-name 
%{_lib}
+setup.py \
+  --verbose \
+  linux-package \
+  --prefix %{buildroot}%{_prefix} \
+  --libdir-name %{_lib} \
+  --extra-include-dirs %{_prefix}/include/libxkbcommon
 
 %fdupes %{buildroot}%{_libdir}/%{name}
 

++++++ kitty-0.35.1.tar.gz -> kitty-0.35.2.tar.gz ++++++
/work/SRC/openSUSE:Factory/kitty/kitty-0.35.1.tar.gz 
/work/SRC/openSUSE:Factory/.kitty.new.18349/kitty-0.35.2.tar.gz differ: char 
29, line 1

++++++ vendor.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/cpu/cpu_aix_nocgo.go 
new/vendor/github.com/shirou/gopsutil/v3/cpu/cpu_aix_nocgo.go
--- old/vendor/github.com/shirou/gopsutil/v3/cpu/cpu_aix_nocgo.go       
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/cpu/cpu_aix_nocgo.go       
2024-06-22 09:03:21.000000000 +0200
@@ -12,8 +12,57 @@
 )
 
 func TimesWithContext(ctx context.Context, percpu bool) ([]TimesStat, error) {
+       var ret []TimesStat
        if percpu {
-               return []TimesStat{}, common.ErrNotImplementedError
+               per_out, err := invoke.CommandWithContext(ctx, "sar", "-u", 
"-P", "ALL", "10", "1")
+               if err != nil {
+                       return nil, err
+               }
+               lines := strings.Split(string(per_out), "\n")
+               if len(lines) < 6 {
+                       return []TimesStat{}, common.ErrNotImplementedError
+               }
+
+               hp := strings.Fields(lines[5]) // headers
+               for l := 6; l < len(lines)-1; l++ {
+                       ct := &TimesStat{}
+                       v := strings.Fields(lines[l]) // values
+                       for i, header := range hp {
+                               // We're done in any of these use cases
+                               if i >= len(v) || v[0] == "-" {
+                                       break
+                               }
+
+                               // Position variable for v
+                               pos := i
+                               // There is a missing field at the beginning of 
all but the first line
+                               // so adjust the position
+                               if l > 6 {
+                                       pos = i - 1
+                               }
+                               // We don't want invalid positions
+                               if pos < 0 {
+                                       continue
+                               }
+
+                               if t, err := strconv.ParseFloat(v[pos], 64); 
err == nil {
+                                       switch header {
+                                       case `cpu`:
+                                               ct.CPU = strconv.FormatFloat(t, 
'f', -1, 64)
+                                       case `%usr`:
+                                               ct.User = t
+                                       case `%sys`:
+                                               ct.System = t
+                                       case `%wio`:
+                                               ct.Iowait = t
+                                       case `%idle`:
+                                               ct.Idle = t
+                                       }
+                               }
+                       }
+                       // Valid CPU data, so append it
+                       ret = append(ret, *ct)
+               }
        } else {
                out, err := invoke.CommandWithContext(ctx, "sar", "-u", "10", 
"1")
                if err != nil {
@@ -24,26 +73,28 @@
                        return []TimesStat{}, common.ErrNotImplementedError
                }
 
-               ret := TimesStat{CPU: "cpu-total"}
+               ct := &TimesStat{CPU: "cpu-total"}
                h := strings.Fields(lines[len(lines)-3]) // headers
                v := strings.Fields(lines[len(lines)-2]) // values
                for i, header := range h {
                        if t, err := strconv.ParseFloat(v[i], 64); err == nil {
                                switch header {
                                case `%usr`:
-                                       ret.User = t
+                                       ct.User = t
                                case `%sys`:
-                                       ret.System = t
+                                       ct.System = t
                                case `%wio`:
-                                       ret.Iowait = t
+                                       ct.Iowait = t
                                case `%idle`:
-                                       ret.Idle = t
+                                       ct.Idle = t
                                }
                        }
                }
 
-               return []TimesStat{ret}, nil
+               ret = append(ret, *ct)
        }
+
+       return ret, nil
 }
 
 func InfoWithContext(ctx context.Context) ([]InfoStat, error) {
@@ -78,6 +129,20 @@
                                }
                        }
                        break
+               } else if strings.HasPrefix(line, "System Model:") {
+                       p := strings.Split(string(line), ":")
+                       if p != nil {
+                               ret.VendorID = strings.TrimSpace(p[1])
+                       }
+               } else if strings.HasPrefix(line, "Processor Type:") {
+                       p := strings.Split(string(line), ":")
+                       if p != nil {
+                               c := strings.Split(string(p[1]), "_")
+                               if c != nil {
+                                       ret.Family = strings.TrimSpace(c[0])
+                                       ret.Model = strings.TrimSpace(c[1])
+                               }
+                       }
                }
        }
        return []InfoStat{ret}, nil
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/mem/mem_aix_nocgo.go 
new/vendor/github.com/shirou/gopsutil/v3/mem/mem_aix_nocgo.go
--- old/vendor/github.com/shirou/gopsutil/v3/mem/mem_aix_nocgo.go       
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/mem/mem_aix_nocgo.go       
2024-06-22 09:03:21.000000000 +0200
@@ -12,7 +12,7 @@
 )
 
 func VirtualMemoryWithContext(ctx context.Context) (*VirtualMemoryStat, error) 
{
-       vmem, swap, err := callSVMon(ctx)
+       vmem, swap, err := callSVMon(ctx, true)
        if err != nil {
                return nil, err
        }
@@ -25,7 +25,7 @@
 }
 
 func SwapMemoryWithContext(ctx context.Context) (*SwapMemoryStat, error) {
-       _, swap, err := callSVMon(ctx)
+       _, swap, err := callSVMon(ctx, false)
        if err != nil {
                return nil, err
        }
@@ -35,7 +35,7 @@
        return swap, nil
 }
 
-func callSVMon(ctx context.Context) (*VirtualMemoryStat, *SwapMemoryStat, 
error) {
+func callSVMon(ctx context.Context, virt bool) (*VirtualMemoryStat, 
*SwapMemoryStat, error) {
        out, err := invoke.CommandWithContext(ctx, "svmon", "-G")
        if err != nil {
                return nil, nil, err
@@ -45,7 +45,7 @@
        vmem := &VirtualMemoryStat{}
        swap := &SwapMemoryStat{}
        for _, line := range strings.Split(string(out), "\n") {
-               if strings.HasPrefix(line, "memory") {
+               if virt && strings.HasPrefix(line, "memory") {
                        p := strings.Fields(line)
                        if len(p) > 2 {
                                if t, err := strconv.ParseUint(p[1], 10, 64); 
err == nil {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/process/process_darwin_nocgo.go 
new/vendor/github.com/shirou/gopsutil/v3/process/process_darwin_nocgo.go
--- old/vendor/github.com/shirou/gopsutil/v3/process/process_darwin_nocgo.go    
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/process/process_darwin_nocgo.go    
2024-06-22 09:03:21.000000000 +0200
@@ -24,14 +24,21 @@
        }
        txtFound := 0
        lines := strings.Split(string(out), "\n")
+       fallback := ""
        for i := 1; i < len(lines); i++ {
                if lines[i] == "ftxt" {
                        txtFound++
+                       if txtFound == 1 {
+                               fallback = lines[i-1][1:]
+                       }
                        if txtFound == 2 {
                                return lines[i-1][1:], nil
                        }
                }
        }
+       if fallback != "" {
+               return fallback, nil
+       }
        return "", fmt.Errorf("missing txt data returned by lsof")
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd.go 
new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd.go
--- old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd.go 
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd.go 
2024-06-22 09:03:21.000000000 +0200
@@ -68,7 +68,12 @@
 }
 
 func (p *Process) CwdWithContext(ctx context.Context) (string, error) {
-       return "", common.ErrNotImplementedError
+       mib := []int32{CTLKern, KernProcCwd, p.Pid}
+       buf, _, err := common.CallSyscall(mib)
+       if err != nil {
+               return "", err
+       }
+       return common.ByteToString(buf), nil
 }
 
 func (p *Process) ExeWithContext(ctx context.Context) (string, error) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_386.go 
new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_386.go
--- old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_386.go     
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_386.go     
2024-06-22 09:03:21.000000000 +0200
@@ -14,6 +14,7 @@
        KernProcProc     = 8
        KernProcPathname = 12
        KernProcArgs     = 55
+       KernProcCwd      = 78
        KernProcArgv     = 1
        KernProcEnv      = 3
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_amd64.go 
new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_amd64.go
--- old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_amd64.go   
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_amd64.go   
2024-06-22 09:03:21.000000000 +0200
@@ -11,6 +11,7 @@
        KernProcProc     = 8
        KernProcPathname = 12
        KernProcArgs     = 55
+       KernProcCwd      = 78
        KernProcArgv     = 1
        KernProcEnv      = 3
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm.go 
new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm.go
--- old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm.go     
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm.go     
2024-06-22 09:03:21.000000000 +0200
@@ -14,6 +14,7 @@
        KernProcProc     = 8
        KernProcPathname = 12
        KernProcArgs     = 55
+       KernProcCwd      = 78
        KernProcArgv     = 1
        KernProcEnv      = 3
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm64.go 
new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm64.go
--- old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm64.go   
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_arm64.go   
2024-06-22 09:03:21.000000000 +0200
@@ -14,6 +14,7 @@
        KernProcProc     = 8
        KernProcPathname = 12
        KernProcArgs     = 55
+       KernProcCwd      = 78
        KernProcArgv     = 1
        KernProcEnv      = 3
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_riscv64.go 
new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_riscv64.go
--- old/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_riscv64.go 
2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/github.com/shirou/gopsutil/v3/process/process_openbsd_riscv64.go 
2024-06-22 09:03:21.000000000 +0200
@@ -14,6 +14,7 @@
        KernProcProc     = 8
        KernProcPathname = 12
        KernProcArgs     = 55
+       KernProcCwd      = 78
        KernProcArgv     = 1
        KernProcEnv      = 3
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/unix/mkerrors.sh 
new/vendor/golang.org/x/sys/unix/mkerrors.sh
--- old/vendor/golang.org/x/sys/unix/mkerrors.sh        2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/unix/mkerrors.sh        2024-06-22 
09:03:21.000000000 +0200
@@ -263,6 +263,7 @@
 #include <linux/sched.h>
 #include <linux/seccomp.h>
 #include <linux/serial.h>
+#include <linux/sock_diag.h>
 #include <linux/sockios.h>
 #include <linux/taskstats.h>
 #include <linux/tipc.h>
@@ -549,6 +550,7 @@
                $2 !~ "NLA_TYPE_MASK" &&
                $2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
                $2 ~ 
/^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/
 ||
+               $2 ~ /^SOCK_|SK_DIAG_|SKNLGRP_$/ ||
                $2 ~ /^FIORDCHK$/ ||
                $2 ~ /^SIOC/ ||
                $2 ~ /^TIOC/ ||
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/unix/zerrors_linux.go 
new/vendor/golang.org/x/sys/unix/zerrors_linux.go
--- old/vendor/golang.org/x/sys/unix/zerrors_linux.go   2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/unix/zerrors_linux.go   2024-06-22 
09:03:21.000000000 +0200
@@ -502,6 +502,7 @@
        BPF_IMM                                     = 0x0
        BPF_IND                                     = 0x40
        BPF_JA                                      = 0x0
+       BPF_JCOND                                   = 0xe0
        BPF_JEQ                                     = 0x10
        BPF_JGE                                     = 0x30
        BPF_JGT                                     = 0x20
@@ -657,6 +658,9 @@
        CAN_NPROTO                                  = 0x8
        CAN_RAW                                     = 0x1
        CAN_RAW_FILTER_MAX                          = 0x200
+       CAN_RAW_XL_VCID_RX_FILTER                   = 0x4
+       CAN_RAW_XL_VCID_TX_PASS                     = 0x2
+       CAN_RAW_XL_VCID_TX_SET                      = 0x1
        CAN_RTR_FLAG                                = 0x40000000
        CAN_SFF_ID_BITS                             = 0xb
        CAN_SFF_MASK                                = 0x7ff
@@ -1339,6 +1343,7 @@
        F_OFD_SETLK                                 = 0x25
        F_OFD_SETLKW                                = 0x26
        F_OK                                        = 0x0
+       F_SEAL_EXEC                                 = 0x20
        F_SEAL_FUTURE_WRITE                         = 0x10
        F_SEAL_GROW                                 = 0x4
        F_SEAL_SEAL                                 = 0x1
@@ -1627,6 +1632,7 @@
        IP_FREEBIND                                 = 0xf
        IP_HDRINCL                                  = 0x3
        IP_IPSEC_POLICY                             = 0x10
+       IP_LOCAL_PORT_RANGE                         = 0x33
        IP_MAXPACKET                                = 0xffff
        IP_MAX_MEMBERSHIPS                          = 0x14
        IP_MF                                       = 0x2000
@@ -1653,6 +1659,7 @@
        IP_PMTUDISC_OMIT                            = 0x5
        IP_PMTUDISC_PROBE                           = 0x3
        IP_PMTUDISC_WANT                            = 0x1
+       IP_PROTOCOL                                 = 0x34
        IP_RECVERR                                  = 0xb
        IP_RECVERR_RFC4884                          = 0x1a
        IP_RECVFRAGSIZE                             = 0x19
@@ -2169,7 +2176,7 @@
        NFT_SECMARK_CTX_MAXLEN                      = 0x100
        NFT_SET_MAXNAMELEN                          = 0x100
        NFT_SOCKET_MAX                              = 0x3
-       NFT_TABLE_F_MASK                            = 0x3
+       NFT_TABLE_F_MASK                            = 0x7
        NFT_TABLE_MAXNAMELEN                        = 0x100
        NFT_TRACETYPE_MAX                           = 0x3
        NFT_TUNNEL_F_MASK                           = 0x7
@@ -2403,6 +2410,7 @@
        PERF_RECORD_MISC_USER                       = 0x2
        PERF_SAMPLE_BRANCH_PLM_ALL                  = 0x7
        PERF_SAMPLE_WEIGHT_TYPE                     = 0x1004000
+       PID_FS_MAGIC                                = 0x50494446
        PIPEFS_MAGIC                                = 0x50495045
        PPPIOCGNPMODE                               = 0xc008744c
        PPPIOCNEWUNIT                               = 0xc004743e
@@ -2896,8 +2904,9 @@
        RWF_APPEND                                  = 0x10
        RWF_DSYNC                                   = 0x2
        RWF_HIPRI                                   = 0x1
+       RWF_NOAPPEND                                = 0x20
        RWF_NOWAIT                                  = 0x8
-       RWF_SUPPORTED                               = 0x1f
+       RWF_SUPPORTED                               = 0x3f
        RWF_SYNC                                    = 0x4
        RWF_WRITE_LIFE_NOT_SET                      = 0x0
        SCHED_BATCH                                 = 0x3
@@ -2918,7 +2927,9 @@
        SCHED_RESET_ON_FORK                         = 0x40000000
        SCHED_RR                                    = 0x2
        SCM_CREDENTIALS                             = 0x2
+       SCM_PIDFD                                   = 0x4
        SCM_RIGHTS                                  = 0x1
+       SCM_SECURITY                                = 0x3
        SCM_TIMESTAMP                               = 0x1d
        SC_LOG_FLUSH                                = 0x100000
        SECCOMP_ADDFD_FLAG_SEND                     = 0x2
@@ -3051,6 +3062,8 @@
        SIOCSMIIREG                                 = 0x8949
        SIOCSRARP                                   = 0x8962
        SIOCWANDEV                                  = 0x894a
+       SK_DIAG_BPF_STORAGE_MAX                     = 0x3
+       SK_DIAG_BPF_STORAGE_REQ_MAX                 = 0x1
        SMACK_MAGIC                                 = 0x43415d53
        SMART_AUTOSAVE                              = 0xd2
        SMART_AUTO_OFFLINE                          = 0xdb
@@ -3071,6 +3084,8 @@
        SOCKFS_MAGIC                                = 0x534f434b
        SOCK_BUF_LOCK_MASK                          = 0x3
        SOCK_DCCP                                   = 0x6
+       SOCK_DESTROY                                = 0x15
+       SOCK_DIAG_BY_FAMILY                         = 0x14
        SOCK_IOC_TYPE                               = 0x89
        SOCK_PACKET                                 = 0xa
        SOCK_RAW                                    = 0x3
@@ -3260,6 +3275,7 @@
        TCP_MAX_WINSHIFT                            = 0xe
        TCP_MD5SIG                                  = 0xe
        TCP_MD5SIG_EXT                              = 0x20
+       TCP_MD5SIG_FLAG_IFINDEX                     = 0x2
        TCP_MD5SIG_FLAG_PREFIX                      = 0x1
        TCP_MD5SIG_MAXKEYLEN                        = 0x50
        TCP_MSS                                     = 0x200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/unix/zerrors_linux_386.go 
new/vendor/golang.org/x/sys/unix/zerrors_linux_386.go
--- old/vendor/golang.org/x/sys/unix/zerrors_linux_386.go       2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/unix/zerrors_linux_386.go       2024-06-22 
09:03:21.000000000 +0200
@@ -118,6 +118,7 @@
        IXOFF                            = 0x1000
        IXON                             = 0x400
        MAP_32BIT                        = 0x40
+       MAP_ABOVE4G                      = 0x80
        MAP_ANON                         = 0x20
        MAP_ANONYMOUS                    = 0x20
        MAP_DENYWRITE                    = 0x800
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go 
new/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
--- old/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go     2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go     2024-06-22 
09:03:21.000000000 +0200
@@ -118,6 +118,7 @@
        IXOFF                            = 0x1000
        IXON                             = 0x400
        MAP_32BIT                        = 0x40
+       MAP_ABOVE4G                      = 0x80
        MAP_ANON                         = 0x20
        MAP_ANONYMOUS                    = 0x20
        MAP_DENYWRITE                    = 0x800
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go 
new/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
--- old/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go     2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go     2024-06-22 
09:03:21.000000000 +0200
@@ -87,6 +87,7 @@
        FICLONE                          = 0x40049409
        FICLONERANGE                     = 0x4020940d
        FLUSHO                           = 0x1000
+       FPMR_MAGIC                       = 0x46504d52
        FPSIMD_MAGIC                     = 0x46508001
        FS_IOC_ENABLE_VERITY             = 0x40806685
        FS_IOC_GETFLAGS                  = 0x80086601
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/unix/ztypes_linux.go 
new/vendor/golang.org/x/sys/unix/ztypes_linux.go
--- old/vendor/golang.org/x/sys/unix/ztypes_linux.go    2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/unix/ztypes_linux.go    2024-06-22 
09:03:21.000000000 +0200
@@ -4605,7 +4605,7 @@
        NL80211_ATTR_MAC_HINT                                   = 0xc8
        NL80211_ATTR_MAC_MASK                                   = 0xd7
        NL80211_ATTR_MAX_AP_ASSOC_STA                           = 0xca
-       NL80211_ATTR_MAX                                        = 0x149
+       NL80211_ATTR_MAX                                        = 0x14a
        NL80211_ATTR_MAX_CRIT_PROT_DURATION                     = 0xb4
        NL80211_ATTR_MAX_CSA_COUNTERS                           = 0xce
        NL80211_ATTR_MAX_MATCH_SETS                             = 0x85
@@ -5209,7 +5209,7 @@
        NL80211_FREQUENCY_ATTR_GO_CONCURRENT                    = 0xf
        NL80211_FREQUENCY_ATTR_INDOOR_ONLY                      = 0xe
        NL80211_FREQUENCY_ATTR_IR_CONCURRENT                    = 0xf
-       NL80211_FREQUENCY_ATTR_MAX                              = 0x1f
+       NL80211_FREQUENCY_ATTR_MAX                              = 0x20
        NL80211_FREQUENCY_ATTR_MAX_TX_POWER                     = 0x6
        NL80211_FREQUENCY_ATTR_NO_10MHZ                         = 0x11
        NL80211_FREQUENCY_ATTR_NO_160MHZ                        = 0xc
@@ -5703,7 +5703,7 @@
        NL80211_STA_FLAG_ASSOCIATED                             = 0x7
        NL80211_STA_FLAG_AUTHENTICATED                          = 0x5
        NL80211_STA_FLAG_AUTHORIZED                             = 0x1
-       NL80211_STA_FLAG_MAX                                    = 0x7
+       NL80211_STA_FLAG_MAX                                    = 0x8
        NL80211_STA_FLAG_MAX_OLD_API                            = 0x6
        NL80211_STA_FLAG_MFP                                    = 0x4
        NL80211_STA_FLAG_SHORT_PREAMBLE                         = 0x2
@@ -6001,3 +6001,34 @@
        Off uint64
        Len uint64
 }
+
+const (
+       SK_MEMINFO_RMEM_ALLOC          = 0x0
+       SK_MEMINFO_RCVBUF              = 0x1
+       SK_MEMINFO_WMEM_ALLOC          = 0x2
+       SK_MEMINFO_SNDBUF              = 0x3
+       SK_MEMINFO_FWD_ALLOC           = 0x4
+       SK_MEMINFO_WMEM_QUEUED         = 0x5
+       SK_MEMINFO_OPTMEM              = 0x6
+       SK_MEMINFO_BACKLOG             = 0x7
+       SK_MEMINFO_DROPS               = 0x8
+       SK_MEMINFO_VARS                = 0x9
+       SKNLGRP_NONE                   = 0x0
+       SKNLGRP_INET_TCP_DESTROY       = 0x1
+       SKNLGRP_INET_UDP_DESTROY       = 0x2
+       SKNLGRP_INET6_TCP_DESTROY      = 0x3
+       SKNLGRP_INET6_UDP_DESTROY      = 0x4
+       SK_DIAG_BPF_STORAGE_REQ_NONE   = 0x0
+       SK_DIAG_BPF_STORAGE_REQ_MAP_FD = 0x1
+       SK_DIAG_BPF_STORAGE_REP_NONE   = 0x0
+       SK_DIAG_BPF_STORAGE            = 0x1
+       SK_DIAG_BPF_STORAGE_NONE       = 0x0
+       SK_DIAG_BPF_STORAGE_PAD        = 0x1
+       SK_DIAG_BPF_STORAGE_MAP_ID     = 0x2
+       SK_DIAG_BPF_STORAGE_MAP_VALUE  = 0x3
+)
+
+type SockDiagReq struct {
+       Family   uint8
+       Protocol uint8
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/windows/security_windows.go 
new/vendor/golang.org/x/sys/windows/security_windows.go
--- old/vendor/golang.org/x/sys/windows/security_windows.go     2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/windows/security_windows.go     2024-06-22 
09:03:21.000000000 +0200
@@ -68,6 +68,7 @@
 //sys  NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf 
**byte) (neterr error) = netapi32.NetUserGetInfo
 //sys  NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) 
(neterr error) = netapi32.NetGetJoinInformation
 //sys  NetApiBufferFree(buf *byte) (neterr error) = netapi32.NetApiBufferFree
+//sys   NetUserEnum(serverName *uint16, level uint32, filter uint32, buf 
**byte, prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32, 
resumeHandle *uint32) (neterr error) = netapi32.NetUserEnum
 
 const (
        // do not reorder
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/sys/windows/zsyscall_windows.go 
new/vendor/golang.org/x/sys/windows/zsyscall_windows.go
--- old/vendor/golang.org/x/sys/windows/zsyscall_windows.go     2024-05-31 
16:37:46.000000000 +0200
+++ new/vendor/golang.org/x/sys/windows/zsyscall_windows.go     2024-06-22 
09:03:21.000000000 +0200
@@ -401,6 +401,7 @@
        procTransmitFile                                         = 
modmswsock.NewProc("TransmitFile")
        procNetApiBufferFree                                     = 
modnetapi32.NewProc("NetApiBufferFree")
        procNetGetJoinInformation                                = 
modnetapi32.NewProc("NetGetJoinInformation")
+       procNetUserEnum                                          = 
modnetapi32.NewProc("NetUserEnum")
        procNetUserGetInfo                                       = 
modnetapi32.NewProc("NetUserGetInfo")
        procNtCreateFile                                         = 
modntdll.NewProc("NtCreateFile")
        procNtCreateNamedPipeFile                                = 
modntdll.NewProc("NtCreateNamedPipeFile")
@@ -3483,6 +3484,14 @@
        if r0 != 0 {
                neterr = syscall.Errno(r0)
        }
+       return
+}
+
+func NetUserEnum(serverName *uint16, level uint32, filter uint32, buf **byte, 
prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32, resumeHandle 
*uint32) (neterr error) {
+       r0, _, _ := syscall.Syscall9(procNetUserEnum.Addr(), 8, 
uintptr(unsafe.Pointer(serverName)), uintptr(level), uintptr(filter), 
uintptr(unsafe.Pointer(buf)), uintptr(prefMaxLen), 
uintptr(unsafe.Pointer(entriesRead)), uintptr(unsafe.Pointer(totalEntries)), 
uintptr(unsafe.Pointer(resumeHandle)), 0)
+       if r0 != 0 {
+               neterr = syscall.Errno(r0)
+       }
        return
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/modules.txt new/vendor/modules.txt
--- old/vendor/modules.txt      2024-05-31 16:37:46.000000000 +0200
+++ new/vendor/modules.txt      2024-06-22 09:03:21.000000000 +0200
@@ -58,8 +58,8 @@
 github.com/seancfoley/ipaddress-go/ipaddr/addrerr
 github.com/seancfoley/ipaddress-go/ipaddr/addrstr
 github.com/seancfoley/ipaddress-go/ipaddr/addrstrparam
-# github.com/shirou/gopsutil/v3 v3.24.4
-## explicit; go 1.15
+# github.com/shirou/gopsutil/v3 v3.24.5
+## explicit; go 1.18
 github.com/shirou/gopsutil/v3/common
 github.com/shirou/gopsutil/v3/cpu
 github.com/shirou/gopsutil/v3/internal/common
@@ -87,7 +87,7 @@
 golang.org/x/exp/maps
 golang.org/x/exp/rand
 golang.org/x/exp/slices
-# golang.org/x/image v0.16.0
+# golang.org/x/image v0.17.0
 ## explicit; go 1.18
 golang.org/x/image/bmp
 golang.org/x/image/ccitt
@@ -97,7 +97,7 @@
 golang.org/x/image/vp8
 golang.org/x/image/vp8l
 golang.org/x/image/webp
-# golang.org/x/sys v0.20.0
+# golang.org/x/sys v0.21.0
 ## explicit; go 1.18
 golang.org/x/sys/cpu
 golang.org/x/sys/unix

Reply via email to