diff options
author | Michel Blanc <mb@mbnet.fr> | 2014-10-08 10:41:29 +0200 |
---|---|---|
committer | Michel Blanc <mb@mbnet.fr> | 2014-10-08 10:41:29 +0200 |
commit | ce58706dd0e25ed4f820f18d54cafe4280a7cfd6 (patch) | |
tree | 81a28ba1cecdcdb3e55079cf26f3c163cd6667d1 /packaging | |
parent | Adding a negative test for new safe_load (diff) | |
download | ansible-ce58706dd0e25ed4f820f18d54cafe4280a7cfd6.tar.xz ansible-ce58706dd0e25ed4f820f18d54cafe4280a7cfd6.zip |
Fixes Arch PKGBUILD
Build was failing with new Ansible submodule setup for core and extras
modules.
Integrated fix from @firecat53
Added @firecat53 to contributors.
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/arch/PKGBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index f4db6fbd7b..f2f9422906 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,4 +1,5 @@ # Maintainer: Michel Blanc <mblanc@erasme.org> +# Contributor: Scott Hansen https://github.com/firecat53 # Contributor: Buce <dmbuce@gmail.com> # Contributor: Bartłomiej Piotrowski <b@bpiotrowski.pl> # Contributor: cgtx <carl@carlgeorge.us> @@ -9,7 +10,7 @@ # Contributor: Michael DeHaan <michael@ansible.com> pkgname=ansible-git -pkgver=1.1.4095.g3f2f5fe +pkgver=1.6.0.1835.ga1809a3 pkgrel=1 pkgdesc='Radically simple IT automation platform' arch=('any') @@ -33,6 +34,7 @@ pkgver() { build() { cd $pkgname + git submodule update --init --recursive make PYTHON=python2 } @@ -40,7 +42,6 @@ package() { cd $pkgname install -dm755 $pkgdir/usr/share/ansible - cp -dpr --no-preserve=ownership ./library/* "$pkgdir/usr/share/ansible/" cp -dpr --no-preserve=ownership ./examples "$pkgdir/usr/share/ansible" python2 setup.py install -O1 --root="$pkgdir" |