This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient-contrib. from b85e7f0 Add cygwin 20150425-1 bundle. new ef2b3c7 Add script (Note: 20150425-1 has cygwin 1.7.35-1) 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: cygwin/generate-files-and-packages-list.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 cygwin/generate-files-and-packages-list.sh -- Alioth's /srv/git/code.x2go.org/x2goclient-contrib.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient-contrib.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient-contrib. commit ef2b3c7b0e6d18150b8f6eaca69bc957a043e05b Author: Mike DePaulo <mikedep333@gmail.com> Date: Sun Apr 26 22:34:03 2015 -0400 Add script (Note: 20150425-1 has cygwin 1.7.35-1) I forgot to mention last message that cygwin bundle 20150425-1 has cygwin (cygwin1.dll) updated/upgraded to a new version with a different method of computing ACLs. It appears to break how x2goclient uses sftp on my system: cygwin 1.7.32-1 -> 1.7.35-1 --- cygwin/generate-files-and-packages-list.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/cygwin/generate-files-and-packages-list.sh b/cygwin/generate-files-and-packages-list.sh new file mode 100755 index 0000000..5a74dca --- /dev/null +++ b/cygwin/generate-files-and-packages-list.sh @@ -0,0 +1,12 @@ +#!/bin/bash +export FILE="cygwin files and packages.csv" +echo "File,Binary Package w/ Version,Source Package" > "${FILE}" +for i in * +do + echo "${i}, `cygcheck -f /bin/$i`" >> "${FILE}" +done +unix2dos "${FILE}" +echo "Also:" +echo "Identify the source package" +echo "correct sh.exe to be for dash" + -- Alioth's /srv/git/code.x2go.org/x2goclient-contrib.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient-contrib.git