mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #5302 from Barthalion/devel
Make PKGBUILD packaging standards compliant.
This commit is contained in:
commit
dbeddd3e14
3 changed files with 27 additions and 41 deletions
|
@ -1,43 +1,40 @@
|
||||||
#Maintainer: Michel Blanc <mblanc@erasme.org>
|
# Maintainer: Michel Blanc <mblanc@erasme.org>
|
||||||
|
|
||||||
pkgname=ansible-git
|
pkgname=ansible-git
|
||||||
pkgver=1.1.912.gedb6a68
|
pkgver=1.1.3403.g5cd97e8
|
||||||
pkgver(){
|
|
||||||
cd "$srcdir/$pkgname"
|
|
||||||
git describe --tags --long | sed 's/^v//;s/-/./g'
|
|
||||||
}
|
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A radically simple IT automation"
|
pkgdesc='A radically simple IT automation'
|
||||||
arch=('any')
|
arch=('any')
|
||||||
url="http://www.ansible.com"
|
url='http://www.ansible.com'
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=('python2' 'python2-paramiko' 'python2-jinja' 'python2-yaml')
|
depends=('python2' 'python2-paramiko' 'python2-jinja' 'python2-yaml')
|
||||||
makedepends=('git' 'asciidoc' 'fakeroot')
|
makedepends=('git' 'asciidoc' 'fakeroot')
|
||||||
optdepends=('python2-pyzmq: needed for fireball mode'
|
optdepends=('python2-pyzmq: needed for fireball mode'
|
||||||
'python2-pyasn1: needed for fireball mode'
|
'python2-pyasn1: needed for fireball mode'
|
||||||
'python2-crypto: needed for fireball mode'
|
'python2-crypto: needed for fireball mode'
|
||||||
'python2-keyczar: needed for fireball mode')
|
'python2-keyczar: needed for fireball mode')
|
||||||
conflicts=('ansible')
|
conflicts=('ansible')
|
||||||
provides=('ansible')
|
provides=('ansible')
|
||||||
source=("$pkgname::git://github.com/ansible/ansible.git"
|
|
||||||
"python-binary.diff")
|
|
||||||
md5sums=("SKIP" "ab81876d8d4c86c27d137e3d86c25a3a")
|
|
||||||
backup=('etc/ansible/ansible.cfg')
|
backup=('etc/ansible/ansible.cfg')
|
||||||
|
source=($pkgname::git://github.com/ansible/ansible.git)
|
||||||
|
md5sums=('SKIP')
|
||||||
|
|
||||||
prepare(){
|
pkgver() {
|
||||||
cd "$srcdir/$pkgname"
|
cd $pkgname
|
||||||
patch -p1 -i "$srcdir/python-binary.diff"
|
git describe --long | sed 's/^v//;s/-/./g'
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$srcdir/$pkgname"
|
cd $pkgname
|
||||||
make
|
make PYTHON=python2
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$srcdir/$pkgname"
|
cd $pkgname
|
||||||
|
|
||||||
mkdir -p "${pkgdir}/usr/share/ansible"
|
mkdir -p "$pkgdir/usr/share/ansible"
|
||||||
cp -dpr --no-preserve=ownership ./library/* "${pkgdir}/usr/share/ansible/"
|
cp -dpr --no-preserve=ownership ./library/* "$pkgdir/usr/share/ansible/"
|
||||||
cp -dpr --no-preserve=ownership ./examples "${pkgdir}/usr/share/ansible"
|
cp -dpr --no-preserve=ownership ./examples "$pkgdir/usr/share/ansible"
|
||||||
|
|
||||||
python2 setup.py install -O1 --root="$pkgdir"
|
python2 setup.py install -O1 --root="$pkgdir"
|
||||||
|
|
||||||
|
@ -49,8 +46,8 @@ package() {
|
||||||
install -D CONTRIBUTING.md "$pkgdir/usr/share/doc/ansible/CONTRIBUTING.md"
|
install -D CONTRIBUTING.md "$pkgdir/usr/share/doc/ansible/CONTRIBUTING.md"
|
||||||
install -D RELEASES.txt "$pkgdir/usr/share/doc/ansible/RELEASES.txt"
|
install -D RELEASES.txt "$pkgdir/usr/share/doc/ansible/RELEASES.txt"
|
||||||
|
|
||||||
install -D docs/man/man1/ansible.1 "${pkgdir}/usr/share/man/man1/ansible.1"
|
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"
|
install -D docs/man/man1/ansible-playbook.1 "$pkgdir/usr/share/man/man1/ansible-playbook.1"
|
||||||
install -D docs/man/man1/ansible-pull.1 "${pkgdir}/usr/share/man/man1/ansible-pull.1"
|
install -D docs/man/man1/ansible-pull.1 "$pkgdir/usr/share/man/man1/ansible-pull.1"
|
||||||
install -D docs/man/man1/ansible-doc.1 "${pkgdir}/usr/share/man/man1/ansible-doc.1"
|
install -D docs/man/man1/ansible-doc.1 "$pkgdir/usr/share/man/man1/ansible-doc.1"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
Arch Packaging Files
|
Arch Packaging Files
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
The PKGBUILD and patch in this directory are here for reference.
|
The PKGBUILD in this directory is here for reference.
|
||||||
You should use AUR to install [ansible-git][1], using `yaourt` for instance :
|
You should use AUR to install [ansible-git][1], using `yaourt` for instance:
|
||||||
|
|
||||||
yaourt -S ansible-git
|
yaourt -S ansible-git
|
||||||
|
|
||||||
You can also find a stable AUR package for the stable version of [ansible][2].
|
You can also use a AUR package for the stable version of [ansible][2].
|
||||||
|
|
||||||
[1]: https://aur.archlinux.org/packages/ansible-git/
|
[1]: https://aur.archlinux.org/packages/ansible-git/
|
||||||
[2]: https://aur.archlinux.org/packages/ansible/
|
[2]: https://aur.archlinux.org/packages/ansible/
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- ansible.orig/Makefile 2013-03-11 23:12:32.586322115 +0100
|
|
||||||
+++ ansible/Makefile 2013-03-11 23:12:59.375487971 +0100
|
|
||||||
@@ -28,7 +28,7 @@
|
|
||||||
ASCII2MAN = @echo "ERROR: AsciiDoc 'a2x' command is not installed but is required to build $(MANPAGES)" && exit 1
|
|
||||||
endif
|
|
||||||
|
|
||||||
-PYTHON=python
|
|
||||||
+PYTHON=python2
|
|
||||||
SITELIB = $(shell $(PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
|
||||||
|
|
||||||
# VERSION file provides one place to update the software version
|
|
Loading…
Reference in a new issue