diff options
| author | Matt Bailey | 2014-05-06 09:41:49 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-06 12:19:31 -0700 |
| commit | 83508025adbfa9f6191dba0ff926207a56040eb0 (patch) | |
| tree | 8de00fe611e0213c853dcf488876c83a1c0f52dd /Library/Formula | |
| parent | 6e7ba51379bce76f7eef48effff0b569447dbaca (diff) | |
| download | homebrew-83508025adbfa9f6191dba0ff926207a56040eb0.tar.bz2 | |
ansible: remove conflicting python files
Conflicting python files are now default in 1.6 instead of just in HEAD.
Closes #29008.
Closes #29010.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ansible.rb | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/ansible.rb b/Library/Formula/ansible.rb index fadba4941..034314656 100644 --- a/Library/Formula/ansible.rb +++ b/Library/Formula/ansible.rb @@ -4,6 +4,7 @@ class Ansible < Formula homepage 'http://www.ansible.com/home' url 'http://releases.ansible.com/ansible/ansible-1.6.tar.gz' sha1 '207404b37cc5c2d74992e6b7165bbc7c93781202' + revision 1 head 'https://github.com/ansible/ansible.git', :branch => 'devel' @@ -74,12 +75,10 @@ class Ansible < Formula system "python", "setup.py", "install", "--prefix=#{prefix}" - # HEAD version installs some conflicting extra cruft - if build.head? - rm Dir["#{bin}/easy_install*"] - rm "#{lib}/python2.7/site-packages/site.py" - rm Dir["#{lib}/python2.7/site-packages/*.pth"] - end + # These are now rolled into 1.6 and cause linking conflicts + rm Dir["#{bin}/easy_install*"] + rm "#{lib}/python2.7/site-packages/site.py" + rm Dir["#{lib}/python2.7/site-packages/*.pth"] man1.install Dir['docs/man/man1/*.1'] |
