You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2015/07/11 18:13:42 UTC

[1/2] lucy-clownfish git commit: Fix Go build

Repository: lucy-clownfish
Updated Branches:
  refs/heads/master ab37035c1 -> d58d7eb5d


Fix Go build

Add missing #includes


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/acc56034
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/acc56034
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/acc56034

Branch: refs/heads/master
Commit: acc560348bb0260f0ce473ecf4c368dfa133811d
Parents: ab37035
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Jul 11 18:05:11 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Jul 11 18:05:11 2015 +0200

----------------------------------------------------------------------
 runtime/go/ext/clownfish.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/acc56034/runtime/go/ext/clownfish.c
----------------------------------------------------------------------
diff --git a/runtime/go/ext/clownfish.c b/runtime/go/ext/clownfish.c
index cacb642..7545388 100644
--- a/runtime/go/ext/clownfish.c
+++ b/runtime/go/ext/clownfish.c
@@ -26,12 +26,17 @@
 
 #include "charmony.h"
 
-#include "Clownfish/Obj.h"
+#include "Clownfish/Blob.h"
+#include "Clownfish/Boolean.h"
+#include "Clownfish/ByteBuf.h"
 #include "Clownfish/Class.h"
-#include "Clownfish/Method.h"
 #include "Clownfish/Err.h"
-#include "Clownfish/Util/Memory.h"
+#include "Clownfish/Hash.h"
+#include "Clownfish/Method.h"
+#include "Clownfish/Num.h"
+#include "Clownfish/Obj.h"
 #include "Clownfish/String.h"
+#include "Clownfish/Util/Memory.h"
 #include "Clownfish/Vector.h"
 
 /* These symbols must be assigned real values during Go initialization,


[2/2] lucy-clownfish git commit: Simplify .travis.yml

Posted by nw...@apache.org.
Simplify .travis.yml


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/d58d7eb5
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/d58d7eb5
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/d58d7eb5

Branch: refs/heads/master
Commit: d58d7eb5db3eb9bb01166e922444af057966f919
Parents: acc5603
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Jul 11 18:06:18 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Jul 11 18:09:53 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/d58d7eb5/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index d639e8e..9538b05 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,7 +14,9 @@
 # limitations under the License.
 
 language: perl
-script: "cd ../.. && ./devel/bin/travis-test.sh"
+# Override Travis' default Perl installation script.
+install: 'true'
+script: devel/bin/travis-test.sh
 env:
   - LUCY_DEBUG=1 CLOWNFISH_HOST=c
   - LUCY_DEBUG=1 CLOWNFISH_HOST=go
@@ -27,6 +29,4 @@ env:
   - LUCY_DEBUG=1 CLOWNFISH_HOST=perl PERL_VERSION=5.8
 git:
   depth: 10
-before_install:
-  - cd compiler/perl