blob: 4449c6fd46ab303fd1941390e4a625d150abb14a (
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
|
PACKAGE = desktop-common-data
NAME = desktop-common-data
VERSION:=$(shell rpm -q --qf '%{VERSION}\n' --specfile $(PACKAGE).spec | head -1)
RELEASE:=$(shell rpm -q --qf '%{RELEASE}\n' --specfile $(PACKAGE).spec | head -1| sed -e 's/%mkrel \(.*\)/\1mdk/g')
TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
mandir=/usr/share/man
SVNROOT = svn+ssh://svn.mandriva.com/svn/soft/$(PACKAGE)
clean:
find . -type d -name '.xvpics' -o -name '*~' |xargs rm -rf
# rules to build a test rpm
localrpm: localdist buildrpm
localdist: cleandist dir localcopy tar
cleandist:
rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2
dir:
mkdir $(PACKAGE)-$(VERSION)
localcopy:
find . -not -name "$(PACKAGE)-$(VERSION)"|cpio -pd $(PACKAGE)-$(VERSION)/
find $(PACKAGE)-$(VERSION) -type d -name CVS -o -name .cvsignore -name '*~' |xargs rm -rf
tar:
tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION)
bzip2 -9vf $(PACKAGE)-$(VERSION).tar
rm -rf $(PACKAGE)-$(VERSION)
buildrpm:
rpm -ta $(PACKAGE)-$(VERSION).tar.bz2
# rules to build a distributable rpm
rpm: changelog svntag dist buildrpm
dist: cleandist dir export tar
export:
svn export $(SVNROOT)/tags/$(TAG) $(PACKAGE)-$(VERSION)
svntag:
svn copy $(SVNROOT)/trunk $(SVNROOT)/tags/$(TAG) -m "$(TAG)"
changelog: ../common/username
#svn2cl is available in our contrib.
svn2cl --authors ../common/username.xml --accum
rm -f ChangeLog.bak
svn commit -m "Generated by svn2cl the `date '+%c'`" ChangeLog
|