Revision 3d761f162de379c30f3a8f581a63b789657cbb18 authored by David Douard on 13 February 2019, 13:25:58 UTC, committed by David Douard on 13 February 2019, 13:25:58 UTC
1 parent 7e3f2fc
Raw File
rules
#!/usr/bin/make -f

export PYBUILD_NAME=swh.scheduler
export PYBUILD_TEST_ARGS=-m 'not db and not fs'

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_install:
	dh_install
	rm -v $(CURDIR)/debian/python3-*/usr/lib/python*/dist-packages/swh/__init__.py
	rm -rf $(CURDIR)/debian/python3-*/usr/lib/python*/dist-packages/.hypothesis

	for pyvers in $(shell py3versions -vr); do \
		mkdir -p $(CURDIR)/debian/python3-swh.scheduler.updater/usr/lib/python$$pyvers/dist-packages/swh/scheduler/updater/ ; \
		mv $(CURDIR)/debian/python3-swh.scheduler/usr/lib/python$$pyvers/dist-packages/swh/scheduler/updater/ \
		   $(CURDIR)/debian/python3-swh.scheduler.updater/usr/lib/python$$pyvers/dist-packages/swh/scheduler/ ; \
		mkdir -p $(CURDIR)/debian/python3-swh.scheduler.updater/usr/lib/python$$pyvers/dist-packages/swh/scheduler/updater/tests/ ; \
		mv $(CURDIR)/debian/python3-swh.scheduler/usr/lib/python$$pyvers/dist-packages/swh/scheduler/tests/updater/ \
		   $(CURDIR)/debian/python3-swh.scheduler.updater/usr/lib/python$$pyvers/dist-packages/swh/scheduler/updater/tests/ ; \
	done
back to top