[Bps-public-commit] Module-Install-RTx branch, 5.26-compat, updated. 0.39-3-g7460100

Shawn Moore shawn at bestpractical.com
Tue Sep 19 10:45:05 EDT 2017


The branch, 5.26-compat has been updated
       via  7460100aa38c4f168688adafaa91aedcb3c0f7a8 (commit)
       via  2124b6187ce74796532c3ad5c3f7d7c81647c083 (commit)
      from  383d89384794affba83a07ff058c6a03b7aa2684 (commit)

Summary of changes:
 Changes                           | 3 +++
 META.yml                          | 4 ++--
 lib/Module/Install/RTx.pm         | 2 +-
 lib/Module/Install/RTx/Runtime.pm | 1 +
 4 files changed, 7 insertions(+), 3 deletions(-)

- Log -----------------------------------------------------------------
commit 2124b6187ce74796532c3ad5c3f7d7c81647c083
Author: Shawn M Moore <shawn at bestpractical.com>
Date:   Tue Sep 19 14:38:47 2017 +0000

    Add . to @INC for "make initdb" for Perl 5.26
    
    Otherwise RT, which uses `eval { require $datafile }`, cannot find
    ./etc/initialdata

diff --git a/lib/Module/Install/RTx/Runtime.pm b/lib/Module/Install/RTx/Runtime.pm
index 318e8c6..21b045f 100644
--- a/lib/Module/Install/RTx/Runtime.pm
+++ b/lib/Module/Install/RTx/Runtime.pm
@@ -32,6 +32,7 @@ sub RTxDatabase {
 
     my $lib_path = File::Basename::dirname($INC{'RT.pm'});
     my @args = (
+        "-I.",
         "-Ilib",
         "-I$RT::LocalLibPath",
         "-I$lib_path",

commit 7460100aa38c4f168688adafaa91aedcb3c0f7a8
Author: Shawn M Moore <shawn at bestpractical.com>
Date:   Tue Sep 19 14:42:29 2017 +0000

    Bump to 0.40

diff --git a/Changes b/Changes
index 62946c5..ab653a8 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+0.40
+ - Add . to @INC for "make initdb" to help Perl 5.26+ load etc/initialdata
+
 0.39 2017-02-20
 - Support `remove_files => 1` parameter to force unlinking of files
   provided by previous versions
diff --git a/META.yml b/META.yml
index faef562..d420c01 100644
--- a/META.yml
+++ b/META.yml
@@ -21,7 +21,7 @@ no_index:
 provides:
   Module::Install::RTx:
     file: lib/Module/Install/RTx.pm
-    version: '0.39'
+    version: '0.40'
   Module::Install::RTx::Remove:
     file: lib/Module/Install/RTx/Remove.pm
   Module::Install::RTx::Runtime:
@@ -32,4 +32,4 @@ requires:
   perl: 5.8.0
 resources:
   license: http://opensource.org/licenses/mit-license.php
-version: '0.39'
+version: '0.40'
diff --git a/lib/Module/Install/RTx.pm b/lib/Module/Install/RTx.pm
index fd4cc06..afee9bd 100644
--- a/lib/Module/Install/RTx.pm
+++ b/lib/Module/Install/RTx.pm
@@ -7,7 +7,7 @@ no warnings 'once';
 
 use Module::Install::Base;
 use base 'Module::Install::Base';
-our $VERSION = '0.39';
+our $VERSION = '0.40';
 
 use FindBin;
 use File::Glob     ();

-----------------------------------------------------------------------


More information about the Bps-public-commit mailing list