summaryrefslogtreecommitdiff
path: root/contrib/build_rpm.sh
blob: a9db029dfd057f4c0df702677da54b0a493be337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
set -euxo pipefail

# returned path can vary: /usr/bin/dnf /bin/dnf ...
pkg_manager=$(command -v dnf yum | head -n1)
echo "Package manager binary: $pkg_manager"


if [[ $pkg_manager == *yum ]]; then
    echo "[virt7-container]
name=virt7-container
baseurl=https://buildlogs.centos.org/centos/7/virt/x86_64/container/
enabled=1
gpgcheck=0" > /etc/yum.repos.d/container_virt.repo
    echo "[paas_openshift_origin311]
name=paas_openshift_origin311
# Use this if you need the newest *-testing packages
# baseurl=https://buildlogs.centos.org/centos/7/paas/x86_64/openshift-origin311/
baseurl=http://mirror.centos.org/centos/7/paas/x86_64/openshift-origin311/
enabled=1
gpgcheck=0" > /etc/yum.repos.d/paas_openshift_origin311.repo
fi

declare -a PKGS=(\
                createrepo \
                device-mapper-devel \
                git \
                glib2-devel \
                glibc-static \
                go-compilers-golang-compiler \
                golang \
                gpgme-devel \
                libassuan-devel \
                libseccomp-devel \
                libselinux-devel \
                make \
                redhat-rpm-config \
                rpm-build \
                rpmdevtools \
                systemd-devel \
                )

if [[ $pkg_manager == *dnf ]]; then
    # We need to enable PowerTools if we want to get
    # install all the pkgs we define in PKGS
    # PowerTools exists on centos-8 but not on fedora-30 and rhel-8
    if (dnf -v -C repolist all|grep "Repo-id      : PowerTools" >/dev/null); then
        sudo dnf config-manager --set-enabled PowerTools
    fi

    PKGS+=(python3-devel \
        python3-varlink \
        )
fi

# Package name on fedora 30 is golang-github-cpuguy83-go-md2man
if (grep -i 'Fedora' /etc/redhat-release | grep " 30" ) ; then
    PKGS+=(golang-github-cpuguy83-go-md2man \
        btrfs-progs-devel \
	)
# btrfs-progs-devel is not available in CentOS/RHEL-8
elif ! (grep -i 'Red Hat\|CentOS' /etc/redhat-release | grep " 8" ) ; then
    PKGS+=(golang-github-cpuguy83-md2man \
        btrfs-progs-devel \
        )
fi

# disable doc until go-md2man rpm becomes available
# disable debug to avoid error: Empty %files file ~/rpmbuild/BUILD/libpod-.../debugsourcefiles.list
export extra_arg="--without doc --without debug"

echo ${PKGS[*]}
sudo $pkg_manager install -y ${PKGS[*]}

# clean up src.rpm as it's been built
sudo rm -f podman-*.src.rpm

make -f .copr/Makefile
# workaround for https://github.com/containers/libpod/issues/4627
if [ -d ~/rpmbuild/BUILD ]; then
    chmod -R +w ~/rpmbuild/BUILD
fi

rpmbuild --rebuild ${extra_arg:-} podman-*.src.rpm