Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

perlbrew (9) Versions 0.5.1

Configures and Installs perlbrew

Policyfile
Berkshelf
Knife
cookbook 'perlbrew', '= 0.5.1', :supermarket
cookbook 'perlbrew', '= 0.5.1'
knife supermarket install perlbrew
knife supermarket download perlbrew
README
Dependencies
Changelog
Quality 83%

Cookbook Version
Build Status
License

DESCRIPTION

This cookbook provides resources and recipes that can be used to
configure, install, and manage the Perlbrew environment.

PLATFORMS

This cookbook is tested on the following platforms:

  • Amazon Linux 2
  • CentOS/RHEL 7.x
  • Debian 9.x
  • Ubuntu 18.04 LTS

Unlisted platforms in the same family, of similar or equivalent versions may work
with or without modification to this cookbook. Pull requests to add support for
other platforms are welcome.

REQUIREMENTS

Perlbrew requires a system perl and the following packages to be available during
the installation process:

  • curl
  • patch

Perlbrew compiles perl from source and requires a standard compiler toolchain to
be available. The bundled 'perlbrew' recipe installs this toolchain automatically
using the build-essential
cookbook, if they are missing.

ATTRIBUTES

  • node['perlbrew']['perlbrew_root'] = "/opt/perlbrew" - Sets the PERLBREW_ROOT environment variable
  • node['perlbrew']['perls'] = [] - An array of perls to install, e.g. ["perl-5.14.2", "perl-5.12.3"]
  • node['perlbrew']['install_options'] = '' - A string of command line options for perlbrew install, e.g. -D usethreads for building all perls with threads
  • node['perlbrew']['cpanm_options'] = '' - A string of command line options for cpanm, e.g. --notest for installing modules without running tests
  • node['perlbrew']['self_upgrade'] = true - Set to false if you don't want perlbrew upgraded to the latest version automatically

RECIPES

perlbrew

Installs/updates perlbrew along with
patchperl and
cpanm. This is required for
use of the perlbrew_* resources. Optionally installs perls specified
in the node['perlbrew']['perls'] attribute list.

perlbrew::profile

This recipe installs a file in /etc/profile.d that enables perlbrew for all
users, though the standard caveats mentioned in the perlbrew documentation do
apply.

RESOURCES

perlbrew

This resource provides actions to install / remove perlbrew using the directory
specified in the node['perlbrew']['perlbrew_root'] attribute.

  • Actions

    • :install (default)

      perlbrew '/opt/perlbrew' do
        perls         [ 'perl-5.10.1', 'perl-5.14.2' ]
        upgrade       true
      end
      
    • :remove

      perlbrew '/opt/perlbrew' do
        action        :remove
      end
      
  • Attributes

    • :perls - An array of strings representing perls to brew / install.
    • :upgrade - A boolean flag to disable/enable the automatic upgrading of perlbrew.

perlbrew_profile

This resource provides actions to install / remove the shell script that enables
perlbrew for all users.

  • Actions

    • :install (default)

      perlbrew_profile '/etc/profile.d/perlbrew.sh' do
        mode          0644
        group         'root'
        owner         'root'
        template      'perlbrew.sh.erb'
      end
      
    • :remove

      perlbrew_profile '/etc/profile.d/perlbrew.sh' do
        action        :remove
      end
      
  • Attributes

    • :mode - The file's default permissions.
    • :group - The file's group association.
    • :owner - The file's owner.
    • :template - The template used to create the file.

perlbrew_perl

This resource provides actions to brew and install perls into node['perlbrew']['perlbrew_root'].

  • Actions

    • :install (default)

      ## Equivalent to 'perlbrew install perl-5.14.2'
      perlbrew_perl 'perl-5.14.2' do
        action :install
      end
      
      ## Equivalent to 'perlbrew install perl-5.14.2 --as 5.14.2'
      perlbrew_perl '5.14.2' do
        version 'perl-5.14.2'
        action :install
      end
      
    • :remove

      perlbrew_perl 'perl-5.14.2' do
        action :remove
      end
      
  • Attributes

    • :install_options - The options to be provided during brewing / installation.
    • :version - The version of perl to install, in the perl-X.Y.Z format that perlbrew expects.

perlbrew_switch

This resource provides an action to switch between brewed perl installations / system perl.

  • Actions

    • :default (default)

      perlbrew_switch 'off'
      perlbrew_switch 'perl-5.14.2'
      

perlbrew_lib

This resource creates a perlbrew-based local::lib library for a particular perlbrew
perl.

  • Actions

    • :create (default)

      perlbrew_lib 'perl-5.14.2@mylib' do
        action :create
      end
      
    • :delete

      perlbrew_lib 'perl-5.14.2@mylib' do
        action :delete
      end
      
  • Attributes

    • :perlbrew - The brewed perl to attach the library to (e.g. perl-5.14.2), and it is not installed, the perlbrew_perl resource will be used to brew and install it. If this attribute is not specified, it will be derived from the perlbrew_lib name.

perlbrew_cpanm

This resource installs CPAN modules to a given perlbrew perl or local::lib using
cpanm (App::cpanminus).

  • Actions

    • :install (default)

      perlbrew_cpanm 'Modern Perl modules' do
        modules ['Modern::Perl', 'Task::Kensho']
        perlbrew 'perl-5.14.2@mylib'
      end
      
  • Attributes

    • :modules - The list of module names to pass to cpanm.
    • :perlbrew - The brewed perl (and optional library) to use for installing modules.

perlbrew_run

This resource runs a bash command in the context of a given perlbrew perl or local::lib.

  • Actions

    • :run (default)

      ##Execute as script file.
      perlbrew_run 'hello-world.pl' do
         perlbrew 'perl-5.14.2@mylib'
      end
      
      ## Execute as a script string.
      perlbrew_run 'Perl hello world' do
        perlbrew 'perl-5.14.2@mylib'
        command "perl -wE 'say q{Hello World}'"
      end
      
  • Attributes

    • :command - The bash command to run, defaulting to the resource name if not specified.
    • :cwd - The directory to change into prior to running the command.
    • :environment - The hash of environment variables to set prior to running the command
    • :perlbrew - The brewed perl (and optional library) to use for running the command.

USAGE

This cookbook provides the following methods for configuring and installing
perlbrew, one of which is required to use the other resources in the cookbook:

## Method 1 - Include this cookbook's recipes in your cookbook/recipe: 
include_recipe 'perlbrew'
include_recipe 'perlbrew::profile'

## Method 2 - Use this cookbook's resources in your cookbook/recipe:
perlbrew  do
  perls         [ ,  ]
  upgrade       
end
perlbrew_profile  do
  group         
  owner         
  mode          
  template      
end

AUTHOR(S)

CONTRIBUTOR(S)

MAINTAINER(S)

Copyright (c) 2012-2019, the above named AUTHORS, CONTRIBUTORS, and MAINTAINERS

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

carton Applicable Versions

0.5.1

  • Update perlbrew to 0.87.
  • Explicitly install build dependencies such as gcc and make instead of using build_essential.

0.5.0

  • Bump minimum required Chef version to 14.
  • Add a TESTING.md to document how to test chef-perlbrew.
  • Unpin kitchen-dokken Chef from 14 as chefdk/chef-workstation is now updated.

0.4.2

  • Update documentation to remove deprecated LWRP terminology.
  • More tweaking of perlbrew installation.
  • Pin kitchen-dokken Chef to 14 (until a newer chef-workstation with Chef 15 appears.)

0.4.1

  • Add Amazon Linux 2 on tested/supported platforms.
  • Tweak perlbrew installation so it verifies the installer script before proceeding.

0.4.0

  • Updated for Chef 14 fixes.
  • Cookbook now maintained by Zak B. Elep, thanks J.R. Mash!
  • Added CI testing.

0.3.0

  • Fixed the 'switch' resource provider to actually work.
  • Fixed some things that foodcritic was complaining about.
  • Updated documentation to reclect the new resource/provider, and other documentation changes.

0.2.0

  • Created the 'default' resource/provider and converted the recipe of the same name to utilize it.
  • Created the 'profile' resource/provider and converted the recipe of the same name to utilize it.
  • Created the 'switch' resource/provider.

0.1.0

  • Initial release, set forth upon an unsuspecting world.

Collaborator Number Metric
            

0.5.1 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

0.5.1 passed this metric

Foodcritic Metric
            

0.5.1 passed this metric

No Binaries Metric
            

0.5.1 passed this metric

Testing File Metric
            

0.5.1 passed this metric

Version Tag Metric
            

0.5.1 passed this metric