1
0
Fork 0
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:
Toshio Kuratomi 2015-06-02 11:43:35 -07:00
parent 093b5b6051
commit 300eb3a843
3 changed files with 6 additions and 2 deletions

View file

@ -3,7 +3,7 @@ Ansible Debian Package
To create an Ansible DEB 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 sudo apt-get install cdbs debhelper dpkg-dev git-core reprepro python-support fakeroot asciidoc devscripts
git clone git://github.com/ansible/ansible.git git clone git://github.com/ansible/ansible.git
cd ansible cd ansible

View file

@ -8,7 +8,7 @@ Homepage: http://ansible.github.com/
Package: ansible Package: ansible
Architecture: all 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 Description: A radically simple IT automation platform
A radically simple IT automation platform that makes your applications and A radically simple IT automation platform that makes your applications and
systems easier to deploy. Avoid writing scripts or custom code to deploy and systems easier to deploy. Avoid writing scripts or custom code to deploy and

View file

@ -28,6 +28,7 @@ Requires: python26-jinja2
Requires: python26-keyczar Requires: python26-keyczar
Requires: python26-httplib2 Requires: python26-httplib2
Requires: python26-setuptools Requires: python26-setuptools
Requires: python26-six
%endif %endif
# RHEL == 6 # RHEL == 6
@ -45,6 +46,7 @@ Requires: python-jinja2
Requires: python-keyczar Requires: python-keyczar
Requires: python-httplib2 Requires: python-httplib2
Requires: python-setuptools Requires: python-setuptools
Requires: python-six
%endif %endif
# FEDORA > 17 # FEDORA > 17
@ -57,6 +59,7 @@ Requires: python-jinja2
Requires: python-keyczar Requires: python-keyczar
Requires: python-httplib2 Requires: python-httplib2
Requires: python-setuptools Requires: python-setuptools
Requires: python-six
%endif %endif
# SuSE/openSuSE # SuSE/openSuSE
@ -69,6 +72,7 @@ Requires: python-keyczar
Requires: python-yaml Requires: python-yaml
Requires: python-httplib2 Requires: python-httplib2
Requires: python-setuptools Requires: python-setuptools
Requires: python-six
%endif %endif
Requires: sshpass Requires: sshpass