1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

Add RPM building scripts (#255)

This commit is contained in:
Sergey 2021-05-13 14:09:16 +03:00 committed by GitHub
parent 1c0a167a1d
commit 6f7c1f340f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 72 additions and 1 deletions

16
contrib/build_rpm.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh
export PKG_NAME=ansible-podman-collections
export TMPINSTALLDIR=/tmp/${PKG_NAME}-fpm-install
export VERSION=$(python3 setup.py --version 2>/dev/null | sed "s/\([0-9]\+\.[0-9]\+\.[0-9]\+\).*/\1/g")
rm -rf "${TMPINSTALLDIR}"
mkdir -p ~/rpmbuild/SOURCES/
mkdir -p "${TMPINSTALLDIR}/${PKG_NAME}-${VERSION}"
cp -r * ${TMPINSTALLDIR}/${PKG_NAME}-${VERSION}/
tar -zcvf ~/rpmbuild/SOURCES/${VERSION}.tar.gz -C ${TMPINSTALLDIR} ${PKG_NAME}-${VERSION}
cp ansible-collection-containers-podman.spec ansible-collection-containers-podman-build.spec
sed -i "s/Version:.*/Version: ${VERSION}/g" ansible-collection-containers-podman-build.spec
sed -i "s/Release:.*/Release: 999%{?dist}/g" ansible-collection-containers-podman-build.spec
sed -i "s/^version: .*/version: ${VERSION}/" ${TMPINSTALLDIR}/${PKG_NAME}-${VERSION}/galaxy.yml
rpmbuild -bb ansible-collection-containers-podman-build.spec