This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from a1c3e51 Add git short hash to the version string (So that earlier nightly builds from the same day are not overwritten) new 1b0b435 Add identify-cygwin-packages.sh to help with GPL compliance 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/identify-cygwin-packages.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 bin/identify-cygwin-packages.sh -- 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 1b0b435d4312e60cb6c6264e4027b77eeb95e7ac Author: Mike DePaulo <mikedep333@gmail.com> Date: Wed Sep 17 08:38:22 2014 -0400 Add identify-cygwin-packages.sh to help with GPL compliance --- bin/identify-cygwin-packages.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/bin/identify-cygwin-packages.sh b/bin/identify-cygwin-packages.sh new file mode 100755 index 0000000..ea2bee7 --- /dev/null +++ b/bin/identify-cygwin-packages.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +export OUT="cygwin files and packages.csv" + +if [[ $# == 0 ]]; then + echo "Example usage: $0 /bin/sh.exe /bin/libgcc_s-1.dll" + echo "Output will be appended to \"${OUT}\"" + echo "This script is intended to help with GPL compliance." + echo "Currently this script does not identify the source package," + echo "Only the binary package." + echo "Browse a cygwin mirror or use Google/DuckDuckGo to identify the source package." +fi + +echo "File,Binary Package w/ Version,Source Package" >> "${OUT}" + +for file in "$@" +do + binPkg=`cygcheck -f $file| tr -d '\r' | tr -d '\n'` + echo "${file},${binPkg}," >> "${OUT}" +done -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git