This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from c695a2e tarballrelease: only adopt debian/changelog if no upstream ChangeLog is present new 4419415 tarballrelease: fix paths 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/tarballrelease | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 master in repository buildscripts. commit 441941596a586f8c31f1b1893bce50477f916e3c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Mar 4 09:02:00 2014 +0100 tarballrelease: fix paths --- bin/tarballrelease | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/tarballrelease b/bin/tarballrelease index 5b7fed1..1696d9f 100755 --- a/bin/tarballrelease +++ b/bin/tarballrelease @@ -38,9 +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" && 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" ) +( set -e; cd "$TEMP_DIR/${PROJECT}-$RELEASE/" && test -f ChangeLog || { test -f debian/changelog && cp debian/changelog ChangeLog || true; } ) +( set -e; cd "$TEMP_DIR/${PROJECT}-$RELEASE/" && rm -Rf debian/ ) +( set -e; cd "$TEMP_DIR/${PROJECT}-$RELEASE/" && 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