mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add six as a dependency for packaging
This commit is contained in:
parent
093b5b6051
commit
300eb3a843
3 changed files with 6 additions and 2 deletions
|
@ -3,7 +3,7 @@ Ansible Debian Package
|
|||
|
||||
To create an Ansible DEB package:
|
||||
|
||||
sudo apt-get install python-paramiko python-yaml python-jinja2 python-httplib2 python-setuptools sshpass
|
||||
sudo apt-get install python-paramiko python-yaml python-jinja2 python-httplib2 python-setuptools python-six sshpass
|
||||
sudo apt-get install cdbs debhelper dpkg-dev git-core reprepro python-support fakeroot asciidoc devscripts
|
||||
git clone git://github.com/ansible/ansible.git
|
||||
cd ansible
|
||||
|
|
|
@ -8,7 +8,7 @@ Homepage: http://ansible.github.com/
|
|||
|
||||
Package: ansible
|
||||
Architecture: all
|
||||
Depends: python, python-support (>= 0.90), python-jinja2, python-yaml, python-paramiko, python-httplib2, python-crypto (>= 2.6), sshpass, ${misc:Depends}
|
||||
Depends: python, python-support (>= 0.90), python-jinja2, python-yaml, python-paramiko, python-httplib2, python-six, python-crypto (>= 2.6), sshpass, ${misc:Depends}
|
||||
Description: A radically simple IT automation platform
|
||||
A radically simple IT automation platform that makes your applications and
|
||||
systems easier to deploy. Avoid writing scripts or custom code to deploy and
|
||||
|
|
|
@ -28,6 +28,7 @@ Requires: python26-jinja2
|
|||
Requires: python26-keyczar
|
||||
Requires: python26-httplib2
|
||||
Requires: python26-setuptools
|
||||
Requires: python26-six
|
||||
%endif
|
||||
|
||||
# RHEL == 6
|
||||
|
@ -45,6 +46,7 @@ Requires: python-jinja2
|
|||
Requires: python-keyczar
|
||||
Requires: python-httplib2
|
||||
Requires: python-setuptools
|
||||
Requires: python-six
|
||||
%endif
|
||||
|
||||
# FEDORA > 17
|
||||
|
@ -57,6 +59,7 @@ Requires: python-jinja2
|
|||
Requires: python-keyczar
|
||||
Requires: python-httplib2
|
||||
Requires: python-setuptools
|
||||
Requires: python-six
|
||||
%endif
|
||||
|
||||
# SuSE/openSuSE
|
||||
|
@ -69,6 +72,7 @@ Requires: python-keyczar
|
|||
Requires: python-yaml
|
||||
Requires: python-httplib2
|
||||
Requires: python-setuptools
|
||||
Requires: python-six
|
||||
%endif
|
||||
|
||||
Requires: sshpass
|
||||
|
|
Loading…
Reference in a new issue