mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-03 23:01:48 +00:00
16 lines
903 B
Bash
Executable file
16 lines
903 B
Bash
Executable file
#!/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
|