# Makefile for source rpm: python-bcrypt NAME := python-bcrypt SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ../../../common ../../../../common ; do if [ -f $$d/trunk/Makefile.common ] ; then if [ -f $$d/trunk/.svn -a -w $$/Makefile.common ] ; then cd $$d/trunk ; svn update --quiet ; fi ; echo "$$d/trunk/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) # Needs python ≥ 3.6, will use system version of python-bcrypt from Fedora 37 # Fails to build in Fedora 26 and Fedora 27 # Version 4.x and above require rust, so I'm not going there on older distributions DIST_REGEX = '^(fc2[8-9]|fc3[0-6]|rhel[7-9])' include $(MAKEFILE_COMMON)