Skip to content

Commit

Permalink
duplicity 0.6.23
Browse files Browse the repository at this point in the history
Include pip lockfile/paramiko dependencies.

Closes Homebrew/legacy-homebrew#26393.
Closes Homebrew/legacy-homebrew#26417.
  • Loading branch information
brettkoonce committed Feb 6, 2014
1 parent d9dffaf commit 466f1b0
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions Formula/duplicity.rb
Expand Up @@ -2,17 +2,33 @@

class Duplicity < Formula
homepage 'http://www.nongnu.org/duplicity/'
url 'http://code.launchpad.net/duplicity/0.6-series/0.6.22/+download/duplicity-0.6.22.tar.gz'
sha1 'afa144f444148b67d7649b32b80170d917743783'
url 'http://code.launchpad.net/duplicity/0.6-series/0.6.23/+download/duplicity-0.6.23.tar.gz'
sha1 '0b8664d55c24957b3b19e903c0d69673f2bfa166'

depends_on :python
depends_on 'librsync'
depends_on 'gnupg'

option :universal

resource 'lockfile' do
url 'https://pypi.python.org/packages/source/l/lockfile/lockfile-0.9.1.tar.gz'
sha1 '9870cc7e7d4b23f0b6c39cf6ba597c87871ac6de'
end

resource 'paramiko' do
url 'https://pypi.python.org/packages/source/p/paramiko/paramiko-1.12.1.tar.gz'
sha1 '3809737533b3055b9822a86bee6bd1629144204d'
end

def install
ENV.universal_binary if build.universal?

ENV.prepend_create_path 'PYTHONPATH', libexec+'lib/python2.7/site-packages'
install_args = [ "setup.py", "install", "--prefix=#{libexec}" ]
resource('lockfile').stage { system "python", *install_args }
resource('paramiko').stage { system "python", *install_args }

system "python", "setup.py", "install", "--prefix=#{prefix}"

bin.env_script_all_files(libexec+'bin', :PYTHONPATH => ENV['PYTHONPATH'])
Expand Down

0 comments on commit 466f1b0

Please sign in to comment.