blob: bbc89fce8a781966c1d935ac11b4b2914bc8ca8f (
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
|
NAME=iurt
PACKAGE=$(NAME)
VERSION := $(shell rpm -q --qf '%{version}\n' --specfile $(NAME).spec | head -1)
RELEASE := $(shell rpm -q --qf '%{release}\n' --specfile $(NAME).spec | head -1)
RELTAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
FILES= Makefile emi iurt iurt.spec iurt2 iurt_root_command lib ulri
RPM=$(HOME)/rpm
VENDORLIB = $(shell eval "`perl -V:installvendorlib`"; echo $$installvendorlib)
INSTALLVENDORLIB = $(DESTDIR)$(VENDORLIB)
SVNSOFT=svn+ssh://svn.mandriva.com/svn/soft/build_system/iurt/trunk/
SVNPACKAGE=svn+ssh://svn.mandriva.com/svn/packages/cooker/iurt/current/
sharedir=/usr/share
libdir=/usr/lib
bindir=/usr/bin
sbindir=/usr/sbin
localrpm: dir localcopy tar
install:
install -d $(bindir) $(sbindir) $(INSTALLVENDORLIB)/Iurt
install -m 644 lib/Iurt/*.pm $(INSTALLVENDORLIB)/Iurt
install -m755 iurt_root_command $(sbindir)/
install -m755 iurt2 $(bindir)/iurt
install -m755 emi ulri $(bindir)/
dir:
mkdir $(PACKAGE)-$(VERSION)
tar: dir localcopy
tar cvf $(PACKAGE).tar $(PACKAGE)-$(VERSION)
rm -rf $(PACKAGE)-$(VERSION)
localcopy:
tar c --exclude=.svn $(FILES) | tar x -C $(PACKAGE)-$(VERSION)
localrpm: tar $(RPM)
cp -f $(NAME).tar $(RPM)/SOURCES
-rpm -ba --clean $(NAME).spec
rm -f $(NAME).tar
ci: tar
svn ci -m 'Update soft SPEC for version $(VERSION)' $(NAME).spec
# not a good idea
# svn rm -m 'Remove previously copied spec to replace it for $(VERSION)' $(SVNPACKAGE)/SPECS/$(NAME).spec
# svn cp -m 'Update package SPEC for version $(VERSION)' $(SVNSOFT)/$(NAME).spec $(SVNPACKAGE)/SPECS/
mkdir svn; cd svn; mdvsys co $(NAME)
cp $(NAME).spec svn/$(NAME)/SPECS/
cp $(NAME).tar svn/$(NAME)/SOURCES/
cd svn/$(NAME)/; mdvsys ci -m 'update tarball and spec for version $(VERSION)'
rpm: clean ci
cd svn/$(NAME); bm
clean:
rm -rf svn
submit: clean ci
mdvsys submit $(NAME)
|