X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=extras%2Frpm%2FMakefile;h=423c4207b020131b01f6ed9b5839a8ac0fbed5e8;hb=c17c1873a92f41ddf4fbb6680a7e8922f7f21b35;hp=1dcbb203d0fea86b906acb75ce586e928720bf24;hpb=c06eeb0e3c9c1a9fa8f913e2d785b03220bfdabd;p=vpp.git diff --git a/extras/rpm/Makefile b/extras/rpm/Makefile index 1dcbb203d0f..423c4207b02 100644 --- a/extras/rpm/Makefile +++ b/extras/rpm/Makefile @@ -11,20 +11,52 @@ # See the License for the specific language governing permissions and # limitations under the License. +ifneq ($(shell uname),Darwin) +OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') +endif TARBALL=$(shell realpath ../../build-root/vpp-latest.tar.xz) BASENAME=$(shell basename $(TARBALL) | sed -e s/.tar.\*//) VERSION=$(shell echo $(BASENAME) | cut -f2 -d-) RELEASE=$(shell echo $(BASENAME) | cut -f3- -d- | sed -e s/-/_/g) +BR=$(shell realpath $(CURDIR)/../../build-root) +RPMBUILD=$(BR)/rpmbuild +PC=% -all: +all: RPM + +# SUSE rolling-release (a.k.a. Tumbleweed) +ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID)) +SPEC_FILE='vpp-suse.spec' +# SUSE osleap15 +else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID)) +SPEC_FILE='vpp-suse.spec' +# SUSE leap42.x +else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID)) +SPEC_FILE='vpp-suse.spec' +else +SPEC_FILE='vpp.spec' +endif + +spec: @echo $(TARBALL) - mkdir -p SOURCES RPMS - cp $(TARBALL) SOURCES/vpp-latest.tar.xz + mkdir -p $(RPMBUILD)/{RPMS,SRPMS,BUILD,SOURCES,SPECS} + cp $(TARBALL) $(RPMBUILD)/SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz + cp $(SPEC_FILE) $(RPMBUILD)/SPECS + +srpm: spec + rpmbuild -bs \ + --define "_topdir $(RPMBUILD)" \ + --define "_version $(VERSION)" \ + --define "_release $(RELEASE)" \ + $(RPMBUILD)/SPECS/$(SPEC_FILE) + mv $$(find $(RPMBUILD)/SRPMS -name \*.src.rpm -type f) $(BR) + +RPM: spec rpmbuild -bb \ - --define "_topdir $(PWD)" \ + --define "_topdir $(RPMBUILD)" \ --define "_version $(VERSION)" \ --define "_release $(RELEASE)" \ - vpp.spec - mv $$(find RPMS -name \*.rpm -type f) . + $(RPMBUILD)/SPECS/$(SPEC_FILE) + mv $$(find $(RPMBUILD)/RPMS -name \*.rpm -type f) $(BR)