test_spec: LTD: MatchAction Performance testing
[vswitchperf.git] / systems / fedora / 20 / build_base_machine.sh
1 #!/bin/bash
2 #
3 # Build a base machine for Fedora distro
4 #
5 # Copyright 2015 OPNFV, Intel Corporation.
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Contributors:
20 #   Aihua Li, Huawei Technologies.
21 #   Martin Klozik, Intel Corporation.
22 #   Abdul Halim, Intel Corporation.
23
24 yum -y install $(echo "
25 # Make and Compilers
26 make
27 automake
28 gcc
29 gcc-c++
30 libxml2
31 glibc
32 glib2-devel
33 kernel-devel
34 fuse-libs
35 fuse
36 fuse-devel
37
38 # tools
39 curl
40 autoconf
41 libtool
42 libpcap-devel
43 libnet
44 vim
45 wget
46 git
47 pciutils
48 cifs-utils
49 socat
50
51 # install python packages
52 python3
53 python3-virtualenv
54 python3-setuptools
55 python3-pip
56 python3-dbus
57 python3-devel
58 python3-tkinter
59 systemd-python3
60 python3-libs
61 libreport-python3
62 abrt-python3
63 abrt-addon-python3
64
65 # install git-review tool
66 git-review
67 " | grep -v ^#)