mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-07 10:56:49 +00:00
Makefile: add jaunty support, rearrange debian sections in order of release
This commit is contained in:
parent
2c5aa12151
commit
2100aef655
48
Makefile
48
Makefile
@ -292,19 +292,22 @@ show-pp:
|
||||
@echo $(PP)
|
||||
|
||||
.PHONY: setup-deb deb-ARCH is-known-debian-arch
|
||||
.PHONY: deb-etch deb-sid
|
||||
.PHONY: deb-edgy deb-feisty deb-gutsy deb-hardy deb-intrepid deb-lenny
|
||||
.PHONY: deb-etch deb-lenny deb-sid
|
||||
.PHONY: deb-edgy deb-feisty deb-gutsy deb-hardy deb-intrepid deb-jaunty
|
||||
|
||||
deb-sid:
|
||||
$(MAKE) deb-ARCH ARCH=sid
|
||||
deb-feisty:
|
||||
$(MAKE) deb-ARCH ARCH=feisty
|
||||
# edgy uses the feisty control files for now
|
||||
deb-edgy:
|
||||
$(MAKE) deb-ARCH ARCH=edgy TAHOE_ARCH=feisty
|
||||
# etch uses the feisty control files for now
|
||||
deb-etch:
|
||||
$(MAKE) deb-ARCH ARCH=etch TAHOE_ARCH=feisty
|
||||
deb-lenny:
|
||||
$(MAKE) deb-ARCH ARCH=lenny TAHOE_ARCH=feisty
|
||||
deb-sid:
|
||||
$(MAKE) deb-ARCH ARCH=sid
|
||||
|
||||
# edgy uses the feisty control files for now
|
||||
deb-edgy:
|
||||
$(MAKE) deb-ARCH ARCH=edgy TAHOE_ARCH=feisty
|
||||
deb-feisty:
|
||||
$(MAKE) deb-ARCH ARCH=feisty
|
||||
# same with gutsy, the process has been nicely stable for a while now
|
||||
deb-gutsy:
|
||||
$(MAKE) deb-ARCH ARCH=gutsy TAHOE_ARCH=feisty
|
||||
@ -312,13 +315,13 @@ deb-hardy:
|
||||
$(MAKE) deb-ARCH ARCH=hardy TAHOE_ARCH=feisty
|
||||
deb-intrepid:
|
||||
$(MAKE) deb-ARCH ARCH=intrepid TAHOE_ARCH=feisty
|
||||
deb-lenny:
|
||||
$(MAKE) deb-ARCH ARCH=lenny TAHOE_ARCH=feisty
|
||||
deb-jaunty:
|
||||
$(MAKE) deb-ARCH ARCH=jaunty TAHOE_ARCH=feisty
|
||||
|
||||
|
||||
|
||||
# we know how to handle the following debian architectures
|
||||
KNOWN_DEBIAN_ARCHES := etch sid edgy feisty gutsy hardy intrepid lenny
|
||||
KNOWN_DEBIAN_ARCHES := etch lenny sid edgy feisty gutsy hardy intrepid jaunty
|
||||
|
||||
ifeq ($(findstring x-$(ARCH)-x,$(foreach arch,$(KNOWN_DEBIAN_ARCHES),"x-$(arch)-x")),)
|
||||
is-known-debian-arch:
|
||||
@ -354,18 +357,27 @@ deb-ARCH: is-known-debian-arch setup-deb
|
||||
@echo "The newly built .deb packages are in the parent directory from here."
|
||||
|
||||
.PHONY: increment-deb-version
|
||||
.PHONY: deb-edgy-head deb-feisty-head deb-gutsy-head deb-hardy-head deb-intrepid-head deb-lenny-head
|
||||
.PHONY: deb-etch-head deb-sid-head
|
||||
.PHONY: deb-etch-head deb-lenny-head deb-sid-head
|
||||
.PHONY: deb-edgy-head deb-feisty-head deb-gutsy-head deb-hardy-head deb-intrepid-head deb-jaunty-head
|
||||
|
||||
# The buildbot runs the following targets after each change, to produce
|
||||
# up-to-date tahoe .debs. These steps do not create .debs for anything else.
|
||||
|
||||
increment-deb-version: make-version
|
||||
debchange --newversion $(VER) $(DEBCOMMENTS)
|
||||
deb-etch-head:
|
||||
$(MAKE) setup-deb ARCH=etch TAHOE_ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
fakeroot debian/rules binary
|
||||
deb-lenny-head:
|
||||
$(MAKE) setup-deb ARCH=lenny TAHOE_ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
fakeroot debian/rules binary
|
||||
deb-sid-head:
|
||||
$(MAKE) setup-deb ARCH=sid
|
||||
$(MAKE) increment-deb-version
|
||||
fakeroot debian/rules binary
|
||||
|
||||
deb-edgy-head:
|
||||
$(MAKE) setup-deb ARCH=edgy TAHOE_ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
@ -374,10 +386,6 @@ deb-feisty-head:
|
||||
$(MAKE) setup-deb ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
fakeroot debian/rules binary
|
||||
deb-etch-head:
|
||||
$(MAKE) setup-deb ARCH=etch TAHOE_ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
fakeroot debian/rules binary
|
||||
deb-gutsy-head:
|
||||
$(MAKE) setup-deb ARCH=gutsy TAHOE_ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
@ -390,8 +398,8 @@ deb-intrepid-head:
|
||||
$(MAKE) setup-deb ARCH=intrepid TAHOE_ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
fakeroot debian/rules binary
|
||||
deb-lenny-head:
|
||||
$(MAKE) setup-deb ARCH=lenny TAHOE_ARCH=feisty
|
||||
deb-jaunty-head:
|
||||
$(MAKE) setup-deb ARCH=jaunty TAHOE_ARCH=feisty
|
||||
$(MAKE) increment-deb-version
|
||||
fakeroot debian/rules binary
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user