[X2Go-Commits] [buildscripts] 12/12: bin/{sbuild-deb, build-rpm}-package: add FIXME note stating that GitLab clones don't seem to have an "origin" remote.

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit 773c5fb5fd13c61510a07ffcd0c80f12d39a9281
Author: Mihai Moldovan 
Date:   Mon Mar 11 14:41:16 2024 +0100

bin/{sbuild-deb,build-rpm}-package: add FIXME note stating that GitLab 
clones don't seem to have an "origin" remote.
---
 bin/build-rpm-package  | 4 
 bin/sbuild-deb-package | 4 
 2 files changed, 8 insertions(+)

diff --git a/bin/build-rpm-package b/bin/build-rpm-package
index 99d7cfb..d25b39c 100755
--- a/bin/build-rpm-package
+++ b/bin/build-rpm-package
@@ -825,6 +825,10 @@ prepare_workspace() {
git reset --hard
git checkout --force "${CHECKOUT}" || git checkout 
--force -b "${CHECKOUT}"
git fetch 'origin' "${CHECKOUT}"
+   # FIXME: there might be an issue with GitLab 
repositories not having an
+   #"origin" remote, but dropping this here would 
mean that our clones
+   #cannot be updated any longer. We'll keep it 
as-is for now and
+   #check the GitLab issue at a later time.
git reset --hard "origin/${CHECKOUT}"
git branch -D 'upstream' || true
git fetch 'origin' 'upstream:upstream' || true
diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package
index 581679d..fa2a2f7 100755
--- a/bin/sbuild-deb-package
+++ b/bin/sbuild-deb-package
@@ -184,6 +184,10 @@ prepare_workspace() {
git reset --hard
git checkout --force "${CHECKOUT}" || git checkout 
--force -b "${CHECKOUT}"
git fetch 'origin' "${CHECKOUT}"
+   # FIXME: there might be an issue with GitLab 
repositories not having an
+   #"origin" remote, but dropping this here would 
mean that our clones
+   #cannot be updated any longer. We'll keep it 
as-is for now and
+   #check the GitLab issue at a later time.
git reset --hard "origin/${CHECKOUT}"
git branch -D 'upstream' || true
git fetch 'origin' 'upstream:upstream' || true

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 10/12: bin/sbuild-deb-package: also remove .buildinfo files (used for reproducible builds).

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit e9cad31aeb26e10ba15a52eedd3042bff4ad26a4
Author: Mihai Moldovan 
Date:   Thu Mar 7 13:10:10 2024 +0100

bin/sbuild-deb-package: also remove .buildinfo files (used for reproducible 
builds).
---
 bin/sbuild-deb-package | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package
index a30d938..f616f48 100755
--- a/bin/sbuild-deb-package
+++ b/bin/sbuild-deb-package
@@ -304,6 +304,7 @@ clear_pkgdist() {
rm -f -- 
"${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/"*_*.changes
rm -f -- 
"${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/"*_*.upload
rm -f -- 
"${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/"*_*.build
+   rm -f -- 
"${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/"*_*.buildinfo
rm -f -- 
"${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/"*_*.dsc
rm -f -- 
"${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/"*_*.tar.gz
rm -f -- 
"${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/"*.deb

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 08/12: bin/{build-rpm, sbuild-deb}-package: add new PKGDIST_BASE global option to select base pkg-dist directory.

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit bf23b2137e901426fa30a6d36cc7e2b02df23d61
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:55:17 2024 +0100

bin/{build-rpm,sbuild-deb}-package: add new PKGDIST_BASE global option to 
select base pkg-dist directory.

Defaults to "${HOME}/pkg-dist".
---
 bin/build-rpm-package  | 3 ++-
 bin/sbuild-deb-package | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/bin/build-rpm-package b/bin/build-rpm-package
index 9ee5520..94b5c15 100755
--- a/bin/build-rpm-package
+++ b/bin/build-rpm-package
@@ -67,6 +67,7 @@ test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . 
"${HOME}/.buildscripts/${PRE
 : "${RPM_BUILD_FOR:="fedora:${FEDORA_DISTROS} epel:${EPEL_DISTROS} 
opensuse:${OPENSUSE_DISTROS} sle:${SLE_DISTROS}"}"
 : "${PLATFORM:="x86"}"
 : "${BUILD_BASE:="${HOME}/build"}"
+: "${PKGDIST_BASE:="${HOME}/pkg-dist"}"
 
 # These parts are not user-serviceable.
 TMP_MOCK_CFG_DIR=""
@@ -166,7 +167,7 @@ set_vars() {
 
# setting paths
PROJECT_DIR="${BUILD_BASE}/${COMPONENT}/${PROJECT}"
-   PKGDIST="${HOME}/pkg-dist/${COMPONENT}/${PROJECT}"
+   PKGDIST="${PKGDIST_BASE}/${COMPONENT}/${PROJECT}"
 
# lock file
LOCK_FILE="${PROJECT_DIR}/../.${PROJECT}.lock"
diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package
index 61e9f49..2aaa4e3 100755
--- a/bin/sbuild-deb-package
+++ b/bin/sbuild-deb-package
@@ -59,6 +59,7 @@ test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . 
"${HOME}/.buildscripts/${PRE
 : ${FLAVOR:="native"}
 : ${PLATFORM:="x86"}
 : "${BUILD_BASE:="${HOME}/build"}"
+: "${PKGDIST_BASE:="${HOME}/pkg-dist"}"
 
 # These parts are not user-serviceable.
 typeset -ag temp_cleanup=""
@@ -116,7 +117,7 @@ set_vars() {
 
# setting paths
PROJECT_DIR="${BUILD_BASE}/${COMPONENT}/${PROJECT}"
-   PKGDIST="${HOME}/pkg-dist/${COMPONENT}/${PROJECT}"
+   PKGDIST="${PKGDIST_BASE}/${COMPONENT}/${PROJECT}"
 
# lock file
LOCK_FILE="${PROJECT_DIR}/../.${PROJECT}.lock"

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 07/12: bin/{build-rpm, sbuild-deb}-package: add new BUILD_BASE global option to select base building directory.

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit 4027a45c9edc0b08e7dc1d651c10df3d8b6980e3
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:52:53 2024 +0100

bin/{build-rpm,sbuild-deb}-package: add new BUILD_BASE global option to 
select base building directory.

Defaults to "${HOME}/build".
---
 bin/build-rpm-package  | 3 ++-
 bin/sbuild-deb-package | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/bin/build-rpm-package b/bin/build-rpm-package
index 6c38358..9ee5520 100755
--- a/bin/build-rpm-package
+++ b/bin/build-rpm-package
@@ -66,6 +66,7 @@ test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . 
"${HOME}/.buildscripts/${PRE
 : "${FORCE_BUILD:="no"}"
 : "${RPM_BUILD_FOR:="fedora:${FEDORA_DISTROS} epel:${EPEL_DISTROS} 
opensuse:${OPENSUSE_DISTROS} sle:${SLE_DISTROS}"}"
 : "${PLATFORM:="x86"}"
+: "${BUILD_BASE:="${HOME}/build"}"
 
 # These parts are not user-serviceable.
 TMP_MOCK_CFG_DIR=""
@@ -164,7 +165,7 @@ set_vars() {
BUILD_NUMBER="${BUILD_NUMBER:-"0"}"
 
# setting paths
-   PROJECT_DIR="${HOME}/build/${COMPONENT}/${PROJECT}"
+   PROJECT_DIR="${BUILD_BASE}/${COMPONENT}/${PROJECT}"
PKGDIST="${HOME}/pkg-dist/${COMPONENT}/${PROJECT}"
 
# lock file
diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package
index b2a2db7..61e9f49 100755
--- a/bin/sbuild-deb-package
+++ b/bin/sbuild-deb-package
@@ -58,6 +58,7 @@ test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . 
"${HOME}/.buildscripts/${PRE
 : ${DEB_BUILD_FOR:="debian:${DEBIAN_DISTROS} ubuntu:${UBUNTU_DISTROS} 
raspbian:${RASPBIAN_DISTROS}"}
 : ${FLAVOR:="native"}
 : ${PLATFORM:="x86"}
+: "${BUILD_BASE:="${HOME}/build"}"
 
 # These parts are not user-serviceable.
 typeset -ag temp_cleanup=""
@@ -114,7 +115,7 @@ set_vars() {
BUILD_NUMBER="${BUILD_NUMBER:-"0"}"
 
# setting paths
-   PROJECT_DIR="${HOME}/build/${COMPONENT}/${PROJECT}"
+   PROJECT_DIR="${BUILD_BASE}/${COMPONENT}/${PROJECT}"
PKGDIST="${HOME}/pkg-dist/${COMPONENT}/${PROJECT}"
 
# lock file

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 05/12: home/.dupload.conf.x2go: add new debian distro "trixie" (current testing.)

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit 0d591e8c343ec59c7a67cf622b5d3de0ad2b0659
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:22:24 2024 +0100

home/.dupload.conf.x2go: add new debian distro "trixie" (current testing.)
---
 home/.dupload.conf.x2go | 8 
 1 file changed, 8 insertions(+)

diff --git a/home/.dupload.conf.x2go b/home/.dupload.conf.x2go
index d8f4926..95c4028 100644
--- a/home/.dupload.conf.x2go
+++ b/home/.dupload.conf.x2go
@@ -9,6 +9,14 @@ $cfg{"x2go-debian-sid"} = {
 queuedir => "/srv/sites/x2go.org/packages/debian/upload/sid",
 dinstall_runs => 1,
 };
+$cfg{"x2go-debian-trixie"} = {
+fqdn => "code.x2go.org",
+login => "x2go-admin",
+method => "scpb",
+incoming => "/srv/sites/x2go.org/packages/debian/incoming/trixie",
+queuedir => "/srv/sites/x2go.org/packages/debian/upload/trixie",
+dinstall_runs => 1,
+};
 $cfg{"x2go-debian-bookworm"} = {
 fqdn => "code.x2go.org",
 login => "x2go-admin",

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 06/12: bin/sbuild-deb-package: add new SKIP_ARCH_ALL boolean option to forcefully skip building of "Architecture: all" packages.

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit a6dbbbe5b0cae6c9f6d982da6641b2034c88ae92
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:41:50 2024 +0100

bin/sbuild-deb-package: add new SKIP_ARCH_ALL boolean option to forcefully 
skip building of "Architecture: all" packages.
---
 bin/sbuild-deb-package | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package
index b9730c0..b2a2db7 100755
--- a/bin/sbuild-deb-package
+++ b/bin/sbuild-deb-package
@@ -54,6 +54,7 @@ test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . 
"${HOME}/.buildscripts/${PRE
 
 : ${NO_DELAY:="no"}
 : ${FORCE_BUILD:="no"}
+: "${SKIP_ARCH_ALL:='no'}"
 : ${DEB_BUILD_FOR:="debian:${DEBIAN_DISTROS} ubuntu:${UBUNTU_DISTROS} 
raspbian:${RASPBIAN_DISTROS}"}
 : ${FLAVOR:="native"}
 : ${PLATFORM:="x86"}
@@ -419,7 +420,7 @@ build_packages() {
dch --distribution "${codename}" 
--force-distribution -l 
"~git${DATE}.${GITREV}+${numerical_version}.${COMPONENT}." 
"Development-Snapshot!!! Auto-built ${pretty_dist} ${l_CODENAME} 
(${numerical_version}) package for ${REPOS_SERVER} repository (Git commit: 
${GIT_OBJECT_ID})."
fi
 
-   typeset -i skip_arch_all="0"
+   typeset -i skip_arch_all="${SKIP_ARCH_ALL}"
typeset -a arches
arches=()
case "${PLATFORM}" in
@@ -624,6 +625,7 @@ set_vars "${@}" && {
if [ "x$(basename "${0}")" = "x${PREFIX}-sbuild-deb-package" ] || [ 
"x$(basename "${0}")" = "x${PREFIX}-sbuild+upload-deb-package" ]; then
FORCE_BUILD="$(make_boolean "${FORCE_BUILD}")"
NO_DELAY="$(make_boolean "${NO_DELAY}")"
+   SKIP_ARCH_ALL="$(make_boolean "${SKIP_ARCH_ALL}")"
 
cd "${PROJECT_DIR}" && {
pkgneedsbuild "${CHECKOUT}" || [ "${FORCE_BUILD}" -eq 
"1" ]

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 03/12: bin/sbuild-deb-package: add new debian distro "trixie" (current testing.)

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit 27eb34191b801f1efe9f2a97a27792a41f1ebe70
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:20:36 2024 +0100

bin/sbuild-deb-package: add new debian distro "trixie" (current testing.)
---
 bin/sbuild-deb-package | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package
index 87ee6bf..b9730c0 100755
--- a/bin/sbuild-deb-package
+++ b/bin/sbuild-deb-package
@@ -27,7 +27,7 @@ DEBEMAIL="firstname.lastn...@mydomain.org"
 DEBFULLNAME="Firstname Lastname"
 GPG_KEY=""
 DEB_DISTS_SUPPORTED="debian ubuntu raspbian"
-DEBIAN_DISTROS="lenny,squeeze,wheezy,jessie,stretch,buster,bullseye,bookworm,sid"
+DEBIAN_DISTROS="lenny,squeeze,wheezy,jessie,stretch,buster,bullseye,bookworm,trixie,sid"
 RASPBIAN_DISTROS="jessie,stretch,buster,bullseye"
 UBUNTU_DISTROS="lucid,precise,trusty,xenial,yakkety"
 

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 04/12: home/.buildscripts/x2go.conf: add new debian distro "trixie" (current testing.)

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit c607146cb4a39429777d4523ee20454e7c5aeec0
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:21:32 2024 +0100

home/.buildscripts/x2go.conf: add new debian distro "trixie" (current 
testing.)
---
 home/.buildscripts/x2go.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/home/.buildscripts/x2go.conf b/home/.buildscripts/x2go.conf
index 0c4696b..77a68af 100644
--- a/home/.buildscripts/x2go.conf
+++ b/home/.buildscripts/x2go.conf
@@ -7,7 +7,7 @@ GIT_SSH_PORT="32032"
 DEBEMAIL="git-ad...@x2go.org"
 DEBFULLNAME="X2Go Git Administrator"
 DEB_DISTS_SUPPORTED="debian raspbian"
-: ${DEB_BUILD_FOR:="debian:jessie,stretch,buster,bullseye,bookworm,sid 
raspbian:jessie,stretch,buster,bullseye"}
+: ${DEB_BUILD_FOR:="debian:jessie,stretch,buster,bullseye,bookworm,trixie,sid 
raspbian:jessie,stretch,buster,bullseye"}
 
 # Shared for both RPM and DEB.
 GPG_KEY="F4A7678C9C6B0B2B"

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 01/12: bin/debian-codename-to-version.sh: use single quotes where appropriate.

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit 98ea823dcb3ea2cd3bf7fdd89ee93334bd662641
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:16:22 2024 +0100

bin/debian-codename-to-version.sh: use single quotes where appropriate.

No functional changes.
---
 bin/debian-codename-to-version.sh | 40 +++
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/bin/debian-codename-to-version.sh 
b/bin/debian-codename-to-version.sh
index 3c502fd..d13169a 100755
--- a/bin/debian-codename-to-version.sh
+++ b/bin/debian-codename-to-version.sh
@@ -38,13 +38,13 @@ if [ -z "${BASH_VERSINFO[0]}" ] || [ "${BASH_VERSINFO[0]}" 
-lt 4 ]; then
codename="$(tr '[:upper:]' '[:lower:]' <<< "${codename}")"
 fi
 
-typeset -i ret="0"
+typeset -i ret='0'
 
 case "${codename}" in
# The first version number is actually "fake",
# but given it's a rolling release,
# we can't really do better here.
-   ("sid"|"unstable") echo "";;
+   ('sid'|'unstable') echo '';;
 
# FIXME: add "testing" - but how? It's not really
# a stable release on its own, but a rolling
@@ -66,26 +66,26 @@ case "${codename}" in
# For now and due to the aforementioned problems,
# I decided to not handle the "testing" code name
# at all.
-   ("bookworm") echo "12";;
+   ('bookworm') echo '12';;
 
-   ("bullseye") echo "11";;
-   ("buster") echo "10";;
-   ("stretch") echo "9";;
-   ("jessie") echo "8";;
-   ("wheezy") echo "7";;
-   ("squeeze") echo "6";;
-   ("lenny") echo "5";;
-   ("etch") echo "4";;
-   ("sarge") echo "3.1";;
-   ("woody") echo "3.0";;
-   ("potato") echo "2.2";;
-   ("slink") echo "2.1";;
-   ("hamm") echo "2.0";;
-   ("bo") echo "1.3";;
-   ("rex") echo "1.2";;
-   ("buzz") echo "1.1";;
+   ('bullseye') echo '11';;
+   ('buster') echo '10';;
+   ('stretch') echo '9';;
+   ('jessie') echo '8';;
+   ('wheezy') echo '7';;
+   ('squeeze') echo '6';;
+   ('lenny') echo '5';;
+   ('etch') echo '4';;
+   ('sarge') echo '3.1';;
+   ('woody') echo '3.0';;
+   ('potato') echo '2.2';;
+   ('slink') echo '2.1';;
+   ('hamm') echo '2.0';;
+   ('bo') echo '1.3';;
+   ('rex') echo '1.2';;
+   ('buzz') echo '1.1';;
 
-   (*) ret="1";;
+   (*) ret='1';;
 esac
 
 exit "${ret}"

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] branch master updated (979e653 -> 773c5fb)

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository buildscripts.

  from  979e653   bin/nsis-builder.bat: use UPX 4.0.2.
   new  98ea823   bin/debian-codename-to-version.sh: use single quotes 
where appropriate.
   new  e29565e   bin/debian-codename-to-version.sh: add trixie codename.
   new  27eb341   bin/sbuild-deb-package: add new debian distro "trixie" 
(current testing.)
   new  c607146   home/.buildscripts/x2go.conf: add new debian distro 
"trixie" (current testing.)
   new  0d591e8   home/.dupload.conf.x2go: add new debian distro "trixie" 
(current testing.)
   new  a6dbbbe   bin/sbuild-deb-package: add new SKIP_ARCH_ALL boolean 
option to forcefully skip building of "Architecture: all" packages.
   new  4027a45   bin/{build-rpm,sbuild-deb}-package: add new BUILD_BASE 
global option to select base building directory.
   new  bf23b21   bin/{build-rpm,sbuild-deb}-package: add new PKGDIST_BASE 
global option to select base pkg-dist directory.
   new  90bef9a   bin/{build-rpm,sbuild-deb}-package: add 'arm' as 
recognized value to PLATFORM variable.
   new  e9cad31   bin/sbuild-deb-package: also remove .buildinfo files 
(used for reproducible builds).
   new  546b8f4   bin/sbuild-deb-package: also support orig.tar.xz files.
   new  773c5fb   bin/{sbuild-deb,build-rpm}-package: add FIXME note 
stating that GitLab clones don't seem to have an "origin" remote.

The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/build-rpm-package | 19 --
 bin/debian-codename-to-version.sh | 41 ---
 bin/sbuild-deb-package| 37 +--
 home/.buildscripts/x2go.conf  |  2 +-
 home/.dupload.conf.x2go   |  8 
 5 files changed, 78 insertions(+), 29 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [buildscripts] 02/12: bin/debian-codename-to-version.sh: add trixie codename.

2024-03-11 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository buildscripts.

commit e29565e6e910a15922dca7abc225d00de667e3ef
Author: Mihai Moldovan 
Date:   Thu Mar 7 12:17:26 2024 +0100

bin/debian-codename-to-version.sh: add trixie codename.
---
 bin/debian-codename-to-version.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bin/debian-codename-to-version.sh 
b/bin/debian-codename-to-version.sh
index d13169a..c07e96e 100755
--- a/bin/debian-codename-to-version.sh
+++ b/bin/debian-codename-to-version.sh
@@ -66,8 +66,9 @@ case "${codename}" in
# For now and due to the aforementioned problems,
# I decided to not handle the "testing" code name
# at all.
-   ('bookworm') echo '12';;
+   ('trixie') echo '13';;
 
+   ('bookworm') echo '12';;
('bullseye') echo '11';;
('buster') echo '10';;
('stretch') echo '9';;

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/buildscripts.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


Coverity Scan: Analysis completed for varnish

2024-03-11 Thread scan-admin


Your request for analysis of varnish has been completed successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu6BUNirv33lqHGQsDVQ-2BP2tg6QNq2-2FpfeAVxnw32Pj2zw-3D-3D8WLI_yQhjbMw4LeDZMA4nqwf-2BPKRH1TcZpi4LlAZWuGRhHR3KApUqk9xZHEUowi-2BtlCiXV8hqFCSvGFuqvxsHiUN-2BLxnmakupU1lnYDb-2FUxw0Il0sFE014uwe9m8ZP7D9G6TKEcQMWB2iQjViW4vZXE6BCnYdIe01N0EjNlmRry844BabwJZfesU5NPBY6a9jC4JqGPto2Dyiho3pSuFd07q2Dgd-2FZB14eheema1WEDIz8lk-3D

Build ID: 597466

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
varnish-dev mailing list
varnish-dev@varnish-cache.org
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-dev


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-10 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3D9m9D_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84SysNeF2RTp4h5PRZ-2FzrYgXR5VV-2FCGZGXwdx6EETbIZYXgDTajf663LDW29v4CG2guMC5v3FwIpPsCDvdbX-2BgWQD-2FAuniNf3lALa9tM8vwqf-2Bwoi2TJr13MoVEDjj60JbWf1c8z5pRgzmW-2FlUa5Z8H-2BZku67YVurIRqQ7yhd9Fwg-3D-3D

Build ID: 597434

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-09 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3D-5n-_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84DdXRNZ6pj-2B10PojeasP8svZQg3HaR9381rx0gdcsVUzQenUZoseDKoR5SjDDgvFCFpQUy530s1WEv13cPcka7lDvFaBNRYubUdVgqJCLxLu53BYpakWlz9y9Dc01xkqkegDx9bRc5huYvljtdOT6IEEu2KmOQYWmQgB-2BjF-2FfcqA-3D-3D

Build ID: 597192

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-08 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DrTCk_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro87Fu4aci5b2aUFwa5oHCrJLOsV44rE9kpfte4u5LOy-2F1IZZpXAHJSeslBsYXs4NlVklRuWDlz8gPq2XjkGbXzvE5RZkGm5jIg-2BXwN3kPpRgzd8-2BnOB-2BKapjs5o3-2FnwSQRrSRuXOFNqMnC12MfS-2FevMz9QlqJwnV68EweUtZrRnFfg-3D-3D

Build ID: 596984

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[FFmpeg-devel] [PATCH] Fix for Incorrect Parameter in ff_filter_config_links Function Call

2024-03-08 Thread admin
From: 联盟少侠 

src/libavfilter/internal.h:255:45: note: passing argument to parameter 'filter' 
here
int ff_filter_config_links(AVFilterContext *filter);
---
 libavfilter/avfilter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 596a139..c323ebb 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -214,7 +214,7 @@ void avfilter_link_free(AVFilterLink **link)
 }
 int avfilter_config_links(AVFilterContext *filter)
 {
-return ff_filter_config_links(EINVAL);
+return ff_filter_config_links(filter);
 }
 #endif
 
-- 
2.41.0.windows.3

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


New Defects reported by Coverity Scan for LibreOffice

2024-03-07 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

5 new defect(s) introduced to LibreOffice found with Coverity Scan.
4 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 5 of 5 defect(s)


** CID 1592991:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Properties.cxx: 796 in 
chart::ChartController::executeDlg_ObjectProperties_withUndoGuard(std::shared_ptr,
 const rtl::OUString &, bool)()



*** CID 1592991:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Properties.cxx: 796 in 
chart::ChartController::executeDlg_ObjectProperties_withUndoGuard(std::shared_ptr,
 const rtl::OUString &, bool)()
790 {
791 aDlgPtr->SetAxisMinorStepWidthForErrorBarDecimals(
792 
InsertErrorBarsDialog::getAxisMinorStepWidthForErrorBarDecimals( xChartDoc, 
m_xChartView, rObjectCID ) );
793 }
794 
795 //open the dialog
>>> CID 1592991:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
>>> "aUndoGuard" is copied in call to copy constructor 
>>> "std::shared_ptr", when it could be moved instead.
796 SfxTabDialogController::runAsync(aDlgPtr, [aDlgPtr, xChartDoc, 
pItemConverter, bSuccessOnUnchanged, aUndoGuard] (int nResult)
797 {
798 if (nResult == RET_OK || (bSuccessOnUnchanged && 
aDlgPtr->DialogWasClosedWithOK())) {
799 const SfxItemSet* pOutItemSet = 
aDlgPtr->GetOutputItemSet();
800 if(pOutItemSet) {
801 ControllerLockGuardUNO aCLGuard(xChartDoc);

** CID 1592990:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Properties.cxx: 712 in 
chart::ChartController::executeDlg_ObjectProperties(const rtl::OUString &)()



*** CID 1592990:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Properties.cxx: 712 in 
chart::ChartController::executeDlg_ObjectProperties(const rtl::OUString &)()
706 auto aUndoGuard = std::make_shared(
707 ActionDescriptionProvider::createDescription(
708 ActionDescriptionProvider::ActionType::Format,
709 ObjectNameProvider::getName( 
ObjectIdentifier::getObjectType( aObjectCID ))),
710 m_xUndoManager );
711 
>>> CID 1592990:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
>>> "aUndoGuard" is passed-by-value as parameter to 
>>> "executeDlg_ObjectProperties_withUndoGuard" when it could be moved instead.
712 ChartController::executeDlg_ObjectProperties_withUndoGuard( 
aUndoGuard, aObjectCID, false );
713 }
714 
715 void ChartController::executeDlg_ObjectProperties_withUndoGuard(
716 std::shared_ptr aUndoGuard,const OUString& rObjectCID, 
bool bSuccessOnUnchanged )
717 {

** CID 1592989:  Null pointer dereferences  (FORWARD_NULL)
/vcl/source/window/brdwin.cxx: 2014 in ImplBorderWindow::FlashWindow() const()



*** CID 1592989:  Null pointer dereferences  (FORWARD_NULL)
/vcl/source/window/brdwin.cxx: 2014 in ImplBorderWindow::FlashWindow() const()
2008 vcl::Window* pMyParent = mpWindowImpl->mpParent;
2009 while (pMyParent && pMyParent->mpWindowImpl && 
pMyParent->mpWindowImpl->mpParent)
2010 {
2011 pMyParent = pMyParent->mpWindowImpl->mpParent;
2012 }
2013 if (pMyParent) {
>>> CID 1592989:  Null pointer dereferences  (FORWARD_NULL)
>>> Attempting to access the managed object of an empty smart pointer 
>>> "pMyParent->mpWindowImpl".
2014 pMyParent->mpWindowImpl->mpFrame->FlashWindow();
2015 }
2016 }
2017 

** CID 1592988:  Uninitialized members  (UNINIT_CTOR)
/sw/source/core/text/porlay.cxx: 852 in SwLineLayout::SwLineLayout()()



*** CID 1592988:  Uninitialized members  (UNINIT_CTOR)
/sw/source/core/text/porlay.cxx: 852 in SwLineLayout::SwLineLayout()()
846   m_nRealHeight( 0 ),
847   m_nTextHeight( 0 ),
848   m_bUnderscore( false )
849 {
850 ResetFlags();
851 SetWhichPor( PortionType::Lay );
>>> CID 1592988:  Uninitialized members  (UNINIT_CTOR)
>>> Non-static class member "m_bLastHyph" is not initialized in this 
>>> constructor nor in any functions that it calls.
852 }
853 
854 SwLinePortion 

[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-07 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DgBu3_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84-2Fc0aYEsXAtPtTFLivxD28BpNcZCLgG3a2caNHJ4Yky7n6qtr1FuyGTcoO9dA4b4o8ksWuBq4wC3RrJSTNj-2B8jKA0gZneFmjl19eFaUpoJTbuOFPNrIOXbrIjf5Zo7wXUGWAKHTU-2F27iNVrBsmpdKSEQsELO94YKUGq5MxmbyUPoNgeDH4hL4O7oiDQds2kiQ-3D

Build ID: 596743

Analysis Summary:
   New defects found: 0
   Defects eliminated: 2

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[X2Go-Commits] [x2gokdrive] 01/02: debian/rules: fix typo: ibxcb-util0-dev => libxcb-util0-dev.

2024-03-07 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 3106359e8cf1f5640714919dc2e7441506bb1086
Author: Mihai Moldovan 
Date:   Thu Mar 7 10:34:42 2024 +0100

debian/rules: fix typo: ibxcb-util0-dev => libxcb-util0-dev.

Fixes builds on buster.
---
 debian/changelog | 2 ++
 debian/control   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 622c377..1b7272d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -27,6 +27,8 @@ x2gokdrive (0.0.0.3-0x2go1) UNRELEASED; urgency=medium
   tabs use WebSocket connections, this might not always work correctly.
   Since timers typically coalesce at one-minute intervals, a two-minutes
   timeout should be fine.
+  * debian/rules:
++ Fix typo: ibxcb-util0-dev => libxcb-util0-dev. Fixes builds on buster.
 
  -- X2Go Release Manager   Tue, 12 Sep 2023 22:28:20 +0200
 
diff --git a/debian/control b/debian/control
index 714a3d3..9f66ca1 100644
--- a/debian/control
+++ b/debian/control
@@ -81,7 +81,7 @@ Build-Depends:
  libxcb-shape0-dev,
  libxcb-render0-dev,
  libxcb-render-util0-dev,
- libxcb-util-dev | ibxcb-util0-dev,
+ libxcb-util-dev | libxcb-util0-dev,
  libxcb-image0-dev,
  libxcb-icccm4-dev,
  libxcb-shm0-dev,

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] branch master updated (e7821d5 -> d819f0a)

2024-03-07 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository x2gokdrive.

  from  e7821d5   Merge branch 'feature/web-timeout-2m' into 'master'
   new  3106359   debian/rules: fix typo: ibxcb-util0-dev => 
libxcb-util0-dev.
   new  d819f0a   Merge branch 'personal/Ionic/fix-buster' into 'master'

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 2 ++
 debian/control   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 02/02: Merge branch 'personal/Ionic/fix-buster' into 'master'

2024-03-07 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit d819f0a01213025c98406f8ab03bf319525b7199
Merge: e7821d5 3106359
Author: Mihai Moldovan 
Date:   Thu Mar 7 11:00:15 2024 +0100

Merge branch 'personal/Ionic/fix-buster' into 'master'

debian/rules: fix typo: ibxcb-util0-dev => libxcb-util0-dev.

Attributes GL MR !5: 
https://gitlab.x2go.org/x2go/server/drivers/x2gokdrive/-/merge_requests/5

 debian/changelog | 2 ++
 debian/control   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-06 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3Dyf7i_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro87Gu3-2FauDR6jZ36tOwRkbq0B0uZ49Yydl37-2Bp9saAtCBR3-2BJ2n285lZYM633bzJehRFCg89XT9ZUICY1Cj0AyGu6BrSLRz-2BfJsj4rCdWMETgZNtYQ4rBKU-2BeyVo1jsZCujVHmwcy2PRliqSFm8Xcwoyt9jh24tw0-2FVZyctOrxwATw-3D-3D

Build ID: 596473

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-05 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3D24v4_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro85vz2bBr-2FXLSzaTZpVVOMcI6vNCaE8UmSMnDJHBQ0GjJl5BrrsKxmzR1Zc-2Fl7in-2FOWYxKUIGjX8E8VPCV9wqIbNthTPdqP9C9ECu0yyhBScLGTBtfUNZlitpy4Rbv5ZGrnYjV2-2B7ZgengPwrmCr-2FxDGUT5hhiQqPzt8CPW2-2F8U6Jw-3D-3D

Build ID: 596220

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[X2Go-Commits] [[X2Go Wiki]] page changed: events:x2go-gathering-2024

2024-03-05 Thread wiki-admin
A page in your DokuWiki was added or changed. Here are the details:

Browser : Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 
(KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
IP Address  : 178.202.75.45
Hostname: ip-178-202-075-045.um47.pools.vodafone-ip.de
Old Revision: 
https://wiki.x2go.org/doku.php/events:x2go-gathering-2024?rev=1709670166
New Revision: https://wiki.x2go.org/doku.php/events:x2go-gathering-2024
Date of New Revision: 2024/03/05 20:24
Edit Summary: 
User: stefanbaur

There may be newer changes after this revision. If this
happens, a message will be shown on the top of the rev page.

@@ -24,9 +24,9 @@
  
  ** Venue Availability Matrix **
  ^ Venue ^ 2024-05-31 to 2024-06-02 ^ 2024-06-07 to 2024-06-09 ^ 2024-06-14 to 
2024-06-16 ^ 2024-06-21 to 2024-06-23 ^ 2024-06-28 to 2024-06-30 ^ 
Entertainment Option ^
  | Linuxhotel | No | No | No | No | Yes | A320 flight simulator? |
- | Adventure-Campus | Preferred | Yes | Yes | Maybe | Yes | Model 
Railroad? |
+ | Adventure-Campus | Preferred by AdventureCampus | Yes | Yes | 
Maybe | Yes | Model Railroad? |
  | Shackspace | Yes | Yes | No | Yes | No | Trip to one of the 
castles nearby? Zoological/Botanical Garden? |
  | Hacking Hotel | Yes | Yes | No | No | No | Hike to nearest 
waterfall? Movie Night? |
  (maybe = venue has not replied regarding this particular date yet)
  


-- 
This mail was generated by DokuWiki at
https://wiki.x2go.org/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [[X2Go Wiki]] page changed: events:x2go-gathering-2024

2024-03-05 Thread wiki-admin
A page in your DokuWiki was added or changed. Here are the details:

Browser : Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 
(KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
IP Address  : 178.202.75.45
Hostname: ip-178-202-075-045.um47.pools.vodafone-ip.de
Old Revision: 
https://wiki.x2go.org/doku.php/events:x2go-gathering-2024?rev=1705920465
New Revision: https://wiki.x2go.org/doku.php/events:x2go-gathering-2024
Date of New Revision: 2024/03/05 20:22
Edit Summary: Added Adventure-Campus offer
User: stefanbaur

There may be newer changes after this revision. If this
happens, a message will be shown on the top of the rev page.

@@ -24,9 +24,9 @@
  
  ** Venue Availability Matrix **
  ^ Venue ^ 2024-05-31 to 2024-06-02 ^ 2024-06-07 to 2024-06-09 ^ 2024-06-14 to 
2024-06-16 ^ 2024-06-21 to 2024-06-23 ^ 2024-06-28 to 2024-06-30 ^ 
Entertainment Option ^
  | Linuxhotel | No | No | No | No | Yes | A320 flight simulator? |
- | Adventure-Campus | Maybe | Maybe | Maybe | Maybe | Maybe | Model 
Railroad? |
+ | Adventure-Campus | Preferred | Yes | Yes | Maybe | Yes | Model 
Railroad? |
  | Shackspace | Yes | Yes | No | Yes | No | Trip to one of the 
castles nearby? Zoological/Botanical Garden? |
  | Hacking Hotel | Yes | Yes | No | No | No | Hike to nearest 
waterfall? Movie Night? |
  (maybe = venue has not replied regarding this particular date yet)
  


-- 
This mail was generated by DokuWiki at
https://wiki.x2go.org/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


Coverity Scan: Analysis completed for varnish

2024-03-05 Thread scan-admin


Your request for analysis of varnish has been completed successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu6BUNirv33lqHGQsDVQ-2BP2tg6QNq2-2FpfeAVxnw32Pj2zw-3D-3DQ0nt_yQhjbMw4LeDZMA4nqwf-2BPKRH1TcZpi4LlAZWuGRhHR2Nz0Clp7joACblnBrF3iZ-2B9N2-2B8zNjyL3qVqzRF7wZgriHPgteG2VzMLVv3OhtuVdxa19QxmLI3PDs2KtBe0EyYxzIDbGnsX9DzfdyPR-2FsLtrZfM6GubUKI5aDwxZPbMB36SmfpJtDfRkARnkXuGbhIl32YxcwwUTTn2C4QxyuSW7M3iKyMEthe3kL-2Fz80bGo-3D

Build ID: 595990

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
varnish-dev mailing list
varnish-dev@varnish-cache.org
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-dev


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-04 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DX65I_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro87gIm9NykDarlgg7bzUka8UsX3YTWkZHmInUNLqXinDag679z-2ByVr54oQvabgwxlGA6oqYjJ-2BBOFS29vRyoUiKhpu9MavB3KG33JtuZlMX2FOQHVaAtoURKR4cNTMX5IFUR1aDyJiIlSYGj4L2nTPVfvcx663ucREsDVaPt6cnoDA-3D-3D

Build ID: 595929

Analysis Summary:
   New defects found: 0
   Defects eliminated: 1

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


Coverity Scan: Analysis completed for varnish

2024-03-04 Thread scan-admin


Your request for analysis of varnish has been completed successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu6BUNirv33lqHGQsDVQ-2BP2tg6QNq2-2FpfeAVxnw32Pj2zw-3D-3Dggwa_yQhjbMw4LeDZMA4nqwf-2BPKRH1TcZpi4LlAZWuGRhHR0tsVcSPDDrUsRi354vTa98NInieMeSqNYplMiUM2XPGU9-2BvY7qlZ2O8lbLiXNTqf2dEcvzrM9bjCLD2PO6aYRSEWiSpC7RflYtLyUbe3nsB44tg2H4ymCIYiTqDPvlyv-2BFJflkpM4o4MEkJcDc1UKvlf8R0TxyYVFgmgBmhnluO7tqmLAiJjk-2FeHv-2FIwUXsFc-3D

Build ID: 595730

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
varnish-dev mailing list
varnish-dev@varnish-cache.org
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-dev


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-03 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DLoae_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro85m5N-2Bm6563XWrekxxSuI5J5P6VPtA5Mn9gWk-2BlWyDqFzPMKugrDl8soP3Ay9GjcZLUTR6c0huZ-2FhK-2BdIrLXqUTb3scSKNN3fmlWZpmH5Bn7R5Fd3SQexTvvkxZ4bV9upuvXemI71plLcV-2BLZkgBKYE7Nq-2FoS14U405dAp-2Fm-2FGs-2Bg-3D-3D

Build ID: 595703

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-02 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DjjFe_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro86HIDb2c9-2FNAvdFrQhtxISexYThfHG5b9lHjePFKpcUbxnlYggDzZ7chd70MEBG0ECALBcH8e1GxrzyGMZ5Ul-2B71BB7EiS6uE4u-2FtdEQvzaxw1RIiWi-2BNSMYYAa0g-2BcqZRxeM-2BtVDSV9X-2Fb7qkA5i3af8T1c3Rbtsspj48EHAXYDA-3D-3D

Build ID: 595496

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


New Defects reported by Coverity Scan for LibreOffice

2024-03-02 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

3 new defect(s) introduced to LibreOffice found with Coverity Scan.
2 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 3 of 3 defect(s)


** CID 1592910:  Null pointer dereferences  (NULL_RETURNS)



*** CID 1592910:  Null pointer dereferences  (NULL_RETURNS)
/sw/source/core/edit/edsect.cxx: 349 in lcl_SpecialInsertNode(const SwPosition 
*)()
343 //   only protection outside needs to be checked
344 if( pSection &&
345 (SectionType::ToxHeader == pSection->GetType() ||
346  SectionType::ToxContent == pSection->GetType()))
347 {
348 if (SectionType::ToxHeader == pSection->GetType())
>>> CID 1592910:  Null pointer dereferences  (NULL_RETURNS)
>>> Dereferencing a pointer that might be "nullptr" "pSection->GetParent()" 
>>> when calling "GetFormat".
349 pInnermostNode = 
pSection->GetParent()->GetFormat()->GetSectionNode();
350 bIsProtected = static_cast(pInnermostNode)->IsInProtectSect();
351 }
352 
353 // The previous version had a check to skip empty read-only 
sections. Those
354 // shouldn't occur, so we only need to check whether our 
pInnermostNode is

** CID 1592909:  Null pointer dereferences  (REVERSE_INULL)
/sw/source/core/edit/edsect.cxx: 337 in lcl_SpecialInsertNode(const SwPosition 
*)()



*** CID 1592909:  Null pointer dereferences  (REVERSE_INULL)
/sw/source/core/edit/edsect.cxx: 337 in lcl_SpecialInsertNode(const SwPosition 
*)()
331 }
332 else
333 pInnermostNode = pTableNode;
334 }
335 }
336 bool bIsProtected = pInnermostNode->IsProtect();
>>> CID 1592909:  Null pointer dereferences  (REVERSE_INULL)
>>> Null-checking "pInnermostNode" suggests that it may be null, but it has 
>>> already been dereferenced on all paths leading to the check.
337 if(pInnermostNode != nullptr)
338 {
339 //special case - ToxSection
340 // - in this case the inner section could be tox header
341 //   section but the new node should be before the content 
section
342 //   protection of the tox should not prevent the insertion

** CID 1592908:  Null pointer dereferences  (NULL_RETURNS)



*** CID 1592908:  Null pointer dereferences  (NULL_RETURNS)
/sw/source/core/edit/edsect.cxx: 336 in lcl_SpecialInsertNode(const SwPosition 
*)()
330 pSection = _cast(pSectionNode)->GetSection();
331 }
332 else
333 pInnermostNode = pTableNode;
334 }
335 }
>>> CID 1592908:  Null pointer dereferences  (NULL_RETURNS)
>>> Dereferencing a pointer that might be "nullptr" "pInnermostNode" when 
>>> calling "IsProtect".
336 bool bIsProtected = pInnermostNode->IsProtect();
337 if(pInnermostNode != nullptr)
338 {
339 //special case - ToxSection
340 // - in this case the inner section could be tox header
341 //   section but the new node should be before the content 
section



To view the defects in Coverity Scan visit, 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu6VvXBlQRUbS683tC8265rGNPXqJ1ffcoLZCnTuJFQbNcTEkb4XaEQkzovKhJ5DB3c-3DoByu_A9M4dSy7guk8NP6DcfgslOyvJRzavztVIKj6nRqYjYpWom7SJFyX0y710bz0kUGtQnnP2Sl-2BcQ8L7jLCiUvR0e20beDprWglfuXB9hxvFXmlxGvnqQ6tKW7XlK3i8VGudPmeOrrs0Wv9ppjT9Kvmk0vnqDB7iIZaTN8mBl-2BIFQpqyiv4ZzeA3By8mGuMOg99GWdNOmQeHQ3EaGZtYA33KPc43G0l-2Beciq31oEU-2BnMJk-3D



[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-03-01 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DDk6U_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro87xk8w2p6mpk5vzyLRxLTGLFTlUtc7flCuKbgy49YzOGe2LIKBtz5GHdT64ITY8N3CTxTgYV-2Ffm2fkTJt3-2B2K-2Fwqf0bWx-2BYL-2B99LCxqu4L7OiOQ9q8R7RRt4kS2MzksCOrGkCvOaqfSRuziVJmPeh8OkchUf-2FA6HIIgHgQdCxSb-2Bw-3D-3D

Build ID: 595305

Analysis Summary:
   New defects found: 0
   Defects eliminated: 3

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[X2Go-Commits] [x2gokdrive] branch master updated (053236b -> e7821d5)

2024-03-01 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository x2gokdrive.

  from  053236b   Merge branch 'personal/sunweaver/xorg-server-21.1.10'
   new  77de1aa   debian/changelog: sync up with commit history.
   new  c31000f   x2gokdriveremote.{c,h}: use a client keepalive timeout of 
120 seconds for the web client, keep other clients on 30 seconds.
   new  e7821d5   Merge branch 'feature/web-timeout-2m' into 'master'

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   | 28 +++-
 x2gokdriveremote.c | 21 +
 x2gokdriveremote.h |  3 ++-
 3 files changed, 46 insertions(+), 6 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 01/03: debian/changelog: sync up with commit history.

2024-03-01 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 77de1aa2dbb7d7601496f80590e03fb8c56008bb
Author: Mihai Moldovan 
Date:   Thu Feb 29 22:32:31 2024 +0100

debian/changelog: sync up with commit history.
---
 debian/changelog | 18 +-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index ca99137..19a255e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,22 @@
 x2gokdrive (0.0.0.3-0x2go1) UNRELEASED; urgency=medium
 
-  * Continue development
+  [ Mike Gabriel ]
+  * New upstream version (0.0.0.3):
+- {patches.xorg/,x2gokdrive.spec}: Add semi-auto-detection of latest
+  available patchset and fallback to that if we don't have a patchset for
+  an exact xorg-server version.
+- patches.xorg/: add 21.1.10 subdirectory for current Debian
+  testing/unstable with rebased patch set.
+  * debian/Jenkinsfile:
++ Add file. Initiate CI builds.
+  * debian/control:
++ Prefer libgl-dev (new dev:pkg to use since bookworm) over
+  libgl1-mesa-dev.
++ Prefer libxcb-util-dev over ibxcb-util0-dev (not available in Debian
+  trixie anymore).
+  * debian/rules:
++ Add semi-auto-detection of latest available patchset and fallback to that
+  if we don't have a patchset for an exact xorg-server version.
 
  -- X2Go Release Manager   Tue, 12 Sep 2023 22:28:20 +0200
 

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 02/03: x2gokdriveremote.{c, h}: use a client keepalive timeout of 120 seconds for the web client, keep other clients on 30 seconds.

2024-03-01 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit c31000fc25d9d822ddd24731ab4c0fbe62b81a28
Author: Mihai Moldovan 
Date:   Thu Feb 29 23:32:19 2024 +0100

x2gokdriveremote.{c,h}: use a client keepalive timeout of 120 seconds for 
the web client, keep other clients on 30 seconds.

Web browsers throttle JavaScript timers of background tabs for energy
saving reasons.

Even though Chrome and Firefox refrain from aggressive throttling when
tabs use WebSocket connections, this might not always work correctly.

Since timers typically coalesce at one-minute intervals, a two-minutes
timeout should be fine.
---
 debian/changelog   | 10 ++
 x2gokdriveremote.c | 21 +
 x2gokdriveremote.h |  3 ++-
 3 files changed, 29 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 19a255e..622c377 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,6 +18,16 @@ x2gokdrive (0.0.0.3-0x2go1) UNRELEASED; urgency=medium
 + Add semi-auto-detection of latest available patchset and fallback to that
   if we don't have a patchset for an exact xorg-server version.
 
+  [ Mihai Moldovan ]
+  * New upstream version (0.0.0.3):
+- x2gokdriveremote.{c,h}: use a client keepalive timeout of 120 seconds
+  for the web client, keep other clients on 30 seconds. Web browsers
+  throttle JavaScript timers of background tabs for energy saving reasons.
+  Even though Chrome and Firefox refrain from aggressive throttling when
+  tabs use WebSocket connections, this might not always work correctly.
+  Since timers typically coalesce at one-minute intervals, a two-minutes
+  timeout should be fine.
+
  -- X2Go Release Manager   Tue, 12 Sep 2023 22:28:20 +0200
 
 x2gokdrive (0.0.0.2-0x2go1) unstable; urgency=medium
diff --git a/x2gokdriveremote.c b/x2gokdriveremote.c
index fdbf662..6f3934e 100644
--- a/x2gokdriveremote.c
+++ b/x2gokdriveremote.c
@@ -105,6 +105,18 @@ static struct _remoteHostVars remoteVars = {0};
 
 static BOOL remoteInitialized=FALSE;
 
+static
+CARD32 get_keepalive(const uint16_t os)
+{
+CARD32 ret = CLIENTALIVE_TIMEOUT_GENERIC;
+
+if (WEB == os)
+{
+ret = CLIENTALIVE_TIMEOUT_WEB;
+}
+
+return ret;
+}
 
 void remote_selection_init(void)
 {
@@ -2474,7 +2486,7 @@ BOOL remote_process_client_event ( char* buff , int 
length)
 remoteVars.last_client_keepalive_time=time(NULL);
 if(remoteVars.client_version>=3 && remoteVars.checkKeepAliveTimer)
 {
-
remoteVars.checkKeepAliveTimer=TimerSet(remoteVars.checkKeepAliveTimer,0,CLIENTALIVE_TIMEOUT,
 checkClientAlive, NULL);
+
remoteVars.checkKeepAliveTimer=TimerSet(remoteVars.checkKeepAliveTimer,0,get_keepalive
 (remoteVars.client_os), checkClientAlive, NULL);
 }
 
 pthread_mutex_unlock(_mutex);
@@ -2946,7 +2958,7 @@ void set_client_version(uint16_t ver, uint16_t os)
 {
 //start timer for checking if client alive
 pthread_mutex_lock(_mutex);
-remoteVars.checkKeepAliveTimer=TimerSet(0,0,CLIENTALIVE_TIMEOUT, 
checkClientAlive, NULL);
+remoteVars.checkKeepAliveTimer=TimerSet(0,0,get_keepalive 
(remoteVars.client_os), checkClientAlive, NULL);
 pthread_mutex_unlock(_mutex);
 }
 }
@@ -5266,17 +5278,18 @@ unsigned int
 checkClientAlive(OsTimerPtr timer, CARD32 time_card, void* args)
 {
 time_t time_diff;
+CARD32 timeout = get_keepalive(remoteVars.client_os);
 pthread_mutex_lock(_mutex);
 time_diff=time(NULL)-remoteVars.last_client_keepalive_time;
 pthread_mutex_unlock(_mutex);
 
-if(time_diff>=CLIENTALIVE_TIMEOUT/1000)
+if(time_diff>=timeout/1000)
 {
 EPHYR_DBG("no data from client since %d seconds, disconnecting...", 
(int)time_diff);
 disconnect_client();
 return 0;
 }
-return CLIENTALIVE_TIMEOUT;
+return timeout;
 }
 
 void
diff --git a/x2gokdriveremote.h b/x2gokdriveremote.h
index 0b9c57c..9d30690 100644
--- a/x2gokdriveremote.h
+++ b/x2gokdriveremote.h
@@ -114,7 +114,8 @@
 #define DEFAULT_PORT 15000
 
 #define ACCEPT_TIMEOUT 3 //msec
-#define CLIENTALIVE_TIMEOUT 3 //msec
+#define CLIENTALIVE_TIMEOUT_GENERIC 3 //msec
+#define CLIENTALIVE_TIMEOUT_WEB 12 //msec
 #define SERVERALIVE_TIMEOUT 10 //sec
 
 //if true, will save compressed jpg in file

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 03/03: Merge branch 'feature/web-timeout-2m' into 'master'

2024-03-01 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit e7821d52847454294e4712bc2173f08dbe10b27d
Merge: 053236b c31000f
Author: Mihai Moldovan 
Date:   Fri Mar 1 23:54:43 2024 +0100

Merge branch 'feature/web-timeout-2m' into 'master'

Attributes GL MR !4: 
https://gitlab.x2go.org/x2go/server/drivers/x2gokdrive/-/merge_requests/4

 debian/changelog   | 28 +++-
 x2gokdriveremote.c | 21 +
 x2gokdriveremote.h |  3 ++-
 3 files changed, 46 insertions(+), 6 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-29 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DFpN5_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84DGWZ10lDVI-2BpT-2FJnPt0s31yaIi5BhW-2FLBtcDavpMXJbPmiAz5tlqoHX6r1RtarOdoG4SP1QMLA3QpeyBv12oBxgeDAfQegJQDafUaqM9bElVF1JAT6s23Ew6P6x-2B4eg1fGvKsF8Q0QImoqEK3pAbjzn-2Fad8JWxS8MtWlvdoXU-2FA-3D-3D

Build ID: 595053

Analysis Summary:
   New defects found: 1
   Defects eliminated: 0

If you have difficulty understanding any defects, email us at 
scan-ad...@coverity.com,
or post your question to StackOverflow
at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.flnyKa-2FqvaKqx4fLQsH4bW35wEOELQKXyfspKiPYDJTkkE6I9WJzTo3tzdZlfNLaav4ccqKPQZ-2BbcFiem7UEug-3D-3DLPRV_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84DGWZ10lDVI-2BpT-2FJnPt0s31yaIi5BhW-2FLBtcDavpMXJS83pQa6LmIDb3O4Nj-2BDzjrtEWrzqZVwcBT8y4ur2lDvJSzz34Qj-2FvPJfialtbhImh5gGV4T9feUPEit1Ir4pIyoNK4i5viX-2FoMOZrA96gcULxIt9BIs3oDTzgW7lWtVJA-3D-3D
___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[Desktop-packages] [Bug 1793126]

2024-02-29 Thread Qa-admin-q
Dear vaaydayaasra,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open,
confirmed bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked
on this bug report. During that time, it's possible that the bug has
been fixed, or the details of the problem have changed. We'd really
appreciate your help in getting confirmation that the bug is still
present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of
LibreOffice from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information 
from Help - About LibreOffice.
 
If the bug is NOT present, please set the bug's Status field to 
RESOLVED-WORKSFORME and leave a comment that includes the information from Help 
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular 
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a 
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your 
bug pertains to a feature added after 3.3) from 
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat: 
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1793126

Title:
  [upstream] Automatic cell alignment in Calc breaks with bidi-neutral
  characters

Status in LibreOffice:
  Confirmed
Status in libreoffice package in Ubuntu:
  Confirmed

Bug description:
  Calc seems to assign the alignment of any particular text cell based
  on the contents of the cell: if the first character is a LTR
  character, the cell is aligned to the left, and if the first character
  is RTL, the cell is aligned to the right. This is desirable behavior
  but it breaks when the first character is neutral, i.e. a character
  that behaves as RTL in an RTL context and as LTR in a LTR context.

  See the attached screenshot where cell A1 "abc" is automatically
  aligned to the left and cell A2 "ابت" to the right. When I surround
  these strings with parentheses, which are bidi-neutral characters, in
  A3 and A4, both are aligned to the left. For some reason, even font
  metrics break with this assignment, as the last character of the
  Arabic string overlaps visually with the closing parenthesis (I think
  this is a separate issue and I’ll file it as such).

  In column C, I have copied the contents of column A but changed the
  directionality setting of cell C4 manually to RTL through Format Cells
  > Text direction. Here the cell is properly aligned to the right and
  the closing parenthesis does not overlap with the last character of
  the string.

  According to the Unicode standard, neutral characters should not
  affect directionality, and that’s what I would expect as a user, too.
  I think the best solution would be for Calc to skip all neutral
  characters in the beginning of the string and just consider the first
  strong character for cell alignment. Even better, Calc could use this
  heuristics to assign full text directionality for the cell, not just
  change alignment. Right now, if you start the cell with an RTL
  character followed by a LTR inset and then continue with RTL again,
  the substrings are ordered as in a LTR context ("FIRST second THIRD"),
  not as in true RTL ("THIRD second FIRST").

  Description:  Ubuntu 18.04.1 LTS
  Release:  18.04

Installed: 1:6.0.3-0ubuntu1
Candidate: 1:6.0.3-0ubuntu1
Version table:
   *** 1:6.0.3-0ubuntu1 500
  500 http://mr.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
  100 /var/lib/dpkg/status

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: libreoffice-calc 1:6.0.3-0ubuntu1
  ProcVersionSignature: Ubuntu 4.15.0-33.36-generic 4.15.18
  Uname: Linux 4.15.0-33-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.3
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Sep 18 11:26:18 2018
  InstallationDate: Installed on 2017-02-13 (582 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C
   SHELL=/bin/bash
  SourcePackage: 

[Bug 1793126]

2024-02-29 Thread Qa-admin-q
Dear vaaydayaasra,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open,
confirmed bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked
on this bug report. During that time, it's possible that the bug has
been fixed, or the details of the problem have changed. We'd really
appreciate your help in getting confirmation that the bug is still
present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of
LibreOffice from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information 
from Help - About LibreOffice.
 
If the bug is NOT present, please set the bug's Status field to 
RESOLVED-WORKSFORME and leave a comment that includes the information from Help 
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular 
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a 
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your 
bug pertains to a feature added after 3.3) from 
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat: 
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1793126

Title:
  [upstream] Automatic cell alignment in Calc breaks with bidi-neutral
  characters

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1793126/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[X2Go-Commits] [python-x2go] 01/02: x2go/{backends/control/plain, sshproxy}.py: Don't let look_for_keys override specified private key. The specified private key should win.

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository python-x2go.

commit 2ec9567f7dac9fa0edc02f36efcc4a701acaf52f
Author: nounce 
Date:   Mon Jan 8 21:37:26 2024 +0100

x2go/{backends/control/plain,sshproxy}.py: Don't let look_for_keys override 
specified private key. The specified private key should win.
---
 x2go/backends/control/plain.py | 6 +++---
 x2go/sshproxy.py   | 7 +++
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/x2go/backends/control/plain.py b/x2go/backends/control/plain.py
index 955b8d1..8cc0aef 100644
--- a/x2go/backends/control/plain.py
+++ b/x2go/backends/control/plain.py
@@ -938,9 +938,9 @@ class X2GoControlSession(paramiko.SSHClient):
 if forward_sshagent is None:
 forward_sshagent = self.forward_sshagent
 
-if look_for_keys:
-key_filename = None
-pkey = None
+# Do not look for keys if there is one supplied already
+if key_filename or pkey:
+look_for_keys = False
 
 _twofactorauth = False
 if password and (passphrase is None) and not force_password_auth: 
passphrase = password
diff --git a/x2go/sshproxy.py b/x2go/sshproxy.py
index e7dc230..0b6d283 100644
--- a/x2go/sshproxy.py
+++ b/x2go/sshproxy.py
@@ -208,10 +208,9 @@ class X2GoSSHProxy(paramiko.SSHClient, threading.Thread):
 self.local_host = self.local_host.strip()
 self.remote_host = self.remote_host.strip()
 
-# do not use explicitly given keys if look_for_keys has got activated
-if look_for_keys:
-key_filename = None
-pkey = None
+# Do not look for keys if there is one supplied already
+if key_filename or pkey:
+look_for_keys = False
 
 if key_filename and "~" in key_filename:
 key_filename = os.path.expanduser(key_filename)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/python-x2go.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [python-x2go] branch master updated (fcc304a -> 74adacb)

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository python-x2go.

  from  fcc304a   Merge branch 'personal/sunweaver/end-of-distutils' into 
'master'
   new  2ec9567   x2go/{backends/control/plain,sshproxy}.py: Don't let 
look_for_keys override specified private key. The specified private key should 
win.
   new  74adacb   Merge branch 
'personal/sunweaver/specified-key-wins-over-lookforkeys' into 'master'

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 x2go/backends/control/plain.py | 6 +++---
 x2go/sshproxy.py   | 7 +++
 2 files changed, 6 insertions(+), 7 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/python-x2go.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [python-x2go] 02/02: Merge branch 'personal/sunweaver/specified-key-wins-over-lookforkeys' into 'master'

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository python-x2go.

commit 74adacbe66b8e459fc5a1e44467dc7682d93bf86
Merge: fcc304a 2ec9567
Author: Mike Gabriel 
Date:   Thu Feb 29 12:45:38 2024 +

Merge branch 'personal/sunweaver/specified-key-wins-over-lookforkeys' into 
'master'

x2go/{backends/control/plain,sshproxy}.py: Don't let look_for_keys 
override...

See merge request x2go/client/libs/python-x2go!5

 x2go/backends/control/plain.py | 6 +++---
 x2go/sshproxy.py   | 7 +++
 2 files changed, 6 insertions(+), 7 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/python-x2go.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gobroker] 05/06: debian/x2gobroker-ssh-mini.insall: pick files as installed by Makefile.

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gobroker.

commit 2bf84a400acea8506d8e412a8629e67731f71105
Author: Mihai Moldovan 
Date:   Wed Feb 28 05:36:33 2024 +0100

debian/x2gobroker-ssh-mini.insall: pick files as installed by Makefile.
---
 debian/changelog   | 2 ++
 debian/x2gobroker-ssh-mini.install | 6 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 685375d..cf63589 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,6 +14,8 @@ x2gobroker (0.0.4.4-0x2go1) UNRELEASED; urgency=medium
 - Makefile: install x2gobroker-ssh-mini files.
   * debian/x2gobroker-ssh-mini.{dirs,manpages}:
 + Drop.
+  * debian/x2gobroker-ssh-mini.insall:
++ Pick files as installed by Makefile.
 
  -- Mike Gabriel   Mon, 15 Nov 2021 15:33:29 +0100
 
diff --git a/debian/x2gobroker-ssh-mini.install 
b/debian/x2gobroker-ssh-mini.install
index b78c47f..e9fb017 100644
--- a/debian/x2gobroker-ssh-mini.install
+++ b/debian/x2gobroker-ssh-mini.install
@@ -1 +1,5 @@
-mini/x2gobroker-ssh-mini usr/bin/
+usr/bin/x2gobroker-ssh-mini
+etc/x2go/x2gobroker-ssh-mini/users
+etc/x2go/x2gobroker-ssh-mini/groups
+usr/share/x2gobroker-ssh-mini/default.session
+usr/share/man/man8/x2gobroker-ssh-mini*

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gobroker.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gobroker] 03/06: Makefile: install x2gobroker-ssh-mini files.

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gobroker.

commit eba790f024eaf7fe3c1e6da8d1a7490f62cee0a5
Author: Mihai Moldovan 
Date:   Wed Feb 28 05:33:08 2024 +0100

Makefile: install x2gobroker-ssh-mini files.
---
 Makefile | 14 ++
 debian/changelog |  4 
 2 files changed, 18 insertions(+)

diff --git a/Makefile b/Makefile
index b736f31..af19e53 100755
--- a/Makefile
+++ b/Makefile
@@ -201,3 +201,17 @@ install:
"${DESTDIR}${BINDIR}/"
${INSTALL_PROGRAM} sbin/x2gobroker-keygen sbin/x2gobroker-testagent \
"${DESTDIR}${SBINDIR}/"
+
+   # x2gobroker-ssh-mini
+   mkdir -p "${DESTDIR}${BINDIR}" "${DESTDIR}${SBINDIR}" \
+   "${DESTDIR}${ETCDIR}/x2gobroker-ssh-mini" \
+   "${DESTDIR}${DATADIR}/x2gobroker-ssh-mini" \
+   "${DESTDIR}${MANDIR}/man8"
+   ${INSTALL_FILE} mini/x2gobroker-ssh-mini.8 \
+   "${DESTDIR}${MANDIR}/man8"
+   $(GZIP) "${DESTDIR}${MANDIR}/man8/"*.8
+   ${INSTALL_PROGRAM} mini/x2gobroker-ssh-mini \
+   "${DESTDIR}${BINDIR}/"
+   $(INSTALL_DIR) "${DESTDIR}${ETCDIR}/x2gobroker-ssh-mini/"{users,groups}
+   $(INSTALL_FILE) mini/default.session \
+   "${DESTDIR}${DATADIR}/x2gobroker-ssh-mini/default.session"
diff --git a/debian/changelog b/debian/changelog
index d942ffd..1250887 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,10 @@ x2gobroker (0.0.4.4-0x2go1) UNRELEASED; urgency=medium
 - mini/: Complete x2gobroker-ssh-mini implementation and provide it as DEB
   package.
 
+  [ Mihai Moldovan ]
+  * New upstream version (0.0.4.4):
+- Makefile: install x2gobroker-ssh-mini files.
+
  -- Mike Gabriel   Mon, 15 Nov 2021 15:33:29 +0100
 
 x2gobroker (0.0.4.3-0x2go1) unstable; urgency=medium

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gobroker.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gobroker] 06/06: Merge branch 'personal/sunweaver/x2gobrokersshmini' into 'master'

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gobroker.

commit a3fd2e7a68f656578ef74eefd97bb19b0cca6203
Merge: 8f07704 2bf84a4
Author: Mike Gabriel 
Date:   Thu Feb 29 12:43:50 2024 +

Merge branch 'personal/sunweaver/x2gobrokersshmini' into 'master'

mini/: Complete x2gobroker-ssh-mini implementation and provide it as DEB 
package.

See merge request x2go/broker/x2gobroker!4

 COPYING.GPL-2+ | 339 +
 Makefile   |  14 +
 debian/changelog   |  14 +-
 debian/control |  23 ++
 debian/copyright   |   4 +
 debian/x2gobroker-ssh-mini.docs|   1 +
 debian/x2gobroker-ssh-mini.install |   5 +
 debian/x2gobroker-ssh-mini.postinst|  43 +++
 debian/x2gobroker-ssh-mini.postrm  |  36 +++
 debian/x2gobroker-ssh-mini.prerm   |  39 +++
 mini/README.md |  31 ++
 mini/default.session   |  25 ++
 .../x2gobroker-ssh-mini|  44 +--
 mini/x2gobroker-ssh-mini.8 | 103 +++
 14 files changed, 697 insertions(+), 24 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gobroker.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gobroker] 01/06: mini/: Complete x2gobroker-ssh-mini implementation and provide it as DEB package.

2024-02-29 Thread git-admin
 session ID, along with its square brackets, needs to be removed.
+.TP
+The "user=" field will always be overridden with the user that established the 
broker connection, so this field is entirely optional.
+.TP
+The "host=" and "port=" fields are optional as well.  They will be used if 
present, but will be filled with what \fBx2gobroker-ssh-mini\fR believes to be 
correct if absent.  See section CONFIGURATION on how to override 
\fBx2gobroker-ssh-mini\fR's guesses.
+.TP
+When saving the file, you should use a file name like 
.session, but note that the display name is not 
generated from the file name.  Instead, it is read from the value of the field 
"name=" in the file itself.
+.SH USAGE
+.TP
+Assuming you have at least one valid session file (the file 
/usr/share/x2gobroker-ssh-mini/default.session, symlinked or copied into 
/etc/x2go/x2gobroker-ssh-mini/defaultsessions/, will do just fine), you can now 
start X2GoClient on a client and connect to the broker like so:
+.TP
+x2goclient 
--broker-url=ssh://USERNAME@SERVER[:PORT]/usr/bin/x2gobroker-ssh-mini 
[--broker-autologin]
+.PP
+.SH "FILES"
+/etc/x2go/x2gobroker-ssh-mini/defaulthost - Optional configuration file 
containing FQDN/IP and port.
+.br
+/etc/x2go/x2gobroker-ssh-mini/defaultsessions - The directory where session 
files that everyone should have access to are stored.
+.br
+/etc/x2go/x2gobroker-ssh-mini/groups/GROUPNAME - The directory where session 
files that only the members of group GROUPNAME should see are stored.
+.br
+/etc/x2go/x2gobroker-ssh-mini/users/USERNAME - The directory where session 
files that only user USERNAME should see are stored.
+.br
+/usr/bin/x2gobroker-ssh-mini - This is the actual executable.
+.br
+/usr/share/x2gobroker-ssh-mini/default.session - This file contains a sample 
session configuration for Published Applications.
+.SH TODO
+.TP
+Currently, there's no regular nor debug logging code present in 
\fBx2gobroker-ssh-mini\fR.  This should be changed so it logs either to a 
dedicated file and/or to syslog.
+.TP
+It might make sense to change the shebang line to "#!/bin/bash -e".  However, 
this needs further testing (are there any conditions where we're currently 
ignoring a presumably harmless failure)?
+.TP
+The code could probably be simplified/cleaned up by turning recurring blocks 
of code into functions.
+.TP
+It should be possible to add a sessions ACL based on the IP/IP range the 
connection is being made from.  This needs parsing of first field of the 
SSH_CONNECTION environment variable and some tinkering with the grepcidr 
command.
+.SH AUTHOR
+This manual has been written for the X2Go project by Stefan Baur 
.
\ No newline at end of file

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gobroker.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gobroker] 04/06: debian/x2gobroker-ssh-mini.{dirs, manpages}: drop.

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gobroker.

commit c51b26135cc9ea668b1013935f102efa3aab5a92
Author: Mihai Moldovan 
Date:   Wed Feb 28 05:34:41 2024 +0100

debian/x2gobroker-ssh-mini.{dirs,manpages}: drop.
---
 debian/changelog| 2 ++
 debian/x2gobroker-ssh-mini.dirs | 2 --
 debian/x2gobroker-ssh-mini.manpages | 1 -
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1250887..685375d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,8 @@ x2gobroker (0.0.4.4-0x2go1) UNRELEASED; urgency=medium
   [ Mihai Moldovan ]
   * New upstream version (0.0.4.4):
 - Makefile: install x2gobroker-ssh-mini files.
+  * debian/x2gobroker-ssh-mini.{dirs,manpages}:
++ Drop.
 
  -- Mike Gabriel   Mon, 15 Nov 2021 15:33:29 +0100
 
diff --git a/debian/x2gobroker-ssh-mini.dirs b/debian/x2gobroker-ssh-mini.dirs
deleted file mode 100644
index 11e5dd8..000
--- a/debian/x2gobroker-ssh-mini.dirs
+++ /dev/null
@@ -1,2 +0,0 @@
-etc/x2go/x2gobroker-ssh-mini/users/
-etc/x2go/x2gobroker-ssh-mini/groups/
diff --git a/debian/x2gobroker-ssh-mini.manpages 
b/debian/x2gobroker-ssh-mini.manpages
deleted file mode 100644
index d635f98..000
--- a/debian/x2gobroker-ssh-mini.manpages
+++ /dev/null
@@ -1 +0,0 @@
-mini/x2gobroker-ssh-mini.8

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gobroker.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gobroker] branch master updated (8f07704 -> a3fd2e7)

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository x2gobroker.

  from  8f07704   etc/x2gobroker.conf: White-space fix at EOF.
   new  9926360   mini/: Complete x2gobroker-ssh-mini implementation and 
provide it as DEB package.
   new  9d80b38   debian/changelog: fixup.
   new  eba790f   Makefile: install x2gobroker-ssh-mini files.
   new  c51b261   debian/x2gobroker-ssh-mini.{dirs,manpages}: drop.
   new  2bf84a4   debian/x2gobroker-ssh-mini.insall: pick files as 
installed by Makefile.
   new  a3fd2e7   Merge branch 'personal/sunweaver/x2gobrokersshmini' into 
'master'

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 COPYING.GPL-2+ | 339 +
 Makefile   |  14 +
 debian/changelog   |  14 +-
 debian/control |  23 ++
 debian/copyright   |   4 +
 debian/x2gobroker-ssh-mini.docs|   1 +
 debian/x2gobroker-ssh-mini.install |   5 +
 ...roker.postinst => x2gobroker-ssh-mini.postinst} |  24 +-
 ...2gobroker.postrm => x2gobroker-ssh-mini.postrm} |  27 +-
 ...obroker-ssh.prerm => x2gobroker-ssh-mini.prerm} |  31 +-
 mini/README.md |  31 ++
 mini/default.session   |  25 ++
 .../x2gobroker-ssh-mini|  44 +--
 mini/x2gobroker-ssh-mini.8 | 103 +++
 14 files changed, 632 insertions(+), 53 deletions(-)
 create mode 100644 COPYING.GPL-2+
 create mode 100644 debian/x2gobroker-ssh-mini.docs
 create mode 100644 debian/x2gobroker-ssh-mini.install
 copy debian/{python3-x2gobroker.postinst => x2gobroker-ssh-mini.postinst} (57%)
 copy debian/{python3-x2gobroker.postrm => x2gobroker-ssh-mini.postrm} (59%)
 copy debian/{x2gobroker-ssh.prerm => x2gobroker-ssh-mini.prerm} (58%)
 create mode 100644 mini/README.md
 create mode 100644 mini/default.session
 rename contrib/x2go-mini-sshbroker => mini/x2gobroker-ssh-mini (83%)
 create mode 100644 mini/x2gobroker-ssh-mini.8

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gobroker.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gobroker] 02/06: debian/changelog: fixup.

2024-02-29 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gobroker.

commit 9d80b38be6ab283bcb041e0c790c0b7738bf2764
Author: Mihai Moldovan 
Date:   Wed Feb 28 05:39:51 2024 +0100

debian/changelog: fixup.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 0735ff0..d942ffd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,8 @@ x2gobroker (0.0.4.4-0x2go1) UNRELEASED; urgency=medium
   * New upstream version (0.0.4.4):
 - man/man1/x2gobroker.1: Fix apostrophe usage (drop preceding backslash).
 - setup.py: Don't run setup.py with use_2to3 anymore.
-- x2gobroker/defaults.py: Gracefully handle API documentation builds during
-  offline builds.
+- x2gobroker/defaults.py: Gracefully handle API documentation builds
+  during offline builds.
 - mini/: Complete x2gobroker-ssh-mini implementation and provide it as DEB
   package.
 

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gobroker.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-28 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3D1Hp0_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84KUoveEL5fnJaBsT2z-2FqBYisOjGD8HklGjuVEnQUFJAYuaFGlLHiKJp-2F528bQ0zSeHNj1upB0WolGiReZGLmV0gzSJJ6DHmlbxl9pG5cm-2Fw9jwm7V-2F4b7VYLyms-2Fp7MdVZqkU5lOvT-2Bqx-2BwQdd1l-2FZcZuEaMlLX7gu-2BJfLd5pEng-3D-3D

Build ID: 594786

Analysis Summary:
   New defects found: 1
   Defects eliminated: 5

If you have difficulty understanding any defects, email us at 
scan-ad...@coverity.com,
or post your question to StackOverflow
at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.flnyKa-2FqvaKqx4fLQsH4bW35wEOELQKXyfspKiPYDJTkkE6I9WJzTo3tzdZlfNLaav4ccqKPQZ-2BbcFiem7UEug-3D-3Dg9R6_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84KUoveEL5fnJaBsT2z-2FqBYisOjGD8HklGjuVEnQUFJAeQkBd-2FqVU3U5nWmBUqTgVKjJcgAhB-2BPSQp5-2BWFc2LDuc4w4EOQ9vrLbVhab9O4glJWqUT-2BljYbtJkGNnC3sSk-2Ff9ftAv9LexWj7AGlzs8p41-2FlY4fOCLKjnuxScDn6n2A-3D-3D
___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


New Defects reported by Coverity Scan for LibreOffice

2024-02-28 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

1 new defect(s) introduced to LibreOffice found with Coverity Scan.
7 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 1 of 1 defect(s)


** CID 1592640:  Null pointer dereferences  (FORWARD_NULL)
/sd/source/ui/slideshow/slideshowimpl.cxx: 1130 in 
sd::SlideshowImpl::startShow(const sd::PresentationSettingsEx *)()



*** CID 1592640:  Null pointer dereferences  (FORWARD_NULL)
/sd/source/ui/slideshow/slideshowimpl.cxx: 1130 in 
sd::SlideshowImpl::startShow(const sd::PresentationSettingsEx *)()
1124 mpViewShell->GetViewShellBase().ShowUIControls (false);
1125 // Hide the side panes for in-place presentations.
1126 if ( ! maPresSettings.mbFullScreen)
1127 mpPaneHider.reset(new PaneHider(*mpViewShell,this));
1128 
1129 // these Slots are forbidden in other views for this 
document
>>> CID 1592640:  Null pointer dereferences  (FORWARD_NULL)
>>> Dereferencing null pointer "pPresSettings".
1130 if( mpDocSh && !pPresSettings->mbInteractive) // IASS
1131 {
1132 mpDocSh->SetSlotFilter( true, pAllowed );
1133 mpDocSh->ApplySlotFilter();
1134 }
1135 



To view the defects in Coverity Scan visit, 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu6VvXBlQRUbS683tC8265rGNPXqJ1ffcoLZCnTuJFQbNcTEkb4XaEQkzovKhJ5DB3c-3DnEde_A9M4dSy7guk8NP6DcfgslOyvJRzavztVIKj6nRqYjYpWom7SJFyX0y710bz0kUGt1tr1i9DQoO7ElOGukyr4SHjOVDWMXgVx3dXiRAReu0G9KraVCIeQhsM5zgCnrFYy0Wr-2FLkgjbxGfTbsLjC3oXwYUNsxmwGHNMquG1C6mBOHOn3YbKHUkDtmsq7OWI00mIxMmshRz231IywiZJZ-2Fm1CMA5c-2BL-2Fyn7X1diIY2DxbI-3D



[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-27 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DSTF5_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84atYhJ-2FnvUzAEk0AHxRLQO0Qmt3LozA0JCufx58ApFTl7ZJYMTn-2BLrVZF1cTcpGNE28kf0QxJ-2BJJPZ11m7sAC5nSDeQbT6giJJZRdsboOMYR0eYa6vTKu2QDPc9Qfihk8ofYV9fDr-2BOt7D1pwH4Z1rW6VbieNHT5mhOxGoTEUsgg-3D-3D

Build ID: 594544

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


Re: basic api access token

2024-02-27 Thread Tableau Admin
Hello,

I am still waiting to hear anything about this application.. Can you please 
help? We have not received any communication on the status of this request, 
it remains "In progress" for 2.5 months now.

On Monday, February 12, 2024 at 4:40:56 PM UTC-7 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that you've applied for the 
> basic access and haven't received a response. Since the access requests are 
> handled by the Google Ads API Compliance team, we are transferring the case 
> to the Ads API Compliance team.
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request.
>
> Summary:
>
> The user has applied for basic access with the below details. 
>
>- Google Ads Manager Account (MCC) ID: 499-029-0839 
>- Cases ID: 7-116135377 
>
> Do reach out to the 
> *Google Ads API* 
>  support team 
> for any queries related to the API.
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rz3Nr:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/45887b35-5718-4e44-9bf4-4fde16341b26n%40googlegroups.com.


New Defects reported by Coverity Scan for LibreOffice

2024-02-26 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

7 new defect(s) introduced to LibreOffice found with Coverity Scan.
3 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 7 of 7 defect(s)


** CID 1592381:(OVERRUN)
/oox/source/drawingml/scene3dhelper.cxx: 248 in 
oox::Scene3DHelper::getAPIAnglesFrom3DProperties(std::shared_ptr,
 const int &, double &, double &, double &)()
/oox/source/drawingml/scene3dhelper.cxx: 250 in 
oox::Scene3DHelper::getAPIAnglesFrom3DProperties(std::shared_ptr,
 const int &, double &, double &, double &)()
/oox/source/drawingml/scene3dhelper.cxx: 249 in 
oox::Scene3DHelper::getAPIAnglesFrom3DProperties(std::shared_ptr,
 const int &, double &, double &, double &)()



*** CID 1592381:(OVERRUN)
/oox/source/drawingml/scene3dhelper.cxx: 248 in 
oox::Scene3DHelper::getAPIAnglesFrom3DProperties(std::shared_ptr,
 const int &, double &, double &, double &)()
242 // OOXML markup are given, they overwrite the values from the 
preset camera type. Otherwise the
243 // values from the preset camera are used. OOXML requires that all 
three attributes must exist at
244 // the same time. Thus it is enough to test one of them.
245 if (!(*p3DProperties).maCameraRotation.mnRevolution.has_value())
246 {
247 // The angles are given in 1/6 deg in 
aPrstCameraValuesArray.
>>> CID 1592381:(OVERRUN)
>>> Overrunning array "oox::aPrstCameraValuesArray" of 62 104-byte elements 
>>> at element index 62 (byte offset 6551) using index 
>>> "this->mnPrstCameraIndex" (which evaluates to 62).
248 nLatitude = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleX;
249 nLongitude = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleY;
250 nRevolution = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleZ;
251 }
252 
253 // MS Office applies the shape rotation after the rotations from 
camera in case of non-legacy
/oox/source/drawingml/scene3dhelper.cxx: 250 in 
oox::Scene3DHelper::getAPIAnglesFrom3DProperties(std::shared_ptr,
 const int &, double &, double &, double &)()
244 // the same time. Thus it is enough to test one of them.
245 if (!(*p3DProperties).maCameraRotation.mnRevolution.has_value())
246 {
247 // The angles are given in 1/6 deg in 
aPrstCameraValuesArray.
248 nLatitude = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleX;
249 nLongitude = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleY;
>>> CID 1592381:(OVERRUN)
>>> Overrunning array "oox::aPrstCameraValuesArray" of 62 104-byte elements 
>>> at element index 62 (byte offset 6551) using index 
>>> "this->mnPrstCameraIndex" (which evaluates to 62).
250 nRevolution = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleZ;
251 }
252 
253 // MS Office applies the shape rotation after the rotations from 
camera in case of non-legacy
254 // cameras, and before for legacy cameras. ODF specifies to first 
rotate the shape. Thus we need
255 // to add shape rotation to nRevolution in case of non-legacy 
cameras. The shape rotation has
/oox/source/drawingml/scene3dhelper.cxx: 249 in 
oox::Scene3DHelper::getAPIAnglesFrom3DProperties(std::shared_ptr,
 const int &, double &, double &, double &)()
243 // values from the preset camera are used. OOXML requires that all 
three attributes must exist at
244 // the same time. Thus it is enough to test one of them.
245 if (!(*p3DProperties).maCameraRotation.mnRevolution.has_value())
246 {
247 // The angles are given in 1/6 deg in 
aPrstCameraValuesArray.
248 nLatitude = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleX;
>>> CID 1592381:(OVERRUN)
>>> Overrunning array "oox::aPrstCameraValuesArray" of 62 104-byte elements 
>>> at element index 62 (byte offset 6551) using index 
>>> "this->mnPrstCameraIndex" (which evaluates to 62).
249 nLongitude = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleY;
250 nRevolution = 
aPrstCameraValuesArray[mnPrstCameraIndex].mfRotateAngleZ;
251 }
252 
253 // MS Office applies the shape rotation after the rotations from 
camera in case of non-legacy
254 // cameras, and before for legacy cameras. ODF specifies to first 
rotate the shape. Thus we need

** CID 1592380:  Incorrect expression  (COPY_PASTE_ERROR)
/sd/source/ui/slideshow/slideshowimpl.cxx: 3439 in 
sd::SlideshowImpl::Notify(SfxBroadcaster &, const SfxHint &)()



[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-26 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DHfpk_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84w5qMdHN0Px94wEhupJv2byMwX4huvU0cH01jzNYFZ0qlDj9XrJVwM2lWNQlVVeoI1yT-2Fn4vukVanbjorBNy3eFUH5M6AqL-2FR4YQqDVC1s4EjwBU11uGPpA-2FAY49XGjJ3R90qeVx0dgjJqKaxsA3hAVfRPjp4tTSlOHQAetDE-2BIA-3D-3D

Build ID: 594249

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[SydPhil] Fw: HPS Research Seminar, Monday 4, March 2024 at 5:30pm (Please ignore this is incorrect advert for 4 March 2024))

2024-02-26 Thread HPS Admin via SydPhil
Dear All

Apologies, this is the incorrect Seminar advert for the 4th March 2024 HPS 
seminar.

The corrected version will be sent out shortly.

Regards

Cynthia


CYNTHIA KIU | EXECUTIVE OFFICER
The University of Sydney
Faculty of Science, History and Philosophy of Science

Rm No 389, Carslaw F07 | The University of Sydney | NSW | 2006
+61 2 9351 4161
hps.ad...@sydney.edu.au<mailto:hps.ad...@sydney.edu.au>  | 
sydney.edu.au<http://sydney.edu.au/>

OFFICE HOURS ARE MONDAY, TUESDAY AND WEDNESDAY

9AM TO 430PM


From: Cynthia Kiu on behalf of HPS Admin 
Sent: Tuesday, February 27, 2024 10:04 AM
To: (sydp...@arts.usyd.edu.au) 
Subject: HPS Research Seminar, Monday 4, March 2024 at 5:30pm


School of History and Philosophy of Science
RESEARCH SEMINAR
[The University of Sydney]
[https://d31hzlhk6di2h5.cloudfront.net/20240226/cb/75/e2/c4/b84bae4efd3f95e0a8dd36fd_360x512.png]
The Liar paradox, the halting problem and the edge of chaos
Mikhail Prokopenko (USyd)

Dates: Monday, 04/03/2024
Time: 5:30pm
Venue: New Law (F10), Level 3, Seminar Room 344
How to register: Free, no registration required

Abstract: We will explore several fundamental relations between formal systems, 
algorithms, and dynamical systems, focussing on the roles of self-reference and 
computational undecidability. This comparative analysis will emphasise three 
factors: (i) the program-data duality; (ii) the potential to access an infinite 
computational medium; and (iii) the ability to implement negation. Importantly, 
the program-data duality requires that a computational agent must be able to 
store and process encoded information, as well as create self-referential 
meta-level simulations. Finally, within Gödel – Turing – Post framework, we 
will argue that undecidability leads to novelty generation, via the emergence 
of functional self-descriptions across major transitions: genetic, linguistic 
and cultural.


Bio: Prof. Mikhail Prokopenko leads the Centre for Complex Systems at the 
University of Sydney. He holds PhD in Computer Science, MA in Economics, and 
MSc in Applied Mathematics. Mikhail has a strong international reputation in 
modelling and simulation of complex self-organising systems, with over 200 
publications and h-index of 43. His cross-disciplinary research in information 
theory, critical phenomena and artificial intelligence has been applied to 
pandemic and crisis modelling, systems biology, urban dynamics, and other 
diverse areas.

[https://images.e2ma.net/0/images/templates/spacer.gif]


[The University of Sydney]
Keep in touch
[Facebook]<https://t.e2ma.net/click/gq0ayv/gqotwlab/genoyxe>
[Twitter]<https://t.e2ma.net/click/gq0ayv/gqotwlab/w6noyxe>
[Instagram]<https://t.e2ma.net/click/gq0ayv/gqotwlab/czooyxe>
[LinkedIn]<https://t.e2ma.net/click/gq0ayv/gqotwlab/srpoyxe>
[YouTube]<https://t.e2ma.net/click/gq0ayv/gqotwlab/8jqoyxe>
Copyright © 2024 The University of Sydney, NSW 2006 Australia
Phone +61 2 9351  ABN 15 211 513 464 CRICOS Number: 00026A

Please add hps.ad...@sydney.edu.au to your address book or senders safe list to 
make sure you continue to see our emails in the future.

Manage<https://app.e2ma.net/app2/audience/signup/1976084/1957350/1310134758/79067148774/?s=5KwSvhvPbaobMRcFb_oVQ80CutpJkgaidFXKfL4OfrA>
 your preferences | Opt 
out<https://t.e2ma.net/optout/gq0ayv/gqotwlab?s=MaxVePuPl0FxUSwqnCIQwGRsjOoiKu03pl3f7J9ky60>
 using TrueRemove®
Got this as a forward? Sign 
up<https://app.e2ma.net/app2/audience/signup/1976084/1957350.1310134758/> to 
receive our future emails.
View this email online<https://t.e2ma.net/message/gq0ayv/gqotwlab>.

Disclaimer<https://t.e2ma.net/click/gq0ayv/gqotwlab/ocroyxe> | Privacy 
statement<https://t.e2ma.net/click/gq0ayv/gqotwlab/44royxe> | University of 
Sydney<https://t.e2ma.net/click/gq0ayv/gqotwlab/kxsoyxe>


-
SydPhil mailing list

To unsubscribe, change your membership options, find answers to common 
problems, or visit our online archives, please go to the list information page:

https://mailman.sydney.edu.au/mailman/listinfo/sydphil


[SydPhil] HPS Research Seminar, Monday 4, March 2024 at 5:30pm

2024-02-26 Thread HPS Admin via SydPhil

School of History and Philosophy of Science
RESEARCH SEMINAR
[The University of Sydney]
[https://d31hzlhk6di2h5.cloudfront.net/20240226/cb/75/e2/c4/b84bae4efd3f95e0a8dd36fd_360x512.png]
The Liar paradox, the halting problem and the edge of chaos
Mikhail Prokopenko (USyd)

Dates: Monday, 04/03/2024
Time: 5:30pm
Venue: New Law (F10), Level 3, Seminar Room 344
How to register: Free, no registration required

Abstract: We will explore several fundamental relations between formal systems, 
algorithms, and dynamical systems, focussing on the roles of self-reference and 
computational undecidability. This comparative analysis will emphasise three 
factors: (i) the program-data duality; (ii) the potential to access an infinite 
computational medium; and (iii) the ability to implement negation. Importantly, 
the program-data duality requires that a computational agent must be able to 
store and process encoded information, as well as create self-referential 
meta-level simulations. Finally, within Gödel – Turing – Post framework, we 
will argue that undecidability leads to novelty generation, via the emergence 
of functional self-descriptions across major transitions: genetic, linguistic 
and cultural.


Bio: Prof. Mikhail Prokopenko leads the Centre for Complex Systems at the 
University of Sydney. He holds PhD in Computer Science, MA in Economics, and 
MSc in Applied Mathematics. Mikhail has a strong international reputation in 
modelling and simulation of complex self-organising systems, with over 200 
publications and h-index of 43. His cross-disciplinary research in information 
theory, critical phenomena and artificial intelligence has been applied to 
pandemic and crisis modelling, systems biology, urban dynamics, and other 
diverse areas.

[https://images.e2ma.net/0/images/templates/spacer.gif]


[The University of Sydney]
Keep in touch
[Facebook]
[Twitter]
[Instagram]
[LinkedIn]
[YouTube]
Copyright © 2024 The University of Sydney, NSW 2006 Australia
Phone +61 2 9351  ABN 15 211 513 464 CRICOS Number: 00026A

Please add hps.ad...@sydney.edu.au to your address book or senders safe list to 
make sure you continue to see our emails in the future.

Manage
 your preferences | Opt 
out
 using TrueRemove®
Got this as a forward? Sign 
up to 
receive our future emails.
View this email online.

Disclaimer | Privacy 
statement | University of 
Sydney


-
SydPhil mailing list

To unsubscribe, change your membership options, find answers to common 
problems, or visit our online archives, please go to the list information page:

https://mailman.sydney.edu.au/mailman/listinfo/sydphil


Coverity Scan: Analysis completed for varnish

2024-02-26 Thread scan-admin


Your request for analysis of varnish has been completed successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yrJbcjUxJo9eCHXi2QbgV6m5FSuTtQOxGY1oSL52Ydbrw-3D-3DRt8d_WyTzqwss9kUEGhvWd0SG502mTu1yasCtuh9h-2FD3Je48WlyxHq6JJEUDzK9e2SSl2MnO6HQTrYyN0twdZO3PqtY8Zph3KfHvlEic4Q6EHnyza4ETCBiuYwk0COirzL-2BZuUBbRWe9Jlsa0iPO4azcTR-2B9aBuHaP-2B2qQhGaNJpM6vx0lwt30MySQmpEaIB7jzb7cPVCbQCAuNjVMY1YMfBe9jlylRosYaNWtHSS5EXoqs0-3D

Build ID: 594042

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
varnish-dev mailing list
varnish-dev@varnish-cache.org
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-dev


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-25 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3D02BI_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCrUWCxGQNoHX3dCba7HZ3Zm5LCALWME66r7lt6CdyWwr4I5XUdBe8-2BzFpw2DT3Md-2FjH14Y0bXwaOY41bb87W8iXh7wxm1u05K8lWETTiqbllfOPyZwTvZt0vVvP6YcRb36FeA8dzyzehRxng7s37uDPkAZIp8SHN3V098kAF432Tj77i27G0AF3TRBSKtmU6Mc-3D

Build ID: 594018

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-24 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DQank_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCqqP4QnQpEN5P0ciBjxNT7lIB8W6u5r2a51cVhwA9ypSyRttsnfQSliFsuPhhArFP8u-2BaSb9K3BpM6UjjfL3unjMYy-2BdZmekNjubtkRplpQ9aOlvXUIQ-2BSX0pqOrvYznSwXC2NnhdXTQZEpblT30Z43Dk2-2B9VBnHHSA83i0cI3geYcNHx7hMEsCabEJFusOv6c-3D

Build ID: 593794

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-23 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DkxsY_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCp-2BgzcfpRGd692MenzNnSw06JHBhtdog7O-2FogKdvFjjvk-2FXCbIsFS79CppLRLwXfAkqz8C4f-2Ffi1f2imA-2FMkH6KJ3-2FcEbrGk8L-2BpBRnV4-2FIGEA9DrbE6H1Hpwp4iS2V3hf8B8QBwDvs6K8MRBqF4PXb86r62R5Jw1MbLHcGp4eruMkbsFAHeraWia8YQPn3MDM-3D

Build ID: 593602

Analysis Summary:
   New defects found: 0
   Defects eliminated: 1

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[X2Go-Commits] [x2gokdrive] 02/02: Merge branch 'personal/sunweaver/xorg-server-21.1.10'

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 053236bfcccd1e34d8bff48321a7a85d55a75093
Merge: 4029ef0 0b99423
Author: Mihai Moldovan 
Date:   Fri Feb 23 10:17:10 2024 +0100

Merge branch 'personal/sunweaver/xorg-server-21.1.10'

Attributes GL MR !3: 
https://gitlab.x2go.org/x2go/server/drivers/x2gokdrive/-/merge_requests/3

 patches.xorg/21.1.10/quilt.env |   1 +
 patches.xorg/21.1.10/series|   2 +
 .../21.1.10/xorg-server-configure-ac.patch | 115 +
 .../xorg-server-hw-kdrive-Makefile-am.patch|  25 +
 patches.xorg/latest-available  |   2 +-
 5 files changed, 144 insertions(+), 1 deletion(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 01/02: patches.xorg/: add 21.1.10 subdirectory for current Debian testing/unstable with rebased patch set.

2024-02-23 Thread git-admin
="yes"], [X2GOKDRIVE="no"])
++elif test "x$X2GOKDRIVE" = xyes ; then
++PKG_CHECK_MODULES(X2GOKDRIVE, $X2GOKDRIVE_REQUIRED_LIBS)
++fi
++
++# X2GOKDRIVE needs nanosleep() which is in librt on Solaris
++AC_CHECK_FUNC([nanosleep], [],
++AC_CHECK_LIB([rt], [nanosleep], X2GOKDRIVE_LIBS="$X2GOKDRIVE_LIBS 
-lrt"))
++
++# damage shadow extension glx (NOTYET) fb mi
++KDRIVE_INC='-I$(top_srcdir)/hw/kdrive/src'
++KDRIVE_PURE_INCS="$KDRIVE_INC $MIEXT_SYNC_INC $MIEXT_DAMAGE_INC 
$MIEXT_SHADOW_INC $XEXT_INC $FB_INC $MI_INC"
++KDRIVE_OS_INC='-I$(top_srcdir)/hw/kdrive/linux'
++KDRIVE_INCS="$KDRIVE_PURE_INCS $KDRIVE_OS_INC"
++
++KDRIVE_CFLAGS="$XSERVER_CFLAGS"
++
++KDRIVE_PURE_LIBS="$FB_LIB $MI_LIB $FIXES_LIB $XEXT_LIB $DBE_LIB 
$RECORD_LIB $GLX_LIBS $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $DRI3_LIB $PRESENT_LIB 
$MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB 
$XKB_STUB_LIB $COMPOSITE_LIB $OS_LIB"
++KDRIVE_LIB='$(top_builddir)/hw/kdrive/src/libkdrive.la'
++KDRIVE_MAIN_LIB="$MAIN_LIB"
++KDRIVE_LOCAL_LIBS="$DIX_LIB $KDRIVE_LIB"
++KDRIVE_LOCAL_LIBS="$KDRIVE_LOCAL_LIBS $FB_LIB $MI_LIB $KDRIVE_PURE_LIBS"
++KDRIVE_LOCAL_LIBS="$KDRIVE_LOCAL_LIBS $KDRIVE_OS_LIB"
++KDRIVE_LIBS="$KDRIVE_LOCAL_LIBS $XSERVER_SYS_LIBS $GLX_SYS_LIBS 
$DLOPEN_LIBS"
++
++AC_SUBST([X2GOKDRIVE_LIBS])
++AC_SUBST([X2GOKDRIVE_INCS])
++
+ fi
+ AC_SUBST([KDRIVE_INCS])
+ AC_SUBST([KDRIVE_PURE_INCS])
+@@ -2249,6 +2294,7 @@ AC_SUBST([KDRIVE_MAIN_LIB])
+ AC_SUBST([KDRIVE_LOCAL_LIBS])
+ AC_SUBST([KDRIVE_LIBS])
+ AM_CONDITIONAL(XEPHYR, [test "x$KDRIVE" = xyes && test "x$XEPHYR" = xyes])
++AM_CONDITIONAL(X2GOKDRIVE, [test "x$KDRIVE" = xyes && test "x$X2GOKDRIVE" = 
xyes])
+ 
+ 
+ dnl and the rest of these are generic, so they're in config.h
+@@ -2379,6 +2425,8 @@ hw/xquartz/xpr/Makefile
+ hw/kdrive/Makefile
+ hw/kdrive/ephyr/Makefile
+ hw/kdrive/ephyr/man/Makefile
++hw/kdrive/x2gokdrive/Makefile
++hw/kdrive/x2gokdrive/man/Makefile
+ hw/kdrive/src/Makefile
+ test/Makefile
+ xserver.ent
diff --git a/patches.xorg/21.1.10/xorg-server-hw-kdrive-Makefile-am.patch 
b/patches.xorg/21.1.10/xorg-server-hw-kdrive-Makefile-am.patch
new file mode 100644
index 000..88d6ba3
--- /dev/null
+++ b/patches.xorg/21.1.10/xorg-server-hw-kdrive-Makefile-am.patch
@@ -0,0 +1,25 @@
+--- a/hw/kdrive/Makefile.am2023-02-07 02:16:51.0 +0100
 b/hw/kdrive/Makefile.am2023-03-03 20:24:26.669269030 +0100
+@@ -1,15 +1,20 @@
++if X2GOKDRIVE
++X2GOKDRIVE_SUBDIRS = x2gokdrive
++endif
++
+ if XEPHYR
+ XEPHYR_SUBDIRS = ephyr
+ endif
+ 
+ SERVER_SUBDIRS =  \
+-  $(XEPHYR_SUBDIRS)
++  $(XEPHYR_SUBDIRS)   \
++  $(X2GOKDRIVE_SUBDIRS)
+ 
+ SUBDIRS = \
+   src \
+   $(SERVER_SUBDIRS)
+ 
+-DIST_SUBDIRS = ephyr src
++DIST_SUBDIRS = ephyr x2gokdrive src
+ 
+ relink:
+   $(AM_V_at)for i in $(SERVER_SUBDIRS) ; do $(MAKE) -C $$i relink || exit 
1 ; done
diff --git a/patches.xorg/latest-available b/patches.xorg/latest-available
index 3f47ea1..02e0958 12
--- a/patches.xorg/latest-available
+++ b/patches.xorg/latest-available
@@ -1 +1 @@
-21.1.8
\ No newline at end of file
+21.1.10
\ No newline at end of file

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] branch master updated (4029ef0 -> 053236b)

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository x2gokdrive.

  from  4029ef0   Merge branch 'personal/sunweaver/auto-patch-xorg' into 
'master'
   new  0b99423   patches.xorg/: add 21.1.10 subdirectory for current 
Debian testing/unstable with rebased patch set.
   new  053236b   Merge branch 'personal/sunweaver/xorg-server-21.1.10'

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 patches.xorg/{1.18.4 => 21.1.10}/quilt.env   |  0
 patches.xorg/{1.18.4 => 21.1.10}/series  |  0
 .../xorg-server-configure-ac.patch   | 20 ++--
 .../xorg-server-hw-kdrive-Makefile-am.patch  |  0
 patches.xorg/latest-available|  2 +-
 5 files changed, 11 insertions(+), 11 deletions(-)
 copy patches.xorg/{1.18.4 => 21.1.10}/quilt.env (100%)
 copy patches.xorg/{1.18.4 => 21.1.10}/series (100%)
 copy patches.xorg/{21.1.8 => 21.1.10}/xorg-server-configure-ac.patch (91%)
 copy patches.xorg/{21.1.7 => 21.1.10}/xorg-server-hw-kdrive-Makefile-am.patch 
(100%)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 04/05: {patches.xorg/, debian/rules, x2gokdrive.spec}: Add semi-auto-detection of latest available patchset and fallback to that if we don't have a patchset for an exact xo

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 5b1d0e193933ede9292aa364d6b06b7da641a71a
Author: Mike Gabriel 
Date:   Sat Jan 6 20:56:07 2024 +

{patches.xorg/,debian/rules,x2gokdrive.spec}: Add semi-auto-detection of 
latest available patchset and fallback to that if we don't have a patchset for 
an exact xorg-server version.
---
 debian/rules  | 16 +++-
 patches.xorg/latest-available |  1 +
 x2gokdrive.spec   | 27 ---
 3 files changed, 28 insertions(+), 16 deletions(-)

diff --git a/debian/rules b/debian/rules
index 5dd4903..0dbd016 100755
--- a/debian/rules
+++ b/debian/rules
@@ -33,11 +33,17 @@ override_dh_auto_configure:
rm .pc -Rfv; \

QUILT_PATCHES="../../patches.xorg/$${XORG_UPSTREAM_VERSION}/" quilt push -a; \
else \
-   ( \
-   set +x; \
-   printf 
'\n##\nERROR: This X2Go KDrive 
version does not support\nbuilding against X.Org version 
%s.\n##\n' 
"$${XORG_UPSTREAM_VERSION}"; \
-   exit '1'; \
-   ); \
+   QUILT_PATCHES='../../patches.xorg/latest-available/' 
quilt pop -a; \
+   rm -Rfv '.pc'; \
+   QUILT_PATCHES='../../patches.xorg/latest-available/' 
quilt push -a; \
+   QUILT_EXITCODE="$${?}"; \
+   if [ '0' != "$${QUILT_EXITCODE}" ]; then \
+   ( \
+   set +x; \
+   printf 
'\n##\nERROR: This X2Go KDrive 
version does not support\nbuilding against X.Org version 
%s.\n##\n' 
"$${XORG_UPSTREAM_VERSION}"; \
+   exit '1'; \
+   ); \
+   fi; \
fi
 
# run autoreconf
diff --git a/patches.xorg/latest-available b/patches.xorg/latest-available
new file mode 12
index 000..3f47ea1
--- /dev/null
+++ b/patches.xorg/latest-available
@@ -0,0 +1 @@
+21.1.8
\ No newline at end of file
diff --git a/x2gokdrive.spec b/x2gokdrive.spec
index 71d14e9..e0af9d8 100644
--- a/x2gokdrive.spec
+++ b/x2gokdrive.spec
@@ -274,18 +274,23 @@ export XORG_UPSTREAM_VERSION="$(grep 'AC_INIT' 
'BUILD/configure.ac' | sed -r 's/
 pushd 'BUILD'
 if [ -d "../patches.xorg/${XORG_UPSTREAM_VERSION}" ]; then
   QUILT_PATCHES="../patches.xorg/${XORG_UPSTREAM_VERSION}/" quilt push -a
-  if [ -d "../patches.xorg/${XORG_UPSTREAM_VERSION}/missing" ]; then
-# Hack used to install missing files.
-# This is actually working around problems in the upstream
-# xorg-server-source packages, which will have to be reported upstream.
-cp -av "../patches.xorg/${XORG_UPSTREAM_VERSION}/missing/"* 'BUILD/'
-  fi
 else
-  (
-set +x
-printf '\n##\nERROR: This 
X2Go KDrive version does not support\nbuilding against X.Org version 
%s.\n##\n' 
"${XORG_UPSTREAM_VERSION}"
-exit '1'
-  )
+  QUILT_PATCHES='../patches.xorg/latest-available/' quilt push -a
+  QUILT_EXITCODE="${?}"
+  if [ '0' != "${QUILT_EXITCODE}" ]; then
+(
+  set +x
+  printf '\n##\nERROR: 
This X2Go KDrive version does not support\nbuilding against X.Org version 
%s.\n##\n' 
"${XORG_UPSTREAM_VERSION}"
+  exit '1'
+)
+  fi
+  XORG_UPSTREAM_VERSION='latest-available'
+fi
+if [ -d "../patches.xorg/${XORG_UPSTREAM_VERSION}/missing" ]; then
+  # Hack used to install missing files.
+  # This is actually working around problems in the upstream
+  # xorg-server-source packages, which will have to be reported upstream.
+  cp -av "../patches.xorg/${XORG_UPSTREAM_VERSION}/missing/"* 'BUILD/'
 fi
 
 %build

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 05/05: Merge branch 'personal/sunweaver/auto-patch-xorg' into 'master'

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 4029ef063131bf716026a0cda1f306e2df54ce5f
Merge: d0cc69c 5b1d0e1
Author: Mike Gabriel 
Date:   Fri Feb 23 08:30:53 2024 +

Merge branch 'personal/sunweaver/auto-patch-xorg' into 'master'

patches.xorg: semi-auto-detect latest available xorg-server patchset and 
use it as fallback (plus: debian/Jenkinsfile: Add file. Initiate CI builds).

See merge request x2go/server/drivers/x2gokdrive!2

 debian/Jenkinsfile|  6 ++
 debian/control|  4 ++--
 debian/rules  | 16 +++-
 patches.xorg/latest-available |  1 +
 x2gokdrive.spec   | 27 ---
 5 files changed, 36 insertions(+), 18 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 03/05: debian/control: Prefer libxcb-util-dev over ibxcb-util0-dev (not available in Debian trixie anymore).

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 5c222e8dc8669b1d108eb85ef5c1834d350a1eb7
Author: Mike Gabriel 
Date:   Sat Jan 6 19:50:28 2024 +

debian/control: Prefer libxcb-util-dev over ibxcb-util0-dev (not available 
in Debian trixie anymore).
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 76d344b..714a3d3 100644
--- a/debian/control
+++ b/debian/control
@@ -81,7 +81,7 @@ Build-Depends:
  libxcb-shape0-dev,
  libxcb-render0-dev,
  libxcb-render-util0-dev,
- libxcb-util0-dev,
+ libxcb-util-dev | ibxcb-util0-dev,
  libxcb-image0-dev,
  libxcb-icccm4-dev,
  libxcb-shm0-dev,

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 02/05: debian/control: Prefer libgl-dev (new dev:pkg to use since bookworm) over libgl1-mesa-dev.

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 799f78739db1073ecc1b1b3482eca81a8dd5c89a
Author: Mike Gabriel 
Date:   Sat Jan 6 19:49:35 2024 +

debian/control: Prefer libgl-dev (new dev:pkg to use since bookworm) over 
libgl1-mesa-dev.
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index d779490..76d344b 100644
--- a/debian/control
+++ b/debian/control
@@ -57,7 +57,7 @@ Build-Depends:
  libselinux1-dev (>= 2.0.80) [linux-any],
  libaudit-dev [linux-any],
  libpam-dev,
- libgl1-mesa-dev (>= 9.2),
+ libgl-dev | libgl1-mesa-dev (>= 9.2),
  libunwind-dev [amd64 arm64 armel armhf hppa i386 ia64 mips64 mips64el mipsel 
powerpc powerpcspe ppc64 ppc64el sh4],
  libxcvt-dev | sl,
  libxmuu-dev (>= 1:0.99.1),

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] 01/05: debian/Jenkinsfile: Add file. Initiate CI builds.

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2gokdrive.

commit e061196a5e61c757bdc6d81c15f3e686c18b89d5
Author: Mike Gabriel 
Date:   Thu Jan 4 12:50:19 2024 +0100

debian/Jenkinsfile: Add file. Initiate CI builds.
---
 debian/Jenkinsfile | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/Jenkinsfile b/debian/Jenkinsfile
new file mode 100644
index 000..f946141
--- /dev/null
+++ b/debian/Jenkinsfile
@@ -0,0 +1,6 @@
+@Library('jenkins-ci-tools') _
+buildDebianPackage(
+/* isArchIndependent */ false,
+/* ignoredArchs */ [],
+/* isHeavyPackage */ true
+)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2gokdrive] branch master updated (d0cc69c -> 4029ef0)

2024-02-23 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository x2gokdrive.

  from  d0cc69c   Continue development
   new  e061196   debian/Jenkinsfile: Add file. Initiate CI builds.
   new  799f787   debian/control: Prefer libgl-dev (new dev:pkg to use 
since bookworm) over libgl1-mesa-dev.
   new  5c222e8   debian/control: Prefer libxcb-util-dev over 
ibxcb-util0-dev (not available in Debian trixie anymore).
   new  5b1d0e1   {patches.xorg/,debian/rules,x2gokdrive.spec}: Add 
semi-auto-detection of latest available patchset and fallback to that if we 
don't have a patchset for an exact xorg-server version.
   new  4029ef0   Merge branch 'personal/sunweaver/auto-patch-xorg' into 
'master'

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/Jenkinsfile|  6 ++
 debian/control|  4 ++--
 debian/rules  | 16 +++-
 patches.xorg/latest-available |  1 +
 x2gokdrive.spec   | 27 ---
 5 files changed, 36 insertions(+), 18 deletions(-)
 create mode 100644 debian/Jenkinsfile
 create mode 12 patches.xorg/latest-available

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-22 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3D86_-_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCoPuNtE9hiSNmEET8blUPopIGFaGWuHh8RFtdCvipLe3IQpBRMRSNgiJNPKuhOS9v-2FjWD4Evolgz5-2BF14ur85cIPjsECcdM7ATtMRqjtPMeW3p6Zv96tYN0h36PU-2FbPoMHhxJwWR5iOI9ZpVPawBnFFONS47DR9N3gCX-2BYta-2FGSwA-3D-3D

Build ID: 593388

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-21 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DHGur_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCqmSSs-2FSXFA-2BEB4YNUMSQPm6n8vuIVQo2hFmuSFTd3RObYNkiR1Jtd36XinthObjtz-2FcDExGZEyi-2BAwo25FUe8N6h-2BQxhN-2FSlsvoEjukxMneS4g53ULXjnU3u8s5YPFIs9xTObK59CziLJkkly46MUQ-2FV-2BVSd5FJhRbqwB3bn9wpSChtA0Dh3q4XC8vdQ-2BDEM0-3D

Build ID: 593172

Analysis Summary:
   New defects found: 0
   Defects eliminated: 16

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-20 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DsNNc_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCrPZvpGy8f6i2mR43IHorzwvEvSVZLN5AWuAMFwMhomlQDkSwK85NCzmDGDKWiARqmJlwX4pfl-2FazHYepYo-2BQZIeSAyYkuO-2B-2F9KfTRW6MEdoSIU2hHn57Yq3Ltxj4AcaGBwqYekzlypwuy6-2FazSS9BIABHunNBeF2ayEwZ1s-2ByXcFTy9r09YX2c06iHu4XJUOE-3D

Build ID: 592942

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


Re: [tor-relays] 7000 concurrent connections

2024-02-20 Thread admin--- via tor-relays
Just try it!

Tor will limit the amount of connections it accepts based on how much RAM you 
have.



\ Original Message 
On Feb 20, 2024, 06:16, snowmanonahoe--- via tor-relays < 
tor-relays@lists.torproject.org> wrote:

>
>
>
> Hello all,
>
>
>
>
> I'm interested in running a relay. I should meet all the requirements for a 
> guard/middle, except handling 7000 concurrent connections, which I'm unsure 
> of. The website seems to tell me to try it and see what happens, but what 
> exactly am I watching out for? Is the router going to fail entirely, slow 
> down, or something else?
>
>
>
>
> Thanks in advance.
>
>
>

signature.asc
Description: OpenPGP digital signature
___
tor-relays mailing list
tor-relays@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-19 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DyCo4_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCrYgOTlIGz164i-2Bo4MyqO-2BtEvnJnvmlk-2B3-2FRHqtNOy3FlMx8agahpDyGeUyuJUlGmr9TJ8NieD7d1mrrmTSoneu7s0VfIOLbBwszEW3pGsr3WkTGUI9WzLLJOiM97Dl04vZPGz-2FaYW-2FalEAy0G-2B8CNwhDpK4INnbNe6NH2GkXpRLQ-3D-3D

Build ID: 592722

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


Coverity Scan: Analysis completed for varnish

2024-02-19 Thread scan-admin


Your request for analysis of varnish has been completed successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yrJbcjUxJo9eCHXi2QbgV6m5FSuTtQOxGY1oSL52Ydbrw-3D-3DsKtg_WyTzqwss9kUEGhvWd0SG502mTu1yasCtuh9h-2FD3Je4-2FGCNicvfBwTzYQRMxVO6OxW7q-2BsMVo85oLNea4IGmP4xR8xdVqiHcPQxVjVZogl-2B6qGBFtjboWyvLTg8iTH5a23UcxYoH6jQrLv-2F7mxZBa3TLDoaFddZDPlr9xsbJaaS8oEq5Zedgx07Mw8U28vD7fiZgCrCNaIR3YkGMJXTZOfY6yiSq8IGW8iF0ux0sfW5U-3D

Build ID: 592497

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
varnish-dev mailing list
varnish-dev@varnish-cache.org
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-dev


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-18 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DlVKB_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSColqBpgyDcW8lePrabyU0e3WYkcvPVZruj5U712zD9l-2F-2FcDda1DkL5-2BCq9Id5UD8tqqCgddcs6JQMTLT6JFQxIySoDyyGUua2ZUShcoROkL3Q5sKh0l-2FX6EgUyYJoy1YmRRTQypzz7OW-2F7LIIl-2BeM5VeKqfP1KSheYF09GeQzKYOw-3D-3D

Build ID: 592472

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-17 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DDa7y_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCphO0FNLdLwfGcF7C-2FMvxNmAfaaHhAy8P74HcUi3g7jXBnidoOuHd6hIDBrr-2Bx7aq-2BU98BOjlbaWWN5uspxpVw8soSwxXxqbzXGEwlQLByPso3TGxbH6I-2FLC4XCoLTeo1hqGhYsoF8-2BZpysAxWnyNCTyT4CSWNjJg0y4wI43SCtvQ-3D-3D

Build ID: 592263

Analysis Summary:
   New defects found: 1
   Defects eliminated: 11

If you have difficulty understanding any defects, email us at 
scan-ad...@coverity.com,
or post your question to StackOverflow
at 
https://u15810271.ct.sendgrid.net/ls/click?upn=CTPegkVN6peWFCMEieYYmPWIi1E4yUS9EoqKFcNAiqhRq8qmgeBE-2Bdt3uvFRAFXdWuYPtetdiJ46h-2Fd1eC1gFA-3D-3DIsv__f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCphO0FNLdLwfGcF7C-2FMvxNmAfaaHhAy8P74HcUi3g7jXDhyY6aR2E0cUgQrI8LYhRCeOs6f2tRUVXZiuIiqVt2Dua3J2w701qTMLpKKPp29zuY54Ex9mzwSYfe984i5TAc81L1DTlHWQWvIvykeg25IRU29jQUtAaV6gnjMsqr0KQ-3D-3D
___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-16 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3DLFFx_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCpvSp-2BYi4yk-2FlbcQCo5DkS0an72XvlrI9dVLjxwoaiLJHSWoyOexArnEuFhqjt6rc2KtTaN2wdrjRk7GPAEWi7t6XWLypcXebWG32ZcUZWaUUpQxxZqpN8kKhaibl7xLd8WO5HfYrBpNTixNQRowSOIn-2FS6-2BUhNbzs9iANn-2BO0o9eU51ws8-2FepHJTGvhsO9j9M-3D

Build ID: 592076

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


New Defects reported by Coverity Scan for LibreOffice

2024-02-16 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

1 new defect(s) introduced to LibreOffice found with Coverity Scan.
1 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 1 of 1 defect(s)


** CID 1592140:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx: 237 in 
drawinglayer::primitive2d::PatternFillPrimitive2D::create2DDecomposition(const 
drawinglayer::geometry::ViewInformation2D &) const()



*** CID 1592140:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx: 237 in 
drawinglayer::primitive2d::PatternFillPrimitive2D::create2DDecomposition(const 
drawinglayer::geometry::ViewInformation2D &) const()
231 
232 // create one primitive for each matrix
233 for(size_t a(0); a < aMatrices.size(); a++)
234 {
235 aRetval[a] = new TransformPrimitive2D(
236 aMatrices[a],
>>> CID 1592140:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
>>> "aContent" is passed-by-value as parameter to 
>>> "drawinglayer::primitive2d::TransformPrimitive2D::TransformPrimitive2D(basegfx::B2DHomMatrix,
>>>  drawinglayer::primitive2d::Primitive2DContainer &&)" when it could be 
>>> moved instead.
237 Primitive2DContainer(aContent));
238 }
239 
240 // transform result which is in unit coordinates to mask's 
object coordinates
241 {
242 const basegfx::B2DHomMatrix aMaskTransform(



To view the defects in Coverity Scan visit, 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50ypSs1kiFPuCn2xFdlMIFBirii0zZ9j2-2F9F2XPBcBm2BNnPiSHxWPOELPnIxzXoBNaw-3Dtz1R_OTq2XUZbbipYjyLSo6GRo-2FpVxQ9OzkDINu9UTS-2FQhSdO0F0jQniitrGlNxDIzPJiZjg2Q2TJLdTnF-2B9XFDtNnn7ZwF3iYbeyhd4IuSBeG6GhFOROVKZeGU-2Bn2kqQJh9KOx-2Bg78lyJNUvgB8bzjaslJyPbolkCmGdsj6dNoJ92d2GYkFpA54lTi-2BlWlAhXyTPlLgSn12O-2FJyo5xLYnr2AgL-2FvdcOcJ90t21PpSHx9VYg-3D



[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-15 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DQrdD_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro864CVgJ64zeyR5Mk-2Fh5dukxkbOCleu26Sb03r0k2aN0-2BRELLV5CElNQvsVWIB421mdB6rpi8YsT4haIw7hhIA-2BlKEO-2BKAWNvIXJMria7j0VpxjGgNzlKDOJ88iBWZlVCH8T-2FU0tl-2BRdPDIbZQRyd-2F1h4Dwn7l5qrW2-2Fm4kN2IXrH-2FEya1NUeFweAr7X9vQ2PAU-3D

Build ID: 591858

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-14 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2BKADyCpvUKOL6EWmZljiu7rQ5q4Sxmeg1vmKaoAOPVN5YdK2Yyc7DQ7deog4NmMBg-3D-3DBQ7z_Vao1hkjRncE3JyBIkMLvuvXZlfb3c6ucigF5JRQro84540DcQkeHjtWeoqm3gVD9u0LKrvLwmRUB7coIT-2Bl-2B9IJqz-2BP9ckwJncVggSRcu-2FfGtxpcaoVXH-2BJY-2F1v2Z7FLoc5NgICqTxh3Dbun6WVjSEGyohOwLCqRHICMZrUg8efXFHN-2BVt0rk2qAefH1EqlvigDRIajeQvEf-2FDfLWkwZbQeAZ5dHnOBIg9uKtB0w6YQ-3D

Build ID: 591636

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[X2Go-Commits] [[X2Go Wiki]] page changed: events:2023

2024-02-14 Thread wiki-admin
A page in your DokuWiki was added or changed. Here are the details:

Browser : Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 
(KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36
IP Address  : 178.202.75.45
Hostname: ip-178-202-075-045.um47.pools.vodafone-ip.de
Old Revision: https://wiki.x2go.org/doku.php/events:2023?rev=1704223742
New Revision: https://wiki.x2go.org/doku.php/events:2023
Date of New Revision: 2024/02/14 13:40
Edit Summary: [2023-09-30 LinuxDay.AT, Dornbirn, Austria] added link to 
recording
User: stefanbaur

There may be newer changes after this revision. If this
happens, a message will be shown on the top of the rev page.

@@ -29,9 +29,9 @@
  {{:events:it_kongress_2023.jpg?400|}}
  
   2023-09-30 LinuxDay.AT, Dornbirn, Austria 
  * was a real-life event
- * Talk ("X2Go - KDrive has been released - but how to try it out?" - Talk 
will be in German) confirmed - Room 102, 16:00 CEST
+ * Talk ("X2Go - KDrive has been released - but how to try it out?" - Talk 
will be in German) confirmed - Room 102, 16:00 CEST - Recording can be found 
[[https://video.linuxday.at/video_final/2023/raum_102_1500_x2go_kdrive_ist_released_aber_wie_ausprobieren_stefan_baur_hihai_moldovan.mp4|here]]
  * Booth confirmed: we were at "D4"
  * Booth staff: Stefan, Mihai - Juri and Naira had to cancel, sadly :'(
  * Website: https://www.linuxday.at/
  * Exhibitor list: https://www.linuxday.at/aussteller/2023


-- 
This mail was generated by DokuWiki at
https://wiki.x2go.org/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-13 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3D0Q0f_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCppnHoK2q-2Bb0BuZVkZGFWflzneU6cUggt7YpfX7ghaTPIDe-2FUbO-2BDHr0KSmv0-2FCCAyeNYtNcznGzQPUZswBbwuMBOw4rBOpJE9fv7Z1tXmhoxkpSFxQztnsY2XQCdjY4yqAfxJB7JZMxkJx-2F07CvOQs49TGU-2FZ4x1koh3ZhzNzAzatqKVIcGUX9W-2FRyPFoQv68-3D

Build ID: 591419

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-12 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3Dw2Jt_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCojj2Shp0YdO72Ygo5br3FNYDdyKhAyx-2Fi0RVa46OxzLOa0TAUTZiq86KDcuoR16VQAfqwT4O3gx0fhSF8LAaLbs3i6aHg-2FUC19sv5U4kAY7cH56Q1-2BGqycL1UH7rvqp0wBTn9SHRSDKGSzxW5-2B0CCe-2B6bz3rpcDHEYNVQsEzmxxGYKX-2FcMJPc7UDV3JeidnZo-3D

Build ID: 591172

Analysis Summary:
   New defects found: 36
   Defects eliminated: 0

If you have difficulty understanding any defects, email us at 
scan-ad...@coverity.com,
or post your question to StackOverflow
at 
https://u15810271.ct.sendgrid.net/ls/click?upn=CTPegkVN6peWFCMEieYYmPWIi1E4yUS9EoqKFcNAiqhRq8qmgeBE-2Bdt3uvFRAFXdWuYPtetdiJ46h-2Fd1eC1gFA-3D-3DkbL2_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCojj2Shp0YdO72Ygo5br3FNYDdyKhAyx-2Fi0RVa46OxzLNDTuP19iseCqwgFYngHMtaVjqAp0GBTb4enom96uDq3Pl4Ulg39m3yJNleqxljz4q9cMiWwXH6Fl9xbYVt2FBd8Hk6bl6iZOGa5H-2BLW3Mjg3ch3BvfjhZLs7VPZnJm26Q7zA7fqBBaj6x1uXEIyZP0-3D
___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


Basic API Access Token

2024-02-12 Thread Tableau Admin
Hello,

Like many on this forum I am also waiting to hear back from the API 
Compliance team regarding our Basic API Token. I am hoping you can escalate 
this as we have been waiting over 2 months at this point.


   - MCC ID: 499-029-0839
   - Access level: Basic
   - Case ID: 7-116135377

I believe this is the Case ID. I was able to retrieve it from the Help chat 
but I never received any email confirmation when I first applied.

Thank you

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b40956b7-6589-431e-a3a8-b4b9a37c72f9n%40googlegroups.com.


[Bug c++/113852] -Wsign-compare doesn't warn on unsigned result types

2024-02-12 Thread admin at computerquip dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113852

--- Comment #7 from Zachary L  ---
(In reply to Richard Biener from comment #6)
> Well, given athat a1 * a2 is carried out in 'int' you are invoking undefined
> behavior if it overflows.  GCC assumes that doesn't happen so it's correct
> to elide the diagnostic.  Unless you make overflow well-defined with -fwrapv.
> 
> I think that errors on the right side for the purpose of -Wsign-compare.

Removing a diagnostic because the program could be ill-formed seems backwards
to me, especially since it seems like there's already logic in performing this
diagnostic. Perhaps I've misunderstood the situation?

Coverity Scan: Analysis completed for varnish

2024-02-12 Thread scan-admin


Your request for analysis of varnish has been completed successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yrJbcjUxJo9eCHXi2QbgV6m5FSuTtQOxGY1oSL52Ydbrw-3D-3DiJlh_WyTzqwss9kUEGhvWd0SG502mTu1yasCtuh9h-2FD3Je4-2B3zrdTnNCO-2BXs45zqij2-2FdxxcU5LvFTijSqxsPigKb5vGh6fN7hJs1ZbjfgWODeCeHyQwXKOmipzdqmp-2BAvjNKXqjs-2Fy6ZhchtXAmLNE3ypuYLhYcvcHqMzZCHBfEP-2BbmnK6iMkudTH7U3hD0NV1Xkp-2FNMSl2QFAxT5RXOVmIT0TLR01D-2F2TZooTwPj82weLA-3D

Build ID: 590945

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
varnish-dev mailing list
varnish-dev@varnish-cache.org
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-dev


New Defects reported by Coverity Scan for LibreOffice

2024-02-10 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

1 new defect(s) introduced to LibreOffice found with Coverity Scan.
9 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 1 of 1 defect(s)


** CID 1591787:  API usage errors  (SWAPPED_ARGUMENTS)



*** CID 1591787:  API usage errors  (SWAPPED_ARGUMENTS)
/vcl/source/window/printdlg.cxx: 1036 in vcl::PrintDialog::updatePageSize(int)()
1030 
1031 if (nOrientation != ORIENTATION_AUTOMATIC)
1032 {
1033 if ((nOrientation == ORIENTATION_PORTRAIT && aSize.Width() > 
aSize.Height())
1034 || (nOrientation == ORIENTATION_LANDSCAPE && aSize.Width() 
< aSize.Height()))
1035 {
>>> CID 1591787:  API usage errors  (SWAPPED_ARGUMENTS)
>>> The positions of arguments in the constructor for "Size" do not match 
>>> the ordering of the parameters:
* "aSize.Height()" is passed to "nWidth".
* "aSize.Width()" is passed to "nHeight".
1036 aSize = Size(aSize.Height(), aSize.Width());
1037 }
1038 }
1039 
1040 aPrt->SetPrintPageSize(aSize);
1041 aPrt->SetUsePrintDialogSetting(true);



To view the defects in Coverity Scan visit, 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50ypSs1kiFPuCn2xFdlMIFBirii0zZ9j2-2F9F2XPBcBm2BNnPiSHxWPOELPnIxzXoBNaw-3DDZ5s_OTq2XUZbbipYjyLSo6GRo-2FpVxQ9OzkDINu9UTS-2FQhSdO0F0jQniitrGlNxDIzPJi-2FMQNah90sVdv0ufhkoWtzO2yEdxi5dY8o2vQQcoB2hSoFdNaLwNmMm2gNCNERoDYMS8RgLOYE-2BbbR5orvWVPZD-2BuXBdfvqECndMhQI28ykYcGID5mITnTdGzTD6Riqj0OEId5AFt9Df0-2BKx251CiECdMrJhLCwyirGDqU81cM1A-3D



[Bug c++/113852] -Wsign-compare doesn't warn on unsigned result types

2024-02-09 Thread admin at computerquip dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113852

--- Comment #1 from Zachary L  ---
Sorry, that should say "If *both* a1 or a2 are constexpr, the warning will
occur."

[Bug c++/113852] New: -Wsign-compare doesn't warn on unsigned result types

2024-02-09 Thread admin at computerquip dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113852

Bug ID: 113852
   Summary: -Wsign-compare doesn't warn on unsigned result types
   Product: gcc
   Version: 14.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: c++
  Assignee: unassigned at gcc dot gnu.org
  Reporter: admin at computerquip dot com
  Target Milestone: ---

I haven't quite figured out the pattern here so the title may not be great.
Some code may help explain better: https://godbolt.org/z/d8cqd1WqP

```
#include 
#include 
#include 

int main()
{
uint16_t a1 = std::numeric_limits::max();
uint16_t a2 = std::numeric_limits::max();

/* a1 * a2 should be 4294836225 in math terms */
uint64_t a3 = 4294836225;

/*
 * The result of (a1 * a2) is of type int and the result is negative.
 * (a1 * a2) ends up as some bogus high number because the common
 * type here ends up as uint64_t and sign-extension occurs.
 */
if ((a1 * a2) > a3) {
std::cout << "this will print\n";
}
}
```

Some observations I've noticed:
* If either a1 or a2 are constexpr, the warning will occur.
* This used to warn up until 8.1.
* Clang also doesn't warn here but MSVC will with /W3 or higher.
* This seems like a slight variation of
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101645

[X2Go-Commits] [live-build-x2go] 01/01: fixed tcedebug commandline parameter

2024-02-09 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch heuler/openbox-magic-pixel-workaround-bullseye
in repository live-build-x2go.

commit 51bb1567eb34ae3d634d2727f368c8e5335312a2
Author: Stefan Baur (BAUR-ITCS) 
Date:   Fri Feb 9 16:29:51 2024 +0100

fixed tcedebug commandline parameter
---
 .../includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient | 11 ++-
 .../lib/live/config/2900-x2go-thinclientconfig|  1 -
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient 
b/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient
index e22b47e..857c15b 100644
--- a/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient
+++ b/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient
@@ -100,4 +100,13 @@ if [ -n "$THROTTLEVALUES" ]; then
fi
 fi
 
-eval $THROTTLINGCOMMAND x2goclient --thinclient --no-session-edit --no-menu 
--maximize --add-to-known-hosts --haltbt --read-exports-from=/home/user/export 
$LDAPPARAMS $SESSIONFROM $BACKGROUND $BRANDING $STARTSESSION
+# this is for additional debug logging
+if grep -q ' tcedebug' /proc/cmdline; then
+   while ! [ -f /var/log/x2goclient ] ; do
+   echo "'$0' is waiting for the creation of the 
'/var/log/x2goclient' file."
+   sleep 2
+   done
+   DEBUGPARAMS='--debug 2>&1 | tee /var/log/x2goclient >/dev/tty9'
+fi
+
+eval $THROTTLINGCOMMAND x2goclient --thinclient --no-session-edit --no-menu 
--maximize --add-to-known-hosts --haltbt --read-exports-from=/home/user/export 
$LDAPPARAMS $SESSIONFROM $BACKGROUND $BRANDING $STARTSESSION $DEBUGPARAMS
diff --git a/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig 
b/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig
index 87860ee..15061a9 100755
--- a/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig
+++ b/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig
@@ -23,7 +23,6 @@ sed -i -e '/ToggleMaximize/d' /etc/xdg/openbox/rc.xml
 if grep -q ' tcedebug' /proc/cmdline; then
touch /var/log/x2goclient
chmod 666 /var/log/x2goclient
-   DEBUGPARAMS='--debug 2>&1 | tee /var/log/x2goclient >/dev/tty9'
 fi
 
 # This is needed for File Sharing support (USB media and the like)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/live-build-x2go.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [live-build-x2go] branch heuler/openbox-magic-pixel-workaround-bullseye updated (a715859 -> 51bb156)

2024-02-09 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch heuler/openbox-magic-pixel-workaround-bullseye
in repository live-build-x2go.

  from  a715859   this will now properly terminate all backgrounded child 
processes when X11 dies
   new  51bb156   fixed tcedebug commandline parameter

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient | 11 ++-
 .../lib/live/config/2900-x2go-thinclientconfig|  1 -
 2 files changed, 10 insertions(+), 2 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/live-build-x2go.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [live-build-x2go] branch heuler/openbox-magic-pixel-workaround-bookworm updated (c782921 -> e33acf6)

2024-02-09 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch heuler/openbox-magic-pixel-workaround-bookworm
in repository live-build-x2go.

  from  c782921   removed bashism as we are forced to use dash in bookworm
   new  e33acf6   fixed tcedebug commandline parameter

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient | 11 ++-
 .../lib/live/config/2900-x2go-thinclientconfig|  1 -
 2 files changed, 10 insertions(+), 2 deletions(-)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/live-build-x2go.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [live-build-x2go] 01/01: fixed tcedebug commandline parameter

2024-02-09 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch heuler/openbox-magic-pixel-workaround-bookworm
in repository live-build-x2go.

commit e33acf689b21484b010e1a32f1aab497afe5
Author: Stefan Baur (BAUR-ITCS) 
Date:   Fri Feb 9 16:29:51 2024 +0100

fixed tcedebug commandline parameter
---
 .../includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient | 11 ++-
 .../lib/live/config/2900-x2go-thinclientconfig|  1 -
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient 
b/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient
index ae3f681..43f6fa4 100644
--- a/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient
+++ b/config/includes.chroot/etc/X11/Xsession.d/61x11-start-x2goclient
@@ -108,4 +108,13 @@ if [ -n "$THROTTLEVALUES" ]; then
fi
 fi
 
-eval $THROTTLINGCOMMAND x2goclient --thinclient --no-session-edit --no-menu 
--maximize --add-to-known-hosts --haltbt --read-exports-from=/home/user/export 
$LDAPPARAMS $SESSIONFROM $BACKGROUND $BRANDING $STARTSESSION
+# this is for additional debug logging
+if grep -q ' tcedebug' /proc/cmdline; then
+   while ! [ -f /var/log/x2goclient ] ; do
+   echo "'$0' is waiting for the creation of the 
'/var/log/x2goclient' file."
+   sleep 2
+   done
+   DEBUGPARAMS='--debug 2>&1 | tee /var/log/x2goclient >/dev/tty9'
+fi
+
+eval $THROTTLINGCOMMAND x2goclient --thinclient --no-session-edit --no-menu 
--maximize --add-to-known-hosts --haltbt --read-exports-from=/home/user/export 
$LDAPPARAMS $SESSIONFROM $BACKGROUND $BRANDING $STARTSESSION $DEBUGPARAMS
diff --git a/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig 
b/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig
index 87860ee..15061a9 100755
--- a/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig
+++ b/config/includes.chroot/lib/live/config/2900-x2go-thinclientconfig
@@ -23,7 +23,6 @@ sed -i -e '/ToggleMaximize/d' /etc/xdg/openbox/rc.xml
 if grep -q ' tcedebug' /proc/cmdline; then
touch /var/log/x2goclient
chmod 666 /var/log/x2goclient
-   DEBUGPARAMS='--debug 2>&1 | tee /var/log/x2goclient >/dev/tty9'
 fi
 
 # This is needed for File Sharing support (USB media and the like)

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/live-build-x2go.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits


New Defects reported by Coverity Scan for LibreOffice

2024-02-09 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

10 new defect(s) introduced to LibreOffice found with Coverity Scan.
8 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 10 of 10 defect(s)


** CID 1591769:(COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Insert.cxx: 611 in 
chart::ChartController::executeDispatch_InsertErrorBars(bool)()
/chart2/source/controller/main/ChartController_Insert.cxx: 572 in 
chart::ChartController::executeDispatch_InsertErrorBars(bool)()



*** CID 1591769:(COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Insert.cxx: 611 in 
chart::ChartController::executeDispatch_InsertErrorBars(bool)()
605 getChartModel(),
606 bYError ? ErrorBarResources::ERROR_BAR_Y : 
ErrorBarResources::ERROR_BAR_X);
607 
608 aDlg->SetAxisMinorStepWidthForErrorBarDecimals(
609 
InsertErrorBarsDialog::getAxisMinorStepWidthForErrorBarDecimals( 
getChartModel(), m_xChartView, u"" ) );
610 
>>> CID 1591769:(COPY_INSTEAD_OF_MOVE)
>>> "aUndoGuard" is copied in call to copy constructor 
>>> "std::shared_ptr", when it could be moved instead.
611 weld::DialogController::runAsync(aDlg, [this, aDlg, 
aItemConverter, aUndoGuard](int nResult) {
612 if ( nResult == RET_OK )
613 {
614 SfxItemSet aOutItemSet = 
aItemConverter->CreateEmptyItemSet();
615 aDlg->FillItemSet( aOutItemSet );
616 
/chart2/source/controller/main/ChartController_Insert.cxx: 572 in 
chart::ChartController::executeDispatch_InsertErrorBars(bool)()
566 aDlg->SetAxisMinorStepWidthForErrorBarDecimals(
567 
InsertErrorBarsDialog::getAxisMinorStepWidthForErrorBarDecimals( 
getChartModel(),
568 
 m_xChartView, m_aSelection.getSelectedCID()));
569 
570 // note: when a user pressed "OK" but didn't change any 
settings in the
571 // dialog, the SfxTabDialog returns "Cancel"
>>> CID 1591769:(COPY_INSTEAD_OF_MOVE)
>>> "aUndoGuard" is copied in call to copy constructor 
>>> "std::shared_ptr", when it could be moved 
>>> instead.
572 SfxTabDialogController::runAsync(aDlg, [this, aDlg, 
aItemConverter, aUndoGuard](int nResult) {
573 if ( nResult == RET_OK || aDlg->DialogWasClosedWithOK() )
574 {
575 const SfxItemSet* pOutItemSet = 
aDlg->GetOutputItemSet();
576 if( pOutItemSet )
577 {

** CID 1591768:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Insert.cxx: 291 in 
chart::ChartController::executeDispatch_InsertTitles()()



*** CID 1591768:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
/chart2/source/controller/main/ChartController_Insert.cxx: 291 in 
chart::ChartController::executeDispatch_InsertTitles()()
285 {
286 auto aDialogInput = std::make_shared();
287 aDialogInput->readFromModel( getChartModel() );
288 
289 SolarMutexGuard aGuard;
290 auto aDlg = std::make_shared(GetChartFrame(), 
*aDialogInput);
>>> CID 1591768:  Performance inefficiencies  (COPY_INSTEAD_OF_MOVE)
>>> "aUndoGuard" is copied in call to copy constructor 
>>> "std::shared_ptr", when it could be moved instead.
291 weld::DialogController::runAsync(aDlg, [this, aDlg, 
aDialogInput, aUndoGuard](int nResult){
292 if ( nResult == RET_OK )
293 {
294 // lock controllers till end of block
295 ControllerLockGuardUNO aCLGuard( getChartModel() );
296 TitleDialogData aDialogOutput( 
impl_createReferenceSizeProvider() );

** CID 1591767:(UNINIT_CTOR)
/sc/source/core/data/queryiter.cxx: 79 in 
ScQueryCellIteratorBase<(ScQueryCellIteratorAccess)1, 
(ScQueryCellIteratorType)0>::ScQueryCellIteratorBase(ScDocument &, 
ScInterpreterContext &, short, const ScQueryParam &, bool, bool)()
/sc/source/core/data/queryiter.cxx: 79 in 
ScQueryCellIteratorBase<(ScQueryCellIteratorAccess)0, 
(ScQueryCellIteratorType)1>::ScQueryCellIteratorBase(ScDocument &, 
ScInterpreterContext &, short, const ScQueryParam &, bool, bool)()
/sc/source/core/data/queryiter.cxx: 79 in 
ScQueryCellIteratorBase<(ScQueryCellIteratorAccess)0, 
(ScQueryCellIteratorType)0>::ScQueryCellIteratorBase(ScDocument &, 
ScInterpreterContext &, short, const 

Re: [tor-relays] request for receipes MULTI-instances of ethe4 Guard, Bridge, Exits, snowflake , Tunnel, or both DEBIAN and OpenBSD

2024-02-08 Thread admin--- via tor-relays



You can have 2 separate relays on the same IPv4 address. Are you running into 
issues?

On Wednesday, February 7th, 2024 at 16:41, eff_03675...@posteo.se 
 wrote:
> 

> 

> 

> Hi,
> 

> I have been looking too far and for too long on solving multiple
> imstances / nodes per ONE IPv4,
> and found only outdated problems unwell built.
> 

> 

> Please when you have a bash sript / receipe,
> I would welcome that.
> 

> Hardening options would be very welcome too.
> 

> 

> C.
> ___
> tor-relays mailing list
> tor-relays@lists.torproject.org
> https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays

signature.asc
Description: OpenPGP digital signature
___
tor-relays mailing list
tor-relays@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays


[ofiwg] Coverity Scan: Analysis completed for ofiwg/libfabric

2024-02-07 Thread scan-admin--- via ofiwg


Your request for analysis of ofiwg/libfabric has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yp0yUbWtF-2B8FwvGLTJMQ0Z05keiFeXlm0OSBQeh-2BoKgvg-3D-3Dyo4C_f9IYZ6Ow1q3vrD6KuvrIXH7YVWc8OOsB9tDVxIyTSCrwWDR0XnKnTrbE2535lcRqWot-2BaITKCeHMr9T2-2FCW4XyvyUaTh-2FnH1ri4zf-2BJcKSjXdSvpKXOfr5RW7LJcCdSQYgOK4ypB59cydQcDzAyAQczAbQKi14DAlzFqzCf9IZhzFD5evS-2Fyp3FM-2Byt4dJHh6MToqZMZ4H98KwngD-2FeUlSrEecZw1OUGkhvQV6tCJtY-3D

Build ID: 590011

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0

___
ofiwg mailing list
ofiwg@lists.openfabrics.org
https://lists.openfabrics.org/mailman/listinfo/ofiwg


New Defects reported by Coverity Scan for LibreOffice

2024-02-07 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

2 new defect(s) introduced to LibreOffice found with Coverity Scan.
17 defect(s), reported by Coverity Scan earlier, were marked fixed in the 
recent build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 2 of 2 defect(s)


** CID 1591747:  Control flow issues  (NO_EFFECT)
/vcl/source/gdi/TypeSerializer.cxx: 462 in TypeSerializer::readMapMode(MapMode 
&)()



*** CID 1591747:  Control flow issues  (NO_EFFECT)
/vcl/source/gdi/TypeSerializer.cxx: 462 in TypeSerializer::readMapMode(MapMode 
&)()
456 mrStream.ReadUInt16(nUnit);
457 readPoint(aOrigin);
458 readFraction(aScaleX);
459 readFraction(aScaleY);
460 mrStream.ReadCharAsBool(bSimple);
461 
>>> CID 1591747:  Control flow issues  (NO_EFFECT)
>>> This less-than-zero comparison of an unsigned value is never true. 
>>> "nUnit < 0".
462 if (nUnit < sal_Int16(MapUnit::Map100thMM) || nUnit > 
sal_Int16(MapUnit::LAST))
463 {
464 SAL_WARN("vcl.gdi", "Parsing error: invalid mapmode");
465 return false;
466 }
467 MapUnit eUnit = static_cast(nUnit);

** CID 1591746:  Integer handling issues  (CONSTANT_EXPRESSION_RESULT)
/vcl/source/gdi/TypeSerializer.cxx: 462 in TypeSerializer::readMapMode(MapMode 
&)()



*** CID 1591746:  Integer handling issues  (CONSTANT_EXPRESSION_RESULT)
/vcl/source/gdi/TypeSerializer.cxx: 462 in TypeSerializer::readMapMode(MapMode 
&)()
456 mrStream.ReadUInt16(nUnit);
457 readPoint(aOrigin);
458 readFraction(aScaleX);
459 readFraction(aScaleY);
460 mrStream.ReadCharAsBool(bSimple);
461 
>>> CID 1591746:  Integer handling issues  (CONSTANT_EXPRESSION_RESULT)
>>> "nUnit < 0 /* (sal_Int16)MapUnit::Map100thMM */" is always false 
>>> regardless of the values of its operands. This occurs as the logical first 
>>> operand of "||".
462 if (nUnit < sal_Int16(MapUnit::Map100thMM) || nUnit > 
sal_Int16(MapUnit::LAST))
463 {
464 SAL_WARN("vcl.gdi", "Parsing error: invalid mapmode");
465 return false;
466 }
467 MapUnit eUnit = static_cast(nUnit);



To view the defects in Coverity Scan visit, 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50ypSs1kiFPuCn2xFdlMIFBirii0zZ9j2-2F9F2XPBcBm2BNnPiSHxWPOELPnIxzXoBNaw-3Doo0P_OTq2XUZbbipYjyLSo6GRo-2FpVxQ9OzkDINu9UTS-2FQhSdO0F0jQniitrGlNxDIzPJiKCkzfyxoeQcM5wzPHNpnNYhnHmuGI4YO-2F0xdfF3oWcgfgZvFMXwuWwfCIx8UMZO-2FdAC6eMLXLjm7BlypTHmZBivbagamiEGfFLi6PCP7GFfa5WThz1S5xy4ZmSGUU-2BjF-2FbaluI7tI-2BGbfL14bTYl2rqqtG4SlApvqwwD2UjYE2Y-3D



[Desktop-packages] [Bug 1888505]

2024-02-06 Thread Qa-admin-q
Dear Severo Raz,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open,
confirmed bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked
on this bug report. During that time, it's possible that the bug has
been fixed, or the details of the problem have changed. We'd really
appreciate your help in getting confirmation that the bug is still
present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of
LibreOffice from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information 
from Help - About LibreOffice.
 
If the bug is NOT present, please set the bug's Status field to 
RESOLVED-WORKSFORME and leave a comment that includes the information from Help 
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular 
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a 
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your 
bug pertains to a feature added after 3.3) from 
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat: 
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1888505

Title:
  Two-finger touchpad zoom extremely sensitive

Status in LibreOffice:
  Confirmed
Status in libreoffice package in Ubuntu:
  New

Bug description:
  Open Calc ->  + 

  Expected behaviour: document viewpan zooms/unzooms at a reasonable
  speed

  Observed behaviour: document viewpan zooms/unzooms from maximum zoom
  in to maximum zoom out in maybe 10-15% of the height of the touchpad,
  i.e. it is unusably oversensitive.

  
  Also affects Draw and Writer, 100% reproducible. Other apps (Firefox, Eye of 
Gnome/Image viewer) behave as expected (very usable zoom/unzoom sensitivity).

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: libreoffice-core 1:6.0.7-0ubuntu0.18.04.10
  ProcVersionSignature: Ubuntu 5.3.0-51.44~18.04.2-generic 5.3.18
  Uname: Linux 5.3.0-51-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.15
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Jul 22 14:43:20 2020
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-xenial-amd64-20160624-2
  InstallationDate: Installed on 2018-05-10 (804 days ago)
  InstallationMedia: Ubuntu 16.04 "Xenial" - Build amd64 LIVE Binary 
20160624-10:47
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: libreoffice
  UpgradeStatus: Upgraded to bionic on 2020-03-04 (140 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1888505/+subscriptions


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


<    1   2   3   4   5   6   7   8   9   10   >