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 2016/09/29 13:20:41 UTC

[1/3] lucy-clownfish git commit: Bump Module::Build dependency to 0.3604

Repository: lucy-clownfish
Updated Branches:
  refs/heads/master cb4228524 -> b9c2efb77


Bump Module::Build dependency to 0.3604

Setting c_source to an arrayref with multiple directories isn't
supported in previous versions.

Fixes CLOWNFISH-106.


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

Branch: refs/heads/master
Commit: b557bc27aa19a9a7110e1cf1da0820ecc8c77811
Parents: cb42285
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Sep 29 13:58:21 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Sep 29 14:53:50 2016 +0200

----------------------------------------------------------------------
 compiler/perl/Build.PL | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/b557bc27/compiler/perl/Build.PL
----------------------------------------------------------------------
diff --git a/compiler/perl/Build.PL b/compiler/perl/Build.PL
index 6cbac42..dfd7a8e 100644
--- a/compiler/perl/Build.PL
+++ b/compiler/perl/Build.PL
@@ -29,7 +29,7 @@ my $builder = Clownfish::CFC::Build->new(
     requires           => { 'perl' => '5.8.3', },
     configure_requires => { 'Module::Build' => 0.280801 },
     build_requires    => {
-        'Module::Build'      => 0.280801,
+        'Module::Build'      => 0.3604,
         'ExtUtils::CBuilder' => 0.18,
         'ExtUtils::ParseXS'  => 3.00,
         'Devel::PPPort'      => 3.14,


[2/3] lucy-clownfish git commit: Show type of error in CFCUtil_current

Posted by nw...@apache.org.
Show type of error in CFCUtil_current

This might help to debug mysterious CPAN Testers failures like

http://www.cpantesters.org/cpan/report/19fc2484-8583-11e6-aa8e-960c2aa93d25


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

Branch: refs/heads/master
Commit: 1c4446a9ec7813446f49caa5609ac82ca96c74f0
Parents: b557bc2
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Sep 29 14:07:21 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Sep 29 14:54:11 2016 +0200

----------------------------------------------------------------------
 compiler/src/CFCUtil.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/1c4446a9/compiler/src/CFCUtil.c
----------------------------------------------------------------------
diff --git a/compiler/src/CFCUtil.c b/compiler/src/CFCUtil.c
index ebd70ff..be33160 100644
--- a/compiler/src/CFCUtil.c
+++ b/compiler/src/CFCUtil.c
@@ -368,7 +368,7 @@ CFCUtil_current(const char *orig, const char *dest) {
     // If the source file is newer than the dest, we're not current.
     struct stat orig_stat;
     if (stat(orig, &orig_stat) == -1) {
-        CFCUtil_die("Missing source file '%s'", orig);
+        CFCUtil_die("Missing source file '%s': %s", orig, strerror(errno));
     }
     if (orig_stat.st_mtime > dest_stat.st_mtime) {
         return false;


[3/3] lucy-clownfish git commit: Exclude Clownfish/Test.xs from CPAN tarball

Posted by nw...@apache.org.
Exclude Clownfish/Test.xs from CPAN tarball

Fixes CLOWNFISH-105.


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

Branch: refs/heads/master
Commit: b9c2efb774babc458797d725d8fa357b31d2db63
Parents: 1c4446a
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Sep 29 14:52:47 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Sep 29 14:54:11 2016 +0200

----------------------------------------------------------------------
 runtime/perl/MANIFEST.SKIP | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/b9c2efb7/runtime/perl/MANIFEST.SKIP
----------------------------------------------------------------------
diff --git a/runtime/perl/MANIFEST.SKIP b/runtime/perl/MANIFEST.SKIP
index 5aedf98..06941ac 100644
--- a/runtime/perl/MANIFEST.SKIP
+++ b/runtime/perl/MANIFEST.SKIP
@@ -27,7 +27,7 @@
 ^MYMETA.yml$
 
 # autogenerated by custom Build.PL
-Clownfish\.xs$
+\.xs$
 ^typemap$
 
 # Don't ship developer-only tests.