forked from candlepin/rho
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
81 lines (62 loc) · 2.11 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
DATE = $(shell date)
PYTHON = /usr/bin/python
MESSAGESPOT=po/rho.pot
TOPDIR = $(shell pwd)
DIRS = test bin locale src
PYDIRS = src/rho bin
#MANPAGES = funcd func func-inventory func-transmit func-build-map func-create-module
all: build
versionfile:
echo "version:" $(VERSION) > etc/version
echo "release:" $(RELEASE) >> etc/version
echo "source build date:" $(DATE) >> etc/version
echo "git commit:" $(shell git log -n 1 --pretty="format:%H") >> etc/version
echo "git date:" $(shell git log -n 1 --pretty="format:%cd") >> etc/version
# echo $(shell git log -n 1 --pretty="format:git commit: %H from \(%cd\)") >> etc/version
#manpage:
# for manpage in $(MANPAGES); do (pod2man --center=$$manpage --release="" ./docs/$$manpage.pod | gzip -c > ./docs/$$manpage.1.gz); done
build: clean versionfile
$(PYTHON) setup.py build -f
clean:
-rm -f MANIFEST
-rm -rf dist/ build/
-rm -rf *~
-rm -rf rpm-build/
-rm -rf docs/*.gz
-rm -f etc/version
# -for d in $(DIRS); do ($(MAKE) -C $$d clean ); done
confclean:
-rm -rf ~/.rho.conf
# this is slightly nuts,we keep "versioned" copies of the conf file, just in case
confbackup:
-cp ~/.rho.conf ./.rho.conf-backup/rho.conf-backup-`date +"%s"`
# pop the latest stored
confrestore:
-mv ./.rho.conf-backup/`ls -t ./.rho.conf-backup/ | head -1` ~/.rho.conf
install: build
$(PYTHON) setup.py install -f
install_rpm:
-rpm -Uvh rpm-build/func-$(VERSION)-$(RELEASE)$(shell rpm -E "%{?dist}").noarch.rpm
clean_rpms:
-rpm -e rho
tests:
-nosetests -d -v -a '!slow'
sdist: messages
$(PYTHON) setup.py sdist
pychecker:
-for d in $(PYDIRS); do ($(MAKE) -C $$d pychecker ); done
pyflakes:
-for d in $(PYDIRS); do ($(MAKE) -C $$d pyflakes ); done
money: clean
-sloccount --addlang "makefile" $(TOPDIR) $(PYDIRS)
rpms: build sdist
mkdir -p rpm-build
cp dist/*.gz rpm-build/
rpmbuild --define "_topdir %(pwd)/rpm-build" \
--define "_builddir %{_topdir}" \
--define "_rpmdir %{_topdir}" \
--define "_srcrpmdir %{_topdir}" \
--define '_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm' \
--define "_specdir %{_topdir}" \
--define "_sourcedir %{_topdir}" \
-ba func.spec