Skip to content

Commit e68757b

Browse files
fulvgforcada
authored andcommitted
Add support for python 2.4
1 parent 262a959 commit e68757b

File tree

5 files changed

+96
-0
lines changed

5 files changed

+96
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
# added by GitSavvy
3+
/inventory.cfg

ansible.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
roles:
44
- ansible-compile-python
55
vars:
6+
- python_24: true
67
- python_26: true
78
- pillow: true
89
- lxml: true

defaults/main.yml

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# role main options
55
##
66

7+
python_24: false
78
python_26: false
89
python_27: true
910
python_35: true
@@ -18,6 +19,14 @@ lxml: false
1819

1920
base_install_folder: "/srv"
2021

22+
py24_version: "2.4.6"
23+
py24_url: "https://www.python.org/ftp/python/{{ py24_version }}/Python-{{ py24_version }}.tar.bz2"
24+
py24_md5: "76083277f6c7e4d78992f36d7ad9018d"
25+
py24_tar_file: "/tmp/py{{ py24_version }}.tar.bz2"
26+
py24_sources: "/tmp/Python-{{ py24_version }}"
27+
py24_install: "{{ base_install_folder }}/python{{ py24_version }}"
28+
py24_bin: "{{ py24_install }}/bin/python2.4"
29+
2130
py26_version: "2.6.9"
2231
py26_url: "https://www.python.org/ftp/python/{{ py26_version }}/Python-{{ py26_version }}.tar.xz"
2332
py26_md5: "933a811f11e3db3d73ae492f6c3a7a76"
@@ -42,6 +51,11 @@ py35_sources: "/tmp/Python-{{ py35_version }}"
4251
py35_install: "{{ base_install_folder }}/python{{ py35_version }}"
4352
py35_bin: "{{ py35_install }}/bin/python3.5"
4453

54+
venv24_url: "http://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.7.2.tar.gz"
55+
venv24_md5: "b5d63b05373a4344ae099a68875aae78"
56+
venv24_tar_file: "/tmp/virtualenv-1.7.2.tar.gz"
57+
venv24_sources: "/tmp/virtualenv-1.7.2"
58+
4559
venv_url: "https://pypi.python.org/packages/5c/79/5dae7494b9f5ed061cff9a8ab8d6e1f02db352f3facf907d9eb614fb80e9/virtualenv-15.0.2.tar.gz"
4660
venv_md5: "0ed59863994daf1292827ffdbba80a63"
4761
venv_tar_file: "/tmp/virtualenv-15.0.2.tar.gz"

tasks/python.yml

+47
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
# Check if python versions are already installed
55
##
66

7+
- name: py24 | Check that py24 is still not installed
8+
become: true
9+
stat: path="{{ py24_bin }}"
10+
register: py24_already_installed
11+
ignore_errors: True
12+
713
- name: py26 | Check that py26 is still not installed
814
become: true
915
stat: path="{{ py26_bin }}"
@@ -26,6 +32,13 @@
2632
# Download
2733
##
2834

35+
- name: py24 | Download
36+
get_url:
37+
url="{{ py24_url }}"
38+
dest="{{ py24_tar_file }}"
39+
checksum="md5:{{ py24_md5 }}"
40+
when: python_24 and py24_already_installed.stat.exists == false
41+
2942
- name: py26 | Download
3043
get_url:
3144
url="{{ py26_url }}"
@@ -51,6 +64,14 @@
5164
# Uncompress
5265
##
5366

67+
- name: py24 | Uncompress
68+
unarchive:
69+
src={{ py24_tar_file }}
70+
dest=/tmp
71+
copy=no
72+
creates="{{ py24_sources }}"
73+
when: python_24 and py24_already_installed.stat.exists == false
74+
5475
- name: py26 | Uncompress
5576
unarchive:
5677
src={{ py26_tar_file }}
@@ -79,6 +100,32 @@
79100
# Compile and install
80101
##
81102

103+
- name: py24 | Configure sources
104+
become: true
105+
command: "./configure --prefix {{ py24_install }}"
106+
args:
107+
chdir: "{{ py24_sources }}"
108+
when: python_24 and py24_already_installed.stat.exists == false
109+
110+
- name: py24 | Tweak sources
111+
become: true
112+
lineinfile:
113+
dest="{{ py24_sources }}/Modules/Setup"
114+
regexp=^#zlib(.*)
115+
line=zlib\1
116+
backrefs=yes
117+
when: python_24 and py24_already_installed.stat.exists == false
118+
119+
- name: py24 | Compile and install
120+
become: true
121+
command: "{{ item }}"
122+
args:
123+
chdir: "{{ py24_sources }}"
124+
with_items:
125+
- make
126+
- make install
127+
when: python_24 and py24_already_installed.stat.exists == false
128+
82129
- name: py26 | Configure sources
83130
become: true
84131
command: "./configure --prefix {{ py26_install }}"

tasks/venv.yml

+31
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
# Check if virtualenv is already installed
55
##
66

7+
- name: virtualenv | Check if virtualenv is already installed
8+
become: true
9+
stat: path="{{ py24_install }}/bin/virtualenv"
10+
register: virtualenv24_already_installed
11+
ignore_errors: True
12+
when: python_24
13+
714
- name: virtualenv | Check if virtualenv is already installed
815
become: true
916
stat: path="{{ py26_install }}/bin/virtualenv"
@@ -22,20 +29,44 @@
2229
# Virtualenv (only for python 2.x)
2330
##
2431

32+
- name: virtualenv for 2.4 | Download
33+
get_url:
34+
url="{{ venv24_url }}"
35+
dest="{{ venv24_tar_file }}"
36+
checksum="md5:{{ venv24_md5 }}"
37+
when: virtualenv24_already_installed.stat.exists == false and (python_24)
38+
2539
- name: virtualenv | Download
2640
get_url:
2741
url="{{ venv_url }}"
2842
dest="{{ venv_tar_file }}"
2943
checksum="md5:{{ venv_md5 }}"
3044
when: virtualenv_already_installed.stat.exists == false and (python_26 or python_27)
3145

46+
- name: virtualenv for 2.4 | Uncompress
47+
unarchive:
48+
src="{{ venv24_tar_file }}"
49+
dest=/tmp
50+
copy=no
51+
when: virtualenv24_already_installed.stat.exists == false and (python_24)
52+
3253
- name: virtualenv | Uncompress
3354
unarchive:
3455
src="{{ venv_tar_file }}"
3556
dest=/tmp
3657
copy=no
3758
when: virtualenv_already_installed.stat.exists == false and (python_26 or python_27)
3859

60+
- name: py24 | Install virtualenv
61+
become: true
62+
command: "{{ item }}"
63+
args:
64+
chdir: "{{ venv24_sources }}"
65+
creates: "{{ py24_install }}/bin/virtualenv"
66+
with_items:
67+
- "{{ py24_bin }} setup.py install"
68+
when: virtualenv24_already_installed.stat.exists == false and python_24
69+
3970
- name: py26 | Install virtualenv
4071
become: true
4172
command: "{{ item }}"

0 commit comments

Comments
 (0)