chiark / gitweb /
Various changes to get makebuildserver to work with a 64 bit base box
[fdroidserver.git] / buildserver / cookbooks / fdroidbuild-general / recipes / default.rb
1
2 user = node[:settings][:user]
3 debian_mirror = node[:settings][:debian_mirror]
4
5 execute 'set_debian_mirror' do
6   command "sed -i 's,http://ftp.uk.debian.org/debian/,#{debian_mirror},g' /etc/apt/sources.list"
7 end
8
9 execute "jessie_backports" do
10   command "echo 'deb #{debian_mirror} jessie-backports main' > /etc/apt/sources.list.d/backports.list"
11   only_if "grep jessie /etc/apt/sources.list"
12 end
13
14 if node['kernel']['machine'] == "x86_64"
15   execute "archi386" do
16     command "dpkg --add-architecture i386"
17   end
18 end
19
20 execute "apt-get-update" do
21   command "apt-get update"
22 end
23
24 %w{
25     ant
26     ant-contrib
27     autoconf
28     autoconf2.13
29     automake1.11
30     autopoint
31     bison
32     bzr
33     cmake
34     curl
35     expect
36     faketime
37     flex
38     gettext
39     git-core
40     git-svn
41     gperf
42     graphviz
43     imagemagick
44     inkscape
45     javacc
46     libarchive-zip-perl
47     libexpat1-dev
48     libglib2.0-dev
49     liblzma-dev
50     librsvg2-bin
51     libsaxonb-java
52     libssl-dev
53     libssl1.0.0
54     libtool
55     libtool-bin
56     make
57     maven
58   }.each do |pkg|
59   package pkg do
60     action :install
61   end
62 end
63
64 %w{
65     mercurial
66     nasm
67     openjdk-8-jdk-headless
68     optipng
69     p7zip
70     pandoc
71     perlmagick
72     pkg-config
73     python-gnupg
74     python-magic
75     python-setuptools
76     python3-gnupg
77     python3-requests
78     python3-yaml
79     qt5-default
80     qtbase5-dev
81     quilt
82     realpath
83     scons
84     subversion
85     swig
86     texinfo
87     transfig
88     unzip
89     vorbis-tools
90     xsltproc
91     yasm
92     zip
93   }.each do |pkg|
94   package pkg do
95     action :install
96   end
97 end
98
99 if node['kernel']['machine'] == "x86_64"
100   %w{libstdc++6:i386 libgcc1:i386 zlib1g:i386 libncurses5:i386}.each do |pkg|
101     package pkg do
102       action :install
103     end
104   end
105 end
106
107 easy_install_package "compare-locales" do
108   options "-U"
109   action :install
110 end
111
112 if node['kernel']['machine'] == "x86_64"
113   execute "set-default-java" do
114     command "update-java-alternatives --set java-1.8.0-openjdk-amd64"
115   end
116 else
117   execute "set-default-java" do
118     command "update-java-alternatives --set java-1.8.0-openjdk-i386"
119   end
120 end
121
122 # Ubuntu trusty 14.04's paramiko does not work with jessie's openssh's default settings
123 # https://stackoverflow.com/questions/7286929/paramiko-incompatible-ssh-peer-no-acceptable-kex-algorithm/32691055#32691055
124 execute "support-ubuntu-trusty-paramiko" do
125   only_if { node[:settings][:ubuntu_trusty] == 'true' }
126   command "echo Ciphers aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes128-ctr >> /etc/ssh/sshd_config"
127   command "echo MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,hmac-sha1 >> /etc/ssh/sshd_config"
128   command "echo KexAlgorithms diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1 >> /etc/ssh/sshd_config"
129 end