This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 02e8f45 bin/build-rpm-package: use more quoting when applying quilt patches. new 331c43c bin/build-osx-package: use PATH-based search for bash. new d2f14b4 bin/build-osx-package: use greadlink instead of readlink. new e3c793d misc bin/: update copyright notices. 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/build-nsis-package.sh | 2 +- bin/build-osx-package | 6 +++--- bin/build-rpm-package | 2 +- bin/common.sh | 2 +- bin/sbuild-deb-package | 2 +- 5 files changed, 7 insertions(+), 7 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 331c43cbccc2d0af957cc60513ff8dcb04595439 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Apr 6 09:18:59 2017 +0200 bin/build-osx-package: use PATH-based search for bash. --- bin/build-osx-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-osx-package b/bin/build-osx-package index 096db91..3fdffc1 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright (C) 2011-2015 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # Copyright (C) 2016 by Mihai Moldovan <ionic@ionic.de> -- 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 d2f14b48d1eae3e44f37eceaccb1eff9ffdb6b4e Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Apr 6 09:20:30 2017 +0200 bin/build-osx-package: use greadlink instead of readlink. --- bin/build-osx-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-osx-package b/bin/build-osx-package index 3fdffc1..27bbb79 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -16,7 +16,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -typeset script_path="$(dirname "$(readlink -e "${BASH_SOURCE}")")" +typeset script_path="$(dirname "$(greadlink -e "${BASH_SOURCE}")")" . "${script_path}/common.sh" -- 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 e3c793d00d3370c1bcc3875bca0745aace7b1d99 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Apr 6 09:20:55 2017 +0200 misc bin/: update copyright notices. --- bin/build-nsis-package.sh | 2 +- bin/build-osx-package | 2 +- bin/build-rpm-package | 2 +- bin/common.sh | 2 +- bin/sbuild-deb-package | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/build-nsis-package.sh b/bin/build-nsis-package.sh index 2b5935d..f7adb88 100755 --- a/bin/build-nsis-package.sh +++ b/bin/build-nsis-package.sh @@ -2,7 +2,7 @@ # Copyright (C) 2011-2013 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # Copyright (C) 2014-2015 by Mike DePaulo <mikedep333@gmail.com> -# Copyright (C) 2015 by Mihai Moldovan <ionic@ionic.de> +# Copyright (C) 2015-2017 by Mihai Moldovan <ionic@ionic.de> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/bin/build-osx-package b/bin/build-osx-package index 27bbb79..0ad9bc7 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (C) 2011-2015 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> -# Copyright (C) 2016 by Mihai Moldovan <ionic@ionic.de> +# Copyright (C) 2016-2017 by Mihai Moldovan <ionic@ionic.de> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/bin/build-rpm-package b/bin/build-rpm-package index 3d5a48c..719647b 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -1,7 +1,7 @@ #!/bin/bash # Copyright (C) 2011-2013 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> -# Copyright (C) 2015 by Mihai Moldovan <ionic@ionic.de> +# Copyright (C) 2015-2017 by Mihai Moldovan <ionic@ionic.de> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/bin/common.sh b/bin/common.sh index 7308857..fa07910 100644 --- a/bin/common.sh +++ b/bin/common.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (C) 2015 by Mihai Moldovan <ionic@ionic.de> +# Copyright (C) 2015-2017 by Mihai Moldovan <ionic@ionic.de> # # This programme is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index 1ce5ef5..45ee09c 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -1,7 +1,7 @@ #!/bin/bash # Copyright (C) 2011-2015 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> -# Copyright (C) 2016 by Mihai Moldovan <ionic@ionic.de> +# Copyright (C) 2016-2017 by Mihai Moldovan <ionic@ionic.de> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git