This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 84bbf8f bin/createsusetagsrepo: add the remaining funcationality. new 11d053c bin/createsusetagsrepo: also print the usage message when the other parameters are not provided. new 8295e47 bin/createsusetagsrepo: support refreshing a directory by (forcefully) removing (some) metadata directories before creating them again. new 9fc0f43 bin/createsusetagsrepo: fix Here Document usage. 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/createsusetagsrepo | 12 ++++++------ 1 file changed, 6 insertions(+), 6 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 11d053c589d143e9dcc3ef89392747bc379ed1dc Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Oct 30 02:12:54 2016 +0100 bin/createsusetagsrepo: also print the usage message when the other parameters are not provided. --- bin/createsusetagsrepo | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index 281008d..f5c1250 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -79,10 +79,9 @@ set -e repo_top_dir="${1}" -distro="${2:?"No distribution string provided."}" -component="${2:?"No component string provided."}" - -test -n "${repo_top_dir}" || usage +test -z "${repo_top_dir}" && usage +test -z "${distro}" && usage +test -z "${component}" && usage cd "${repo_top_dir}" || error "Unable to switch to provided repository top directory '${repo_top_dir}'." -- 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 8295e47ff9f357c36d7f08597beae62de4f2fbf0 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Oct 30 02:13:39 2016 +0100 bin/createsusetagsrepo: support refreshing a directory by (forcefully) removing (some) metadata directories before creating them again. --- bin/createsusetagsrepo | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index f5c1250..65b28b7 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -31,7 +31,8 @@ error () { } create_metadata () { - mkdir "media.1" "descr" + rm -f -- "media.1" "descr" + mkdir -- "media.1" "descr" printf 'X2Go\n%(%Y%m%d%H%M%S)T\n1\n' '-1' > "media.1/media" printf 'media\n' > "media.1/directory.yast" -- 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 9fc0f4352a1d3e3f48be5950982e45ede494c991 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Oct 30 02:13:56 2016 +0100 bin/createsusetagsrepo: fix Here Document usage. --- bin/createsusetagsrepo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index 65b28b7..a92dde2 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -38,7 +38,7 @@ create_metadata () { printf 'media\n' > "media.1/directory.yast" typeset tmp_str="" - read -r -d '' tmp_str << EOF + read -r -d '' tmp_str <<EOF PRODUCT X2Go ${distro} ${component} VERSION 1.0-0 LABEL X2Go ${component} Repository for ${distro} -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git