mirror of https://github.com/ansible/ansible.git
Update and cleanup Arch packaging (#64747)
parent
ee3dcb4d35
commit
eab385e006
@ -1,53 +0,0 @@
|
||||
# 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>
|
||||
# Contributor: Daniel Wallace <danielwallace@gtmanfred.com>
|
||||
# Contributor: John Gosset <john.gosset@gmail.com>
|
||||
# Contributor: Joshua Lund <josh@joshlund.com>
|
||||
# Contributor: Matt Klich <matt.klich@readytalk.com>
|
||||
# Contributor: Michael DeHaan <michael@ansible.com>
|
||||
|
||||
pkgname=ansible-git
|
||||
pkgver=1.6.0.1835.ga1809a3
|
||||
pkgrel=1
|
||||
pkgdesc='Ansible IT Automation'
|
||||
arch=('any')
|
||||
url='https://www.ansible.com'
|
||||
license=('GPL3')
|
||||
depends=('python2' 'python2-paramiko' 'python2-jinja' 'python2-yaml', 'python2-crypto')
|
||||
makedepends=('git' 'docutils' 'fakeroot')
|
||||
conflicts=('ansible')
|
||||
provides=('ansible')
|
||||
backup=('etc/ansible/ansible.cfg')
|
||||
source=($pkgname::git+https://github.com/ansible/ansible.git)
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd $pkgname
|
||||
git describe --long | sed 's/^v//;s/-/./g'
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname
|
||||
make PYTHON=python2
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname
|
||||
|
||||
install -dm755 $pkgdir/usr/share/ansible
|
||||
cp -dpr --no-preserve=ownership ./examples "$pkgdir/usr/share/ansible"
|
||||
|
||||
python2 setup.py install -O1 --root="$pkgdir"
|
||||
|
||||
install -Dm644 examples/ansible.cfg $pkgdir/etc/ansible/ansible.cfg
|
||||
|
||||
install -Dm644 README.rst $pkgdir/usr/share/doc/ansible/README.rst
|
||||
install -Dm644 COPYING $pkgdir/usr/share/doc/ansible/COPYING
|
||||
install -Dm644 CHANGELOG.md $pkgdir/usr/share/doc/ansible/CHANGELOG.md
|
||||
|
||||
install -dm755 ${pkgdir}/usr/share/man/man1
|
||||
cp -dpr --no-preserve=ownership docs/man/man1/*.1 "$pkgdir/usr/share/man/man1"
|
||||
}
|
@ -1,20 +1,8 @@
|
||||
Arch Packaging Files
|
||||
--------------------
|
||||
|
||||
The PKGBUILD in this directory is here for reference.
|
||||
|
||||
You can install [ansible-git][1] from the Arch User Repository (AUR), using the [AUR helper][2] of your choice.
|
||||
|
||||
With `yaourt`:
|
||||
|
||||
yaourt -S ansible-git
|
||||
|
||||
With `pikaur`:
|
||||
|
||||
pikaur -S ansible-git
|
||||
|
||||
You can also install the stable version of [ansible][3] as an AUR package.
|
||||
You can find the source files for [ansible-git][1] in the [Arch User Repository][2] and for the stable version [ansible][3] you can do so in \[community\].
|
||||
|
||||
[1]: https://aur.archlinux.org/packages/ansible-git/
|
||||
[2]: https://wiki.archlinux.org/index.php/AUR_helpers
|
||||
[3]: https://aur.archlinux.org/packages/ansible/
|
||||
[2]: https://wiki.archlinux.org/index.php/Arch_User_Repository
|
||||
[3]: https://www.archlinux.org/packages/community/any/ansible/
|
||||
|
Loading…
Reference in New Issue