major refactoring of koji daemons
- move TaskManager, SCM, and a couple helper functions to koji.daemon - move generic TaskHandler classes to koji.tasks - remove use of globals in kojid and kojira - fix a few issues revealed by pylint
This commit is contained in:
parent
8d6ba17952
commit
419a1dafe4
9 changed files with 1815 additions and 2061 deletions
|
|
@ -1,15 +1,12 @@
|
|||
|
||||
SUBDIRS = lib
|
||||
BINFILES = kojid
|
||||
LIBEXECFILES = mergerepos
|
||||
PYFILES = $(wildcard *.py)
|
||||
|
||||
_default:
|
||||
@echo "nothing to make. try make install"
|
||||
|
||||
clean:
|
||||
rm -f *.o *.so *.pyc *~
|
||||
for d in $(SUBDIRS); do make -s -C $$d clean; done
|
||||
|
||||
|
||||
install:
|
||||
|
|
@ -35,6 +32,4 @@ install:
|
|||
mkdir -p $(DESTDIR)/etc/kojid
|
||||
install -p -m 644 kojid.conf $(DESTDIR)/etc/kojid/kojid.conf
|
||||
|
||||
for d in $(SUBDIRS); do make DESTDIR=`cd $(DESTDIR); pwd` \
|
||||
-C $$d install; [ $$? = 0 ] || exit 1; done
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue