From 560cbae624434a863b8e308a2a08fdb4b673a7b8 Mon Sep 17 00:00:00 2001 From: Yura Zenevich Date: Tue, 8 Oct 2013 13:36:15 -0400 Subject: [PATCH 1/4] GPII-233: updated the build script to read from v0.2 tag. --- build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 97ce9b0..1b4d5ee 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ # GPII Linux Build Script # -# Copyright 2012 OCAD University +# Copyright 2012-2013 OCAD University # # Licensed under the New BSD license. You may not use this file except in # compliance with this License. @@ -14,6 +14,7 @@ currentDir=`pwd` node_modules="../node_modules" universal="../node_modules/universal" repoURL="git://github.com/GPII/universal.git" +tag="tags/v0.2" usbListenerDir="./usbDriveListener" gpiiInstallDir="/usr/local/gpii" gpiiStateDir="/var/lib/gpii" @@ -34,6 +35,7 @@ else echo "cloning universal" git clone "$repoURL" "$universal" cd $universal + git checkout $tag npm install cd $currentDir fi From 07a961c7bdf17e4e6eaa874cc070817f64ca1a30 Mon Sep 17 00:00:00 2001 From: Yura Zenevich Date: Tue, 8 Oct 2013 23:41:26 -0400 Subject: [PATCH 2/4] GPII-233: added a missing package file. --- package.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..4b083e6 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "gpii-linux", + "description": "Components of the GPII personalization infrastructure for use on Linux", + "version": "0.2.0", + "author": "GPII", + "bugs": "http://wiki.gpii.net/index.php/Main_Page", + "homepage": "http://gpii.net/", + "dependencies": {}, + "licenses": [ + { + "type": "BSD-3-Clause", + "url": "http://www.opensource.org/licenses/BSD-3-Clause" + } + ], + "keywords": ["gpii", "accessibility", "settings", "fluid", "IoC", "Inversion of Control", "configuration", "evented"], + "repository": "git://github.com/GPII/linux.git", + "main": "./gpii.js", + "engines": { "node" : ">=0.1.9" } +} From 34c7a16c238bcad9fe751fcd2099c8b2c2c08c14 Mon Sep 17 00:00:00 2001 From: Yura Zenevich Date: Wed, 13 Nov 2013 12:29:45 -0500 Subject: [PATCH 3/4] GPII-233: added a -b flag when checking out a tag. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 1b4d5ee..87410ef 100755 --- a/build.sh +++ b/build.sh @@ -35,7 +35,7 @@ else echo "cloning universal" git clone "$repoURL" "$universal" cd $universal - git checkout $tag + git checkout -b $tag npm install cd $currentDir fi From 17311cc0fb5169bd68751d06de99361c070a2191 Mon Sep 17 00:00:00 2001 From: Yura Zenevich Date: Thu, 14 Nov 2013 12:58:30 -0500 Subject: [PATCH 4/4] GPII-233: updated a checkout command as per @javihernandez request. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 87410ef..bae9b8c 100755 --- a/build.sh +++ b/build.sh @@ -35,7 +35,7 @@ else echo "cloning universal" git clone "$repoURL" "$universal" cd $universal - git checkout -b $tag + git checkout v0.2 -b $tag npm install cd $currentDir fi