You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#Maintainer: Michel Blanc <mblanc@erasme.org>
|
|
|
|
pkgname=ansible-git
|
|
|
|
pkgver=20120419
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A radically simple deployment, model-driven configuration management, and command execution framework"
|
|
|
|
arch=('any')
|
|
|
|
url="https://github.com/ansible/ansible"
|
|
|
|
license=('GPL3')
|
|
|
|
depends=('python2' 'python2-yaml' 'python-paramiko>=1.7.7' 'python2-jinja' 'python-simplejson')
|
|
|
|
makedepends=('git' 'asciidoc' 'fakeroot')
|
|
|
|
|
|
|
|
_gitroot="https://github.com/ansible/ansible"
|
|
|
|
_gitname="ansible"
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir"
|
|
|
|
msg "Connecting to GIT server...."
|
|
|
|
|
|
|
|
if [ -d $_gitname ] ; then
|
|
|
|
cd $_gitname && git pull origin
|
|
|
|
msg "The local files are updated."
|
|
|
|
else
|
|
|
|
git clone $_gitroot $_gitname
|
|
|
|
fi
|
|
|
|
|
|
|
|
msg "GIT checkout done or server timeout"
|
|
|
|
|
|
|
|
cd "$srcdir/$_gitname"
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$_gitname"
|
|
|
|
|
|
|
|
mkdir -p ${pkgdir}/usr/share/ansible
|
|
|
|
cp ./library/* ${pkgdir}/usr/share/ansible/
|
|
|
|
python setup.py install -O1 --root=${pkgdir}
|
|
|
|
|
|
|
|
install -D docs/man/man1/ansible.1 ${pkgdir}/usr/share/man/man1/ansible.1
|
|
|
|
install -D docs/man/man1/ansible-playbook.1 ${pkgdir}/usr/share/man/man1/ansible-playbook.1
|
|
|
|
|
|
|
|
gzip -9 ${pkgdir}/usr/share/man/man1/ansible.1
|
|
|
|
gzip -9 ${pkgdir}/usr/share/man/man1/ansible-playbook.1
|
|
|
|
}
|