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:
parent
1c0a167a1d
commit
6f7c1f340f
4 changed files with 72 additions and 1 deletions
16
contrib/build_rpm.sh
Executable file
16
contrib/build_rpm.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue