You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2013/05/25 17:23:54 UTC

git commit: [#6255] remove symlink workarounds for PIL

Updated Branches:
  refs/heads/db/6255 10f1c19ea -> cef728f7d


[#6255] remove symlink workarounds for PIL


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/cef728f7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/cef728f7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/cef728f7

Branch: refs/heads/db/6255
Commit: cef728f7d350aad7b25fd1165af8643fc5f43176
Parents: 10f1c19
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Sat May 25 11:23:42 2013 -0400
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Sat May 25 11:23:42 2013 -0400

----------------------------------------------------------------------
 README.markdown                               |    4 +---
 vagrant/manifests/ubuntu-1204-server-amd64.pp |   12 ------------
 2 files changed, 1 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/cef728f7/README.markdown
----------------------------------------------------------------------
diff --git a/README.markdown b/README.markdown
index 4284960..55b6c13 100644
--- a/README.markdown
+++ b/README.markdown
@@ -36,11 +36,9 @@ We'll use [VirtualBox](http://www.virtualbox.org) and [Ubuntu 12.04](http://ubun
 
 # Installation
 
-Before we begin, you'll need to install some system packages.  [Use google if you need additional PIL/jpeg help.](http://www.google.com/search?q=ubuntu+pil+jpeg+virtualenv)
+Before we begin, you'll need to install some system packages.
 
     ~$ sudo aptitude install git-core default-jre-headless python-dev libssl-dev libldap2-dev libsasl2-dev libjpeg8-dev zlib1g-dev
-    ~$ sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib
-    ~$ sudo ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib
 
 To install MongoDB 2.2.3, follow the instructions here:
 

http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/cef728f7/vagrant/manifests/ubuntu-1204-server-amd64.pp
----------------------------------------------------------------------
diff --git a/vagrant/manifests/ubuntu-1204-server-amd64.pp b/vagrant/manifests/ubuntu-1204-server-amd64.pp
index 950f2af..be00025 100644
--- a/vagrant/manifests/ubuntu-1204-server-amd64.pp
+++ b/vagrant/manifests/ubuntu-1204-server-amd64.pp
@@ -45,17 +45,6 @@ package { $packages:
     require => Exec[ "package index update" ],
 }
 
-file { '/usr/lib/libz.so':
-  ensure => 'link',
-  target => '/usr/lib/x86_64-linux-gnu/libz.so',
-  require => Package[ "zlib1g-dev" ],
-}
-file { '/usr/lib/libjpeg.so':
-  ensure => 'link',
-  target => '/usr/lib/x86_64-linux-gnu/libjpeg.so',
-  require => Package[ "libjpeg8-dev" ],
-}
-
 # install python pip
 exec { "install venv":
   command => "/usr/bin/pip install virtualenv",
@@ -115,7 +104,6 @@ exec { "pip install":
   returns => 0,
   tries => 3,
   require => [ Exec[ "clone repo"], Exec[ "create allura venv" ],
-               File["/usr/lib/libjpeg.so"], File["/usr/lib/libz.so"],
                ],
 }