This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 1191f52 build-rpm-package: be in the correct directory when creating the Changelog.gitlog file new dc78ce8 build-nsis-script: provide a much better git changelog 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-nsis-package.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 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 dc78ce89feb345a19da17b3d17ed7ea45330fd1e Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Mar 9 12:23:14 2014 +0100 build-nsis-script: provide a much better git changelog --- bin/build-nsis-package.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/build-nsis-package.sh b/bin/build-nsis-package.sh index 89484ae..40186b5 100644 --- a/bin/build-nsis-package.sh +++ b/bin/build-nsis-package.sh @@ -204,11 +204,11 @@ build_packages() { cd $PROJECT_DIR cp -a debian/changelog txt/ - echo "GIT info:" > txt/git-info - git branch >> txt/git-info - echo "=================================" >> txt/git-info - echo "GIT history:" >> txt/git-info - git log -n 10 >> txt/git-info + + # create git changelog immediately prior to building the SRPM package + git --no-pager log --since "2 years ago" --format="%ai %aN (%h) %n%n%x09*%w(68,0,10) %s%d%n" > ChangeLog.gitlog + cp ChangeLog.gitlog txt/git-info + cd /cygdrive/d/Build/scripts/ nice /cygdrive/d/Build/scripts/nsis-builder.bat --buildresult "D:\\Build\\Scripts\\test\\$l_DIST\\$l_CODENAME\\i386" -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git