1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-03 23:01:48 +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

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
PKG_NAME=ansible-podman-collections
TMPINSTALLDIR=/tmp/$(PKG_NAME)-fpm-install
VERSION ?= $(shell python3 setup.py --version 2>/dev/null | sed "s/\([0-9]\+\.[0-9]\+\.[0-9]\+\).*/\1/g")
rpm:
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