fixed rhel branch detection and tag creation
[oweals/hwdata.git] / Makefile
1 NAME=hwdata
2 VERSION=$(shell awk '/Version:/ { print $$2 }' hwdata.spec)
3 RELEASE=$(shell rpm -q --define 'dist %{nil}' --specfile --qf "%{release}" hwdata.spec)
4 ifeq ($(shell git rev-parse --abbrev-ref HEAD | sed -n 's/^\([^0-9-]\+\).*/\L\1/p'), rhel)
5     # add revision to tag name for rhel branches
6     TAGNAME := $(NAME)-$(VERSION)-$(RELEASE)
7 else
8     TAGNAME := $(NAME)-$(VERSION)
9 endif
10 SOURCEDIR := $(shell pwd)
11 ARCHIVE := $(TAGNAME).tar.bz2
12
13 CVSROOT = $(shell cat CVS/Root 2>/dev/null || :)
14
15 CVSTAG = $(NAME)-r$(subst .,-,$(VERSION))
16
17 FILES = pci.ids usb.ids oui.txt iab.txt pnp.ids
18
19 .PHONY: all install tag force-tag check commit create-archive archive srpm-x \
20     clean clog new-pci-ids new-usb-ids new-oui new-iab new-pnp-ids
21
22 include Makefile.inc
23
24 all:
25
26 Makefile.inc: configure
27         ./configure
28         @echo "$@ generated. Run the make again."
29         @exit 1
30
31 install: Makefile.inc
32         mkdir -p -m 755 $(DESTDIR)$(datadir)/$(NAME)
33         for foo in $(FILES) ; do \
34                 install -m 644 $$foo $(DESTDIR)$(datadir)/$(NAME) ;\
35         done
36         mkdir -p -m 755 $(DESTDIR)$(libdir)/modprobe.d
37         install -m 644 -T blacklist.conf $(DESTDIR)$(libdir)/modprobe.d/dist-blacklist.conf
38
39 commit:
40         git commit -a ||:
41
42 tag:
43         @git tag -s -m "Tag as $(TAGNAME)" $(TAGNAME)
44         @echo "Tagged as $(TAGNAME)"
45
46 force-tag:
47         @git tag -s -f $(TAGNAME)
48         @echo "Tag forced as $(TAGNAME)"
49
50 changelog:
51         @rm -f ChangeLog
52         @(GIT_DIR=.git git log > .changelog.tmp && mv .changelog.tmp ChangeLog || rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
53
54 check:
55         @[ -x /sbin/lspci ] && /sbin/lspci -i pci.ids > /dev/null || { echo "FAILURE: /sbin/lspci -i pci.ids"; exit 1; } && echo "OK: /sbin/lspci -i pci.ids"
56         @./check-pci-ids.py || { echo "FAILURE: ./check-pci-ids.py"; exit 1; } && echo "OK: ./check-pci-ids.py"
57         @echo -n "CHECK date of pci.ids: "; grep "Date:" pci.ids | cut -d ' ' -f 5
58         @echo -n "CHECK date of usb.ids: "; grep "Date:" usb.ids | cut -d ' ' -f 6
59
60 create-archive:
61         @rm -rf $(TAGNAME) $(TAGNAME).tar*  2>/dev/null
62         @make changelog
63         @git archive --format=tar --prefix=$(TAGNAME)/ HEAD > $(TAGNAME).tar
64         @mkdir $(TAGNAME)
65         @cp ChangeLog $(TAGNAME)/
66         @tar --append -f $(TAGNAME).tar $(TAGNAME)
67         @bzip2 -f $(TAGNAME).tar
68         @rm -rf $(TAGNAME)
69         @echo ""
70         @echo "The final archive is in $(ARCHIVE)"
71
72 archive: check clean commit tag create-archive
73
74 upload:
75         @scp $(ARCHIVE) fedorahosted.org:$(NAME)
76
77 dummy:
78
79 srpm-x: create-archive
80         @echo Creating $(NAME) src.rpm
81         @rpmbuild --nodeps -bs --define "_sourcedir $(SOURCEDIR)" --define "_srcrpmdir $(SOURCEDIR)" $(NAME).spec
82         @echo SRPM is: $(NAME)-$(VERSION)-$(RELEASE).src.rpm
83
84 clean:
85         @rm -f $(NAME)-*.gz $(NAME)-*.src.rpm new-pnp.xlsx pnp.ids.txt
86
87 clog: hwdata.spec
88         @sed -n '/^%changelog/,/^$$/{/^%/d;/^$$/d;s/%%/%/g;p}' $< | tee $@
89
90 download: new-usb-ids new-pci-ids new-oui new-iab new-pnp-ids
91
92 new-usb-ids:
93         @curl -O http://www.linux-usb.org/usb.ids
94
95 new-pci-ids:
96         @curl -O http://pciids.sourceforge.net/pci.ids
97
98 new-oui:
99         @curl -O http://standards.ieee.org/develop/regauth/oui/oui.txt
100
101 new-iab:
102         @curl -O http://standards.ieee.org/develop/regauth/iab/iab.txt
103
104 new-pnp-ids: pnp.ids
105
106 pnp.ids: pnp.ids.txt pnp.ids.patch
107         patch -o $@ <pnp.ids.patch
108
109 pnp.ids.txt: new-pnp.xlsx
110         @unoconv --stdout -f csv $? | \
111             tr ' ' ' ' | \
112             sed -n \
113                 -e 's/^\s*"\s*\(.*\)\s*"/\1/' \
114                 -e 's/\s\{2,\}/ /g' \
115                 -e 's/\s*(used as 2nd pnpid)\s*//' \
116                 -e 's:^\(.*\)\s*,\s*\([a-zA-Z@]\{3\}\)\s*,\s*\([0-9]\+/[0-9]\+/[0-9]\+\):\2\t\1:p' | \
117             sed 's/\s*$$//' | sort -u >$@
118
119 new-pnp.xlsx:
120         @curl -o $@ \
121             http://download.microsoft.com/download/7/E/7/7E7662CF-CBEA-470B-A97E-CE7CE0D98DC2/ISA_PNPID_List.xlsx