summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9ced6fa0f9dd987520d653f0221f09ad3887a111 (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
include /usr/share/dpkg/pkg-info.mk

PACKAGE=libpve-network-perl

BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)

DEBS=\
      $(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb \
      libpve-network-api-perl_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb \

DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc

all: deb

.PHONY: tidy
tidy:
	git ls-files ':*.p[ml]'| xargs -n4 -P0 proxmox-perltidy

.PHONY: dinstall
dinstall: deb
	dpkg -i $(DEBS)

$(BUILDDIR): src debian
	rm -rf $@ $@.tmp
	cp -a src $@.tmp
	cp -a debian $@.tmp/
	echo "git clone git://git.proxmox.com/git/pve-network.git\\ngit checkout $(shell git rev-parse HEAD)" > $@.tmp/debian/SOURCE
	mv $@.tmp $@

.PHONY: deb
deb: $(DEBS)
$(DEBS) &: $(BUILDDIR)
	cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
	lintian $(DEBS)

.PHONY: dsc
dsc: clean
	$(MAKE) $(DSC)
	lintian $(DSC)

$(DSC): $(BUILDDIR)
	cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d

sbuild: $(DSC)
	sbuild $(DSC)

.PHONY: clean distclean
distclean: clean
clean:
	rm -rf *~ *.deb *.changes $(PACKAGE)-[0-9]*/ $(PACKAGE)*.tar* *.build *.buildinfo *.dsc

.PHONY: upload
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
upload: $(DEBS)
	tar cf - $(DEBS)|ssh -X repoman@repo.proxmox.com -- upload --product pve --dist $(UPLOAD_DIST)