summaryrefslogtreecommitdiffstats
path: root/.copr/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '.copr/Makefile')
-rw-r--r--.copr/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/.copr/Makefile b/.copr/Makefile
new file mode 100644
index 00000000000..5b097ba0ad9
--- /dev/null
+++ b/.copr/Makefile
@@ -0,0 +1,21 @@
+# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+TOP = $(realpath $(dir $(lastword $(MAKEFILE_LIST))))
+
+# Version
+VESPA_VERSION := $(shell git tag --points-at HEAD | grep -oP "\d+\.\d+\.\d+" | sort -V | tail -1)
+
+RPMTOPDIR := $(HOME)/rpmbuild
+SOURCEDIR := $(RPMTOPDIR)/SOURCES
+SPECDIR := $(RPMTOPDIR)/SPECS
+SPECFILE := $(SPECDIR)/vespa-$(VESPA_VERSION).spec
+
+srpm:
+ dnf install -y rpmdevtools
+ $(TOP)/../dist.sh $(VESPA_VERSION)
+ spectool -g -C $(SOURCEDIR) $(SPECFILE)
+ rpmbuild -bs --define "_topdir $(RPMTOPDIR)" $(SPECFILE)
+ cp -a $(RPMTOPDIR)/SRPMS/* $(outdir)
+clean:
+ -rm -rf $(RPMTOPDIR)
+
+.PHONY: srpm clean