mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
setup: enable build of .debs for Ubuntu Intrepid, thanks to DarKNesS_WolF
This commit is contained in:
parent
5e90d82a02
commit
341c7aad83
3
CREDITS
3
CREDITS
@ -80,3 +80,6 @@ E: alberto@metapensiero.it
|
|||||||
W: http://www.metapensiero.it
|
W: http://www.metapensiero.it
|
||||||
S: via Filatoi, 1 38068 Rovereto (TN), Italy
|
S: via Filatoi, 1 38068 Rovereto (TN), Italy
|
||||||
D: improvements to the CLI: exclude patterns, usage text
|
D: improvements to the CLI: exclude patterns, usage text
|
||||||
|
|
||||||
|
N: DarKnesS_WOlF
|
||||||
|
D: patch Makefile to build .debs for Ubuntu Intrepid
|
||||||
|
15
Makefile
15
Makefile
@ -293,7 +293,7 @@ show-pp:
|
|||||||
|
|
||||||
.PHONY: setup-deb deb-ARCH is-known-debian-arch
|
.PHONY: setup-deb deb-ARCH is-known-debian-arch
|
||||||
.PHONY: deb-etch deb-sid
|
.PHONY: deb-etch deb-sid
|
||||||
.PHONY: deb-edgy deb-feisty deb-gutsy deb-hardy
|
.PHONY: deb-edgy deb-feisty deb-gutsy deb-hardy deb-intrepid
|
||||||
|
|
||||||
deb-sid:
|
deb-sid:
|
||||||
$(MAKE) deb-ARCH ARCH=sid
|
$(MAKE) deb-ARCH ARCH=sid
|
||||||
@ -310,9 +310,13 @@ deb-gutsy:
|
|||||||
$(MAKE) deb-ARCH ARCH=gutsy TAHOE_ARCH=feisty
|
$(MAKE) deb-ARCH ARCH=gutsy TAHOE_ARCH=feisty
|
||||||
deb-hardy:
|
deb-hardy:
|
||||||
$(MAKE) deb-ARCH ARCH=hardy TAHOE_ARCH=feisty
|
$(MAKE) deb-ARCH ARCH=hardy TAHOE_ARCH=feisty
|
||||||
|
deb-intrepid:
|
||||||
|
$(MAKE) deb-ARCH ARCH=intrepid TAHOE_ARCH=feisty
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# we know how to handle the following debian architectures
|
# we know how to handle the following debian architectures
|
||||||
KNOWN_DEBIAN_ARCHES := etch sid edgy feisty gutsy hardy
|
KNOWN_DEBIAN_ARCHES := etch sid edgy feisty gutsy hardy intrepid
|
||||||
|
|
||||||
ifeq ($(findstring x-$(ARCH)-x,$(foreach arch,$(KNOWN_DEBIAN_ARCHES),"x-$(arch)-x")),)
|
ifeq ($(findstring x-$(ARCH)-x,$(foreach arch,$(KNOWN_DEBIAN_ARCHES),"x-$(arch)-x")),)
|
||||||
is-known-debian-arch:
|
is-known-debian-arch:
|
||||||
@ -348,7 +352,7 @@ deb-ARCH: is-known-debian-arch setup-deb
|
|||||||
@echo "The newly built .deb packages are in the parent directory from here."
|
@echo "The newly built .deb packages are in the parent directory from here."
|
||||||
|
|
||||||
.PHONY: increment-deb-version
|
.PHONY: increment-deb-version
|
||||||
.PHONY: deb-edgy-head deb-feisty-head deb-gutsy-head deb-hardy-head
|
.PHONY: deb-edgy-head deb-feisty-head deb-gutsy-head deb-hardy-head deb-intrepid-head
|
||||||
.PHONY: deb-etch-head deb-sid-head
|
.PHONY: deb-etch-head deb-sid-head
|
||||||
|
|
||||||
# The buildbot runs the following targets after each change, to produce
|
# The buildbot runs the following targets after each change, to produce
|
||||||
@ -380,6 +384,11 @@ deb-hardy-head:
|
|||||||
$(MAKE) setup-deb ARCH=hardy TAHOE_ARCH=feisty
|
$(MAKE) setup-deb ARCH=hardy TAHOE_ARCH=feisty
|
||||||
$(MAKE) increment-deb-version
|
$(MAKE) increment-deb-version
|
||||||
fakeroot debian/rules binary
|
fakeroot debian/rules binary
|
||||||
|
deb-intrepid-head:
|
||||||
|
$(MAKE) setup-deb ARCH=intrepid TAHOE_ARCH=feisty
|
||||||
|
$(MAKE) increment-deb-version
|
||||||
|
fakeroot debian/rules binary
|
||||||
|
|
||||||
|
|
||||||
# These targets provide for windows native builds
|
# These targets provide for windows native builds
|
||||||
.PHONY: windows-exe windows-installer windows-installer-upload
|
.PHONY: windows-exe windows-installer windows-installer-upload
|
||||||
|
Loading…
Reference in New Issue
Block a user