This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch feature/create_upload_SRPMs in repository buildscripts. from e28bd10 bin/build-rpm-package: also copy source RPM's to staging dir and sign them. new a320e93 bin/build-rpm-package: add SRPM upload capability. 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: bin/build-rpm-package | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) -- Alioth's /srv/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 feature/create_upload_SRPMs in repository buildscripts. commit a320e9381cf06784d791a29c23eb5dd15d94fd9d Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Jan 28 20:29:44 2015 +0100 bin/build-rpm-package: add SRPM upload capability. --- bin/build-rpm-package | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/build-rpm-package b/bin/build-rpm-package index 8a6012d..d923b76 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -398,7 +398,8 @@ upload_packages() { test -z $CODENAMES || echo $line | grep $CODENAMES || break - for l_ARCH in x86_64 i386; do + # Yes, "SRPM" is technically not an architecture. + for l_ARCH in x86_64 i386 SRPM; do if [ "x$SKIP_ARCH" != "x$l_ARCH" ]; then # create remote directories in archive @@ -408,7 +409,7 @@ upload_packages() { # remove rpm packages of the same name (pattern) 0</dev/null ssh $REPOS_SERVER rm -f $RPM_REPOS_BASE/$l_DIST/$l_CODENAME/$COMPONENT/$l_ARCH/rpms/$PROJECT/*.rpm - # copy rpms into repo + # copy (s)rpms into repo cd "$PKGDIST/$l_DIST/$l_CODENAME/$l_ARCH" scp *.rpm $REPOS_SERVER:$RPM_REPOS_BASE/$l_DIST/$l_CODENAME/$COMPONENT/$l_ARCH/rpms/$PROJECT/ || true -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git