From 7e5efbcab515f9c92f1600c162531e296755fb69 Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Fri, 2 Aug 2013 16:30:04 -0300 Subject: [PATCH] Adding missing file. --- puppet/modules/colab/manifests/requirements.pp | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+), 0 deletions(-) create mode 100644 puppet/modules/colab/manifests/requirements.pp diff --git a/puppet/modules/colab/manifests/requirements.pp b/puppet/modules/colab/manifests/requirements.pp new file mode 100644 index 0000000..0f21b0f --- /dev/null +++ b/puppet/modules/colab/manifests/requirements.pp @@ -0,0 +1,56 @@ + +class colab::requirements { + + # req for cloning code + package { 'git': + ensure => installed, + } + + # req to install python pkgs + package { 'python-pip': + ensure => installed, + } + + # req to create virtualenvs + package { 'virtualenvwrapper': + ensure => installed, + provider => pip, + require => Package['python-pip'], + } + + # links virtualenvwrapper to load automaticaly + file { '/etc/bash_completion.d/virtualenvwrapper.sh': + ensure => link, + target => '/usr/local/bin/virtualenvwrapper.sh', + } + + # req for any compilation + package { 'build-essential': + ensure => installed, + } + + # req for compiling every python pkg + package { 'python-dev': + ensure => installed, + } + + # req by gvent + package { 'libevent-dev': + ensure => installed, + } + + # req by psycopg2 + package { 'libpq-dev': + ensure => installed, + } + + # req by feedzilla + package { 'libxml2-dev': + ensure => installed, + } + + # req by feedzilla + package { 'libxslt1-dev': + ensure => installed, + } +} \ No newline at end of file -- libgit2 0.21.2