From d1956874224e1b1577a5ea1d2e3273c361374589 Mon Sep 17 00:00:00 2001
From: Michael Halstead <michaelx.d.halstead@intel.com>
Date: Wed, 19 Oct 2011 09:37:22 -0700
Subject: [PATCH 1/3] Modified to use Glip 1.1 with DamZ's fix for
 --reference.

---
 README.txt |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.txt b/README.txt
index 9cf3c0b..15cf2a3 100644
--- a/README.txt
+++ b/README.txt
@@ -4,11 +4,11 @@ against version 1.0 available at https://github.com/halstead/glip/tree/1.0
 All updates to glip are tracked on github. glip is licensed under GPLv2.
 
 To install:
-1. Download the zip file from https://github.com/halstead/glip/zipball/1.0
+1. Download the zip file from https://github.com/halstead/glip/zipball/1.1
    or run these git commands,
    git clone git://github.com/halstead/glip.git
    cd glip
-   git checkout 1.0
+   git checkout 1.1
 
 2. Place the glip directory at sites/all/libraries/glip so that you have
    sites/all/libraries/glip/lib
-- 
1.7.10


From 576dc7f1732a56f409f36213880a677fa8262a90 Mon Sep 17 00:00:00 2001
From: Michael Halstead <michaelx.d.halstead@intel.com>
Date: Wed, 19 Oct 2011 09:40:35 -0700
Subject: [PATCH 2/3] Drush will now grab the correct version.

---
 git_deploy.drush.inc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/git_deploy.drush.inc b/git_deploy.drush.inc
index b7b3f39..fbd7592 100644
--- a/git_deploy.drush.inc
+++ b/git_deploy.drush.inc
@@ -50,7 +50,7 @@ function drush_git_deploy_download() {
   if (is_dir($path)) {
     drush_log('Glip already present. No download required.', 'ok');
   }
-  elseif (drush_shell_cd_and_exec(dirname($path), 'git clone https://github.com/halstead/glip.git && cd glip && git checkout 1.0')) {
+  elseif (drush_shell_cd_and_exec(dirname($path), 'git clone https://github.com/halstead/glip.git && cd glip && git checkout 1.1')) {
     drush_log(dt('Glip has been cloned via git to @path.', array('@path' => $path)), 'success');
   }
   else {
-- 
1.7.10


From 5d17337c467847fc43f2d5f4cd4ffa9b5de94288 Mon Sep 17 00:00:00 2001
From: amontero <amontero@166637.no-reply.drupal.org>
Date: Wed, 20 Jun 2012 22:14:12 +0200
Subject: [PATCH 3/3] Add drush make file for glip dependency (libraries dir)

---
 git_deploy.make |    9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 git_deploy.make

diff --git a/git_deploy.make b/git_deploy.make
new file mode 100644
index 0000000..7f1c7bb
--- /dev/null
+++ b/git_deploy.make
@@ -0,0 +1,9 @@
+core = 7.x
+api = 2
+libraries[glip][download][type] = git
+libraries[glip][download][url] = git://github.com/halstead/glip.git
+libraries[glip][download][branch] = 1.1
+libraries[glip][destination] = libraries
+
+projects[] = libraries
+
-- 
1.7.10

