2013-12-10 12:01:16 +01:00
|
|
|
# Maintainer: Michel Blanc <mblanc@erasme.org>
|
|
|
|
|
2012-04-19 15:30:26 +02:00
|
|
|
pkgname=ansible-git
|
2014-02-09 13:45:37 +01:00
|
|
|
pkgver=1.1.4095.g3f2f5fe
|
2013-01-23 21:06:00 +01:00
|
|
|
pkgrel=1
|
2014-02-09 13:45:37 +01:00
|
|
|
pkgdesc='Radically simple IT automation platform'
|
2012-04-19 15:30:26 +02:00
|
|
|
arch=('any')
|
2013-12-10 12:01:16 +01:00
|
|
|
url='http://www.ansible.com'
|
2012-04-19 15:30:26 +02:00
|
|
|
license=('GPL3')
|
2013-01-31 18:19:32 +01:00
|
|
|
depends=('python2' 'python2-paramiko' 'python2-jinja' 'python2-yaml')
|
2012-04-19 19:26:41 +02:00
|
|
|
makedepends=('git' 'asciidoc' 'fakeroot')
|
2014-02-28 00:06:49 +01:00
|
|
|
optdepends=('python2-pyasn1: needed for accelerated mode'
|
|
|
|
'python2-crypto: needed for accelerated mode'
|
|
|
|
'python2-keyczar: needed for accelerated mode')
|
2012-11-16 10:07:42 +01:00
|
|
|
conflicts=('ansible')
|
2013-05-24 21:40:38 +02:00
|
|
|
provides=('ansible')
|
2013-05-24 21:43:15 +02:00
|
|
|
backup=('etc/ansible/ansible.cfg')
|
2013-12-10 12:01:16 +01:00
|
|
|
source=($pkgname::git://github.com/ansible/ansible.git)
|
|
|
|
md5sums=('SKIP')
|
2012-04-19 15:30:26 +02:00
|
|
|
|
2013-12-10 12:01:16 +01:00
|
|
|
pkgver() {
|
|
|
|
cd $pkgname
|
|
|
|
git describe --long | sed 's/^v//;s/-/./g'
|
2013-05-15 19:57:42 +02:00
|
|
|
}
|
2013-12-10 12:01:16 +01:00
|
|
|
|
2012-04-19 15:30:26 +02:00
|
|
|
build() {
|
2013-12-10 12:01:16 +01:00
|
|
|
cd $pkgname
|
|
|
|
make PYTHON=python2
|
2012-04-19 15:30:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2013-12-10 12:01:16 +01:00
|
|
|
cd $pkgname
|
2012-04-19 15:30:26 +02:00
|
|
|
|
2013-12-10 12:01:16 +01:00
|
|
|
mkdir -p "$pkgdir/usr/share/ansible"
|
|
|
|
cp -dpr --no-preserve=ownership ./library/* "$pkgdir/usr/share/ansible/"
|
|
|
|
cp -dpr --no-preserve=ownership ./examples "$pkgdir/usr/share/ansible"
|
2013-01-03 20:54:13 +01:00
|
|
|
|
2013-05-15 19:57:42 +02:00
|
|
|
python2 setup.py install -O1 --root="$pkgdir"
|
2012-04-19 15:30:26 +02:00
|
|
|
|
2013-06-18 23:29:28 +02:00
|
|
|
install -D examples/ansible.cfg "$pkgdir/etc/ansible/ansible.cfg"
|
2013-05-24 21:43:15 +02:00
|
|
|
|
|
|
|
install -D README.md "$pkgdir/usr/share/doc/ansible/README.md"
|
|
|
|
install -D COPYING "$pkgdir/usr/share/doc/ansible/COPYING"
|
|
|
|
install -D CHANGELOG.md "$pkgdir/usr/share/doc/ansible/CHANGELOG.md"
|
|
|
|
|
2014-02-09 13:45:37 +01:00
|
|
|
mkdir -p "$pkgdir/usr/share/man/man{1,3}"
|
|
|
|
cp -dpr --no-preserve=ownership docs/man/man1/*.1 "$pkgdir/usr/share/man/man1"
|
|
|
|
cp -dpr --no-preserve=ownership docs/man/man3/*.3 "$pkgdir/usr/share/man/man3"
|
2012-04-19 15:30:26 +02:00
|
|
|
}
|