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:
parent
1c0a167a1d
commit
6f7c1f340f
4 changed files with 72 additions and 1 deletions
15
Makefile
Normal file
15
Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue