This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 7b1afea bin/ubuntu-codename-to-version.sh: add newer versions jammy, kinetic and lunar. new 4937399 {bin/build-rpm-package,home/.buildscripts/x2go.conf}: add OpenSuSE Leap 15.4 to list. new b5acc90 bin/build-rpm-package: fix typo in comment. new 1e1e6da bin/build-rpm-package: OpenSuSE Leap 15.0 is the newest discontinued release now. 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: bin/build-rpm-package | 8 ++++---- home/.buildscripts/x2go.conf | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit 4937399d546c2adf5f5fddcbe9a8437714f5211a Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 17 14:42:05 2023 +0100 {bin/build-rpm-package,home/.buildscripts/x2go.conf}: add OpenSuSE Leap 15.4 to list. --- bin/build-rpm-package | 2 +- home/.buildscripts/x2go.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/build-rpm-package b/bin/build-rpm-package index 81f4936..1f4e538 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -29,7 +29,7 @@ GPG_KEY="" RPM_DISTS_SUPPORTED="fedora epel opensuse sle" FEDORA_DISTROS="18,19,20,21,22,23,24,25,26,27,28,29,30,rawhide" EPEL_DISTROS="6,7" -OPENSUSE_DISTROS="12.2,12.3,13.1,13.2,42.1,42.2,42.3,15.0,15.1,tumbleweed" +OPENSUSE_DISTROS="12.2,12.3,13.1,13.2,42.1,42.2,42.3,15.0,15.1,15.4,tumbleweed" SLE_DISTROS="11.2,11.3,12.0,12.3" RPM_REPOS_BASE="/var/www/" RPM_WANT_EXTRA_REPOS="0" diff --git a/home/.buildscripts/x2go.conf b/home/.buildscripts/x2go.conf index 2c74adf..8e92608 100644 --- a/home/.buildscripts/x2go.conf +++ b/home/.buildscripts/x2go.conf @@ -16,7 +16,7 @@ RPMEMAIL="git-admin@x2go.org" RPMFULLNAME="X2Go Git Administrator" GPG_KEY_EPEL5="00965D293CFD4372" RPM_DISTS_SUPPORTED="fedora epel opensuse sle" -: ${RPM_BUILD_FOR:="fedora:26,27,28,29,30,rawhide epel:6,7 opensuse:42.2,42.3,15.0,15.1,tumbleweed sle:11.2,11.3,12.0,12.3"} +: ${RPM_BUILD_FOR:="fedora:26,27,28,29,30,rawhide epel:6,7 opensuse:42.2,42.3,15.0,15.1,15.4,tumbleweed sle:11.2,11.3,12.0,12.3"} RPM_REPOS_BASE="/srv/sites/x2go.org/packages/" RPM_WANT_EXTRA_REPOS="1" RPM_MOCK_CONFIG_DIR="/etc/mock/" -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit b5acc90930629e02d98e26959f8b1db5d87f3f1e Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 17 14:48:42 2023 +0100 bin/build-rpm-package: fix typo in comment. --- bin/build-rpm-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-rpm-package b/bin/build-rpm-package index 1f4e538..a647062 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -667,7 +667,7 @@ sign_packages () { wrap_suse_major_version () { typeset major_version="${1:?"Error: no *SuSE major version passed to ${FUNCNAME}()."}" - # tumbleweed has the fictive version number 9999 and should always be gettin + # tumbleweed has the fictive version number 9999 and should always be getting # passed-through directly. typeset -i tmp_major_version="${major_version}" -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit 1e1e6da53563ce68bf04cbee4c1374d602c41efd Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 17 14:49:16 2023 +0100 bin/build-rpm-package: OpenSuSE Leap 15.0 is the newest discontinued release now. --- bin/build-rpm-package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/build-rpm-package b/bin/build-rpm-package index a647062..cf92dd6 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -1018,8 +1018,8 @@ build_packages() { fi if [[ "${tmp_suse_major_version}" != "9999" ]]; then - if [ "${tmp_suse_major_version}" -lt "14" ] || - ( [ "${tmp_suse_major_version}" -eq "14" ] && [ "${tmp_suse_minor_version}" -lt "3" ] ); then + if [ "${tmp_suse_major_version}" -lt "15" ] || + ( [ "${tmp_suse_major_version}" -eq "15" ] && [ "${tmp_suse_minor_version}" -eq "0" ] ); then legacy_release="1" fi fi -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git