This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from f2132f4 bin/createsusetagsrepo: add the "noarch" architecture, just to be sure. new 085d367 bin/createsusetagsrepo: forcefully create symlinks, even if they already exist. new 0e8f4fd bin/build-rpm-package: add a missing quote in the *SUSE upload section. 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: bin/build-rpm-package | 2 +- bin/createsusetagsrepo | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /srv/git/code.x2go.org/buildscripts.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 0e8f4fd5bae64bda07b3c66782291b6ef40ca86f Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Nov 24 09:01:35 2016 +0100 bin/build-rpm-package: add a missing quote in the *SUSE upload section. --- 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 3226c68..96fbb68 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -1009,7 +1009,7 @@ upload_packages() { [ "${sp}" -gt "0" ] && distro_string="${distro_string}:SP${sp}" [ -n "${other}" ] && distro_string="${distro_string}${other}" fi - 0</dev/null ssh "${REPOS_SERVER}" "cd '${RPM_REPOS_BASE}/${l_DIST}/{$l_CODENAME}/${COMPONENT}/' && createsusetagsrepo . '${distro_string}' '${l_CODENAME}'" + 0</dev/null ssh "${REPOS_SERVER}" "cd '${RPM_REPOS_BASE}/${l_DIST}/{$l_CODENAME}/${COMPONENT}/' && createsusetagsrepo '.' '${distro_string}' '${l_CODENAME}'" else # create remote directories in archive 0</dev/null ssh "${REPOS_SERVER}" "mkdir -p -- '${RPM_REPOS_BASE}/${l_DIST}/${l_CODENAME}/${COMPONENT}/${l_ARCH}/rpms/${PROJECT}'" -- Alioth's /srv/git/code.x2go.org/buildscripts.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 085d3676a9fb71660fd9db26d85c3070ce1d53fb Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Nov 24 09:01:20 2016 +0100 bin/createsusetagsrepo: forcefully create symlinks, even if they already exist. --- bin/createsusetagsrepo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index 6261eb1..f3efd3e 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -44,7 +44,7 @@ cleanup_repo () { # Create new ones. typeset file="" for file in */*.rpm; do - ln -sv -- "${file}" "$(basename "${file}")" + ln -sfv -- "${file}" "$(basename "${file}")" done popd -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git