Here's a bash_completion file for composer-cli! It completes known
commands, subcommands, and flags, plus arguments to flags that take
arguments, and if you've got write access to the socket it'll also
autocomplete:
* source names for commands that need source names
* blueprint names for commands that take blueprint names
* compose uuids for commands that take compose uuids
  * intelligently only suggests appropriate uuids - e.g. only
    suggests uuids of running composes for "compose cancel"
NOTE: bash completion scripts are horrible and this is no exception.
Please forgive me.
		
	
			
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PYTHON ?= /usr/bin/python3
 | 
						|
DESTDIR ?= /
 | 
						|
 | 
						|
PKGNAME = lorax
 | 
						|
VERSION = $(shell awk '/Version:/ { print $$2 }' $(PKGNAME).spec)
 | 
						|
RELEASE = $(shell awk '/Release:/ { print $$2 }' $(PKGNAME).spec | sed -e 's|%.*$$||g')
 | 
						|
TAG = lorax-$(VERSION)-$(RELEASE)
 | 
						|
 | 
						|
 | 
						|
default: all
 | 
						|
 | 
						|
src/composer/version.py: lorax.spec
 | 
						|
	echo "num = '$(VERSION)-$(RELEASE)'" > src/composer/version.py
 | 
						|
 | 
						|
src/pylorax/version.py: lorax.spec
 | 
						|
	echo "num = '$(VERSION)-$(RELEASE)'" > src/pylorax/version.py
 | 
						|
 | 
						|
all: src/pylorax/version.py src/composer/version.py
 | 
						|
	$(PYTHON) setup.py build
 | 
						|
 | 
						|
install: all
 | 
						|
	$(PYTHON) setup.py install --root=$(DESTDIR)
 | 
						|
	mkdir -p $(DESTDIR)/$(mandir)/man1
 | 
						|
	install -m 644 docs/man/lorax.1 $(DESTDIR)/$(mandir)/man1
 | 
						|
	install -m 644 docs/man/livemedia-creator.1 $(DESTDIR)/$(mandir)/man1
 | 
						|
	mkdir -p $(DESTDIR)/etc/bash_completion.d
 | 
						|
	install -m 644 etc/bash_completion.d/composer-cli $(DESTDIR)/etc/bash_completion.d
 | 
						|
 | 
						|
check:
 | 
						|
	@echo "*** Running pylint ***"
 | 
						|
	PYTHONPATH=$(PYTHONPATH):./src/ ./tests/pylint/runpylint.py
 | 
						|
 | 
						|
test:
 | 
						|
	@echo "*** Running tests ***"
 | 
						|
	PYTHONPATH=$(PYTHONPATH):./src/ $(PYTHON) -m nose -v --with-coverage --cover-erase --cover-branches \
 | 
						|
					--cover-package=pylorax --cover-inclusive \
 | 
						|
					./tests/pylorax/ ./tests/composer/
 | 
						|
 | 
						|
	coverage3 report -m
 | 
						|
	[ -f "/usr/bin/coveralls" ] && [ -n "$(COVERALLS_REPO_TOKEN)" ] && coveralls || echo
 | 
						|
 | 
						|
 | 
						|
clean:
 | 
						|
	-rm -rf build src/pylorax/version.py
 | 
						|
	-rm -rf build src/composer/version.py
 | 
						|
 | 
						|
tag:
 | 
						|
	git tag -f $(TAG)
 | 
						|
 | 
						|
docs:
 | 
						|
	$(MAKE) -C docs apidoc html
 | 
						|
 | 
						|
archive:
 | 
						|
	@git archive --format=tar --prefix=$(PKGNAME)-$(VERSION)/ $(TAG) > $(PKGNAME)-$(VERSION).tar
 | 
						|
	@gzip $(PKGNAME)-$(VERSION).tar
 | 
						|
	@echo "The archive is in $(PKGNAME)-$(VERSION).tar.gz"
 | 
						|
 | 
						|
dist: tag archive
 | 
						|
	scp $(PKGNAME)-$(VERSION).tar.gz fedorahosted.org:lorax
 | 
						|
 | 
						|
local:
 | 
						|
	@rm -rf $(PKGNAME)-$(VERSION).tar.gz
 | 
						|
	@rm -rf /var/tmp/$(PKGNAME)-$(VERSION)
 | 
						|
	@dir=$$PWD; cp -a $$dir /var/tmp/$(PKGNAME)-$(VERSION)
 | 
						|
	@rm -rf /var/tmp/$(PKGNAME)-$(VERSION)/.git
 | 
						|
	@dir=$$PWD; cd /var/tmp; tar --gzip -cSpf $$dir/$(PKGNAME)-$(VERSION).tar.gz $(PKGNAME)-$(VERSION)
 | 
						|
	@rm -rf /var/tmp/$(PKGNAME)-$(VERSION)
 | 
						|
	@echo "The archive is in $(PKGNAME)-$(VERSION).tar.gz"
 | 
						|
 | 
						|
test-in-docker:
 | 
						|
	sudo docker build -t welder/lorax:latest -f Dockerfile.test .
 | 
						|
 | 
						|
ci: check test
 | 
						|
 | 
						|
.PHONY: docs
 |