swh:1:snp:634d2b8906a7a2f6511ccb358da84e19b290d2c9
Raw File
Tip revision: af5364b0dc2b5bce2386cd849b0e1903f84d08b4 authored by Valentin Lorentz on 04 March 2021, 19:33:35 UTC
.travis.yml: Disable optional dependencies on py3.6, python-cryptography no longer supports it.
Tip revision: af5364b
Makefile
PYTHON=`which python3`
DESTDIR=/
PROJECT=limnoria

all:
	@echo "make source - Create source package"
	@echo "make install - Install on local system"
	@echo "make buildrpm - Generate a rpm package"
	@echo "make builddeb_py2 - Generate a deb package for Python 2"
	@echo "make builddeb_py3 - Generate a deb package for Python 3"
	@echo "make clean - Get rid of scratch and byte files"

test:
	PATH=./scripts/:${PATH} PYTHONPATH=. $(PYTHON) ./scripts/supybot-test test --plugins-dir=plugins/

source:
	$(PYTHON) setup.py sdist $(COMPILE)

install:
	$(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)

buildrpm:
	$(PYTHON) setup.py bdist_rpm

builddeb_py2:
	cp debian/control.py2 debian/control
	debuild -us -uc
	rm debian/control

builddeb_py3:
	cp debian/control.py3 debian/control
	debuild -us -uc
	rm debian/control

clean:
	$(PYTHON) setup.py clean
	$(MAKE) -f $(CURDIR)/debian/rules clean
	rm -rf build/ MANIFEST
	find . -name '*.pyc' -delete
	rm debian/control

.PHONY: test
back to top