This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 0fa40ba RPM builder: force build.log removal before a new build is started new 43bc094 tarballrelease: drop debian/ folders, preserve debian/changelog as ChangeLog, drop x2goclient.spec new c695a2e tarballrelease: only adopt debian/changelog if no upstream ChangeLog is present 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/tarballrelease | 3 +++ 1 file changed, 3 insertions(+) -- 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 master in repository buildscripts. commit c695a2e1edfedfa94af1faf6f620b0783f1246b4 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Mar 4 08:52:02 2014 +0100 tarballrelease: only adopt debian/changelog if no upstream ChangeLog is present --- bin/tarballrelease | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tarballrelease b/bin/tarballrelease index 255bd7e..5b7fed1 100755 --- a/bin/tarballrelease +++ b/bin/tarballrelease @@ -38,7 +38,7 @@ trap "rm -f \"${MANIFEST}\"; rm -rf \"${TEMP_DIR}\"" 0 git clone . "$TEMP_DIR/${PROJECT}-$RELEASE" ( set -e; cd "$TEMP_DIR/${PROJECT}-$RELEASE/" && git checkout ${CHECKOUT} 2>/dev/null || true ) ( set -e; cd "$TEMP_DIR" && rm -Rf "${PROJECT}-$RELEASE/.git"* ) -( set -e; cd "$TEMP_DIR" && cp debian/changelog ChangeLog ) +( set -e; cd "$TEMP_DIR" && test -f ChangeLog || { test -f debian/changelog && cp debian/changelog ChangeLog; } ) ( set -e; cd "$TEMP_DIR" && rm -Rf debian/ ) ( set -e; cd "$TEMP_DIR" && rm -f *.spec ) ( set -e; cd "$TEMP_DIR" && find "${PROJECT}-$RELEASE" -type f | sed 's/^\.*\/*//' | sort > "$MANIFEST" ) -- 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 master in repository buildscripts. commit 43bc094e10b5fd9c3e59c4fcfa79ab47b93b97f9 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Mar 4 08:50:42 2014 +0100 tarballrelease: drop debian/ folders, preserve debian/changelog as ChangeLog, drop x2goclient.spec --- bin/tarballrelease | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/tarballrelease b/bin/tarballrelease index 84b0648..255bd7e 100755 --- a/bin/tarballrelease +++ b/bin/tarballrelease @@ -38,6 +38,9 @@ trap "rm -f \"${MANIFEST}\"; rm -rf \"${TEMP_DIR}\"" 0 git clone . "$TEMP_DIR/${PROJECT}-$RELEASE" ( set -e; cd "$TEMP_DIR/${PROJECT}-$RELEASE/" && git checkout ${CHECKOUT} 2>/dev/null || true ) ( set -e; cd "$TEMP_DIR" && rm -Rf "${PROJECT}-$RELEASE/.git"* ) +( set -e; cd "$TEMP_DIR" && cp debian/changelog ChangeLog ) +( set -e; cd "$TEMP_DIR" && rm -Rf debian/ ) +( set -e; cd "$TEMP_DIR" && rm -f *.spec ) ( set -e; cd "$TEMP_DIR" && find "${PROJECT}-$RELEASE" -type f | sed 's/^\.*\/*//' | sort > "$MANIFEST" ) mkdir -p "$TARGETDIR/_releases_/source/${PROJECT}/" tar c -C "$TEMP_DIR" --owner 0 --group 0 --numeric-owner --no-recursion --files-from "$MANIFEST" | gzip -n > "$TARGETDIR/_releases_/source/${PROJECT}/${PROJECT}-$RELEASE.tar.gz" -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git