summaryrefslogtreecommitdiff
path: root/makefile
blob: 22fc2267c09516ef63ab350d1e98a446f77fbe50 (plain)
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
# This program is free software; you can redistribute it and/or modify
# it under the terms of the (LGPL) GNU Lesser General Public License as
# published by the Free Software Foundation; either version 3 of the 
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Library Lesser General Public License for more details at
# ( http://www.gnu.org/licenses/lgpl.html ).
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# written by: Jeff Ortel ( jortel@redhat.com )
#

PKG = python-suds
SPEC = $(PKG).spec
SETUP = setup.py
DOCTAR = suds-docs.tar.gz
FEDORAPEOPLE = jortel@fedorapeople.org
BUILDROOT = ~/rpmbuild

all : rpm docs

dist : clean
	mkdir dist
	./sdist
	./sdist python

rpm : dist
	cp dist/$(PKG)*.gz $(BUILDROOT)/SOURCES
	rpmbuild -ba $(SPEC)
	cp $(BUILDROOT)/RPMS/noarch/$(PKG)*.rpm dist
	cp $(BUILDROOT)/SRPMS/$(PKG)*.rpm dist
	rpmlint -i dist/$(PKG)*.rpm

release : rpm rdocs
	scp dist/python*.tar.gz fedorahosted.org:suds
	scp dist/python*.rpm fedorahosted.org:suds

register :
	python setup.py sdist bdist_egg register upload

rdocs : docs
	scp /tmp/$(DOCTAR) $(FEDORAPEOPLE):
	ssh $(FEDORAPEOPLE) 'cd public_html/suds; rm -rf doc; tar xmzvf ~/$(DOCTAR)'

docs :
	rm -rf doc
	rm -f /tmp/$(DOCTAR)
	epydoc -vo doc `find suds -name "*.py"`
	tar czvf /tmp/$(DOCTAR) doc

pdf :
	epydoc -vo doc --pdf `find suds -name \*.py`
	mv doc/api.pdf doc/sudsapi.pdf

clean :
	rm -rf dist
	rm -rf build
	rm -rf doc
	rm -rf *.egg-info
	rm -rf $(BUILDROOT)/BUILD/$(PKG)*
	rm -rf $(BUILDROOT)/RPMS/noarch/$(PKG)*
	rm -rf $(BUILDROOT)/SOURCES/$(PKG)*
	rm -rf $(BUILDROOT)/SRPMS/$(PKG)*
	find . -name "*.pyc" -exec rm -f {} \;
	find . -name "*~" -exec rm -f {} \;

.PHONY : clean register docs pdf