[Bps-public-commit] Module-Install-RTx branch, master, updated. 0.38

Alex Vandiver alexmv at bestpractical.com
Thu Jul 14 03:34:06 EDT 2016


The branch, master has been updated
       via  a2e9dd92443592d7b5c4552b9811b414a226325e (commit)
      from  1e60a24769e5f969f69a9437f591417feca41569 (commit)

Summary of changes:
 Changes                   |  4 ++++
 META.yml                  |  6 +++---
 README                    | 16 ++++++++++++++++
 lib/Module/Install/RTx.pm |  2 +-
 4 files changed, 24 insertions(+), 4 deletions(-)

- Log -----------------------------------------------------------------
commit a2e9dd92443592d7b5c4552b9811b414a226325e
Author: Alex Vandiver <alex at chmrr.net>
Date:   Thu Jul 14 00:32:40 2016 -0700

    Version 0.38 releng

diff --git a/Changes b/Changes
index af6ff84..f6e7adb 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.38 2016-07-14
+ - Support `INSTALLDIRS=vendor`
+ - Properly honor `$DESTDIR` at `make install` time
+
 0.37 2014-12-24
  - Add the Module::Install::ReadmeFromPod dependency
 
diff --git a/META.yml b/META.yml
index 9255034..4c417b9 100644
--- a/META.yml
+++ b/META.yml
@@ -8,7 +8,7 @@ configure_requires:
   ExtUtils::MakeMaker: 6.59
 distribution_type: module
 dynamic_config: 1
-generated_by: 'Module::Install version 1.14'
+generated_by: 'Module::Install version 1.16'
 license: mit
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -21,7 +21,7 @@ no_index:
 provides:
   Module::Install::RTx:
     file: lib/Module/Install/RTx.pm
-    version: '0.37'
+    version: '0.38'
   Module::Install::RTx::Runtime:
     file: lib/Module/Install/RTx/Runtime.pm
 requires:
@@ -30,4 +30,4 @@ requires:
   perl: 5.8.0
 resources:
   license: http://opensource.org/licenses/mit-license.php
-version: '0.37'
+version: '0.38'
diff --git a/README b/README
index f0096c4..a6be4f9 100644
--- a/README
+++ b/README
@@ -68,6 +68,22 @@ ENVIRONMENT
     RTHOME
         Path to the RT installation that contains a valid lib/RT.pm.
 
+EXAMPLES
+    To install an extension which makes use of this installer:
+
+        perl Makefile.PL RTHOME=/opt/rt4
+
+    This will install all subdirs into the $RT::LocalPluginPath dir as
+    configured in RT::Generated.
+
+    To install an extension into the (vendor) plugin path:
+
+        perl Makefile.PL RTHOME=/opt/rt4 INSTALLDIRS=vendor
+
+    This will install all subdirs into the $RT::PluginPath which is
+    specifically meant for plugins that are installed through other
+    packaging utils like APT or RPM.
+
 SEE ALSO
     Module::Install
 
diff --git a/lib/Module/Install/RTx.pm b/lib/Module/Install/RTx.pm
index 135e0bf..002eb7a 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.37';
+our $VERSION = '0.38';
 
 use FindBin;
 use File::Glob     ();

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


More information about the Bps-public-commit mailing list