mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Convert debian/rules to short dh-style.
Signed-off-by: Wido den Hollander <wido@widodh.nl>
This commit is contained in:
parent
6e0867b307
commit
01e28a31bc
64
debian/rules
vendored
64
debian/rules
vendored
@ -1,14 +1,5 @@
|
|||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
# -*- makefile -*-
|
# -*- makefile -*-
|
||||||
# Sample debian/rules that uses debhelper.
|
|
||||||
#
|
|
||||||
# This file was originally written by Joey Hess and Craig Small.
|
|
||||||
# As a special exception, when this file is copied by dh-make into a
|
|
||||||
# dh-make output file, you may use that output file without restriction.
|
|
||||||
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
|
||||||
#
|
|
||||||
# Modified to make a template file for a multi-binary package with separated
|
|
||||||
# build-arch and build-indep targets by Bill Allombert 2001
|
|
||||||
|
|
||||||
DEBVERS := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p')
|
DEBVERS := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p')
|
||||||
VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[[:digit:]]*://' -e 's/[~-].*//')
|
VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[[:digit:]]*://' -e 's/[~-].*//')
|
||||||
@ -17,43 +8,26 @@ PACKAGE = $(shell dh_listpackages|head -n 1|cut -d '-' -f 1)
|
|||||||
SYSCONFDIR = "/etc"
|
SYSCONFDIR = "/etc"
|
||||||
DESTDIR = "debian/tmp"
|
DESTDIR = "debian/tmp"
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
|
||||||
export DH_VERBOSE=1
|
|
||||||
|
|
||||||
# This has to be exported to make some magic below work.
|
%:
|
||||||
export DH_OPTIONS
|
dh $@ --with python2
|
||||||
|
|
||||||
configure: configure-stamp
|
override_dh_auto_configure:
|
||||||
configure-stamp:
|
|
||||||
dh_testdir
|
|
||||||
cp packaging/debian/replace.properties replace.properties.tmp
|
cp packaging/debian/replace.properties replace.properties.tmp
|
||||||
echo VERSION=${VERSION} >> replace.properties.tmp
|
echo VERSION=${VERSION} >> replace.properties.tmp
|
||||||
touch configure-stamp
|
|
||||||
|
|
||||||
build: build-indep
|
override_dh_auto_build:
|
||||||
|
|
||||||
build-indep: build-indep-stamp
|
|
||||||
|
|
||||||
build-indep-stamp: configure
|
|
||||||
mvn -T C1.5 clean package -Pawsapi -DskipTests -Dsystemvm \
|
mvn -T C1.5 clean package -Pawsapi -DskipTests -Dsystemvm \
|
||||||
-Dcs.replace.properties=replace.properties.tmp \
|
-Dcs.replace.properties=replace.properties.tmp \
|
||||||
-Dmaven.repo.local=$(CURDIR)/mavenrepo \
|
-Dmaven.repo.local=$(CURDIR)/mavenrepo \
|
||||||
${ACS_BUILD_OPTS}
|
${ACS_BUILD_OPTS}
|
||||||
touch $@
|
|
||||||
|
|
||||||
clean:
|
override_dh_auto_clean:
|
||||||
dh_testdir
|
dh_auto_clean
|
||||||
dh_testroot
|
|
||||||
rm -f build-arch-stamp build-indep-stamp configure-stamp
|
|
||||||
rm -f replace.properties.tmp
|
rm -f replace.properties.tmp
|
||||||
rm -rf mavenrepo
|
rm -rf mavenrepo
|
||||||
dh_clean
|
|
||||||
|
|
||||||
install:
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_prep -s
|
|
||||||
|
|
||||||
|
override_dh_auto_install:
|
||||||
# Common packages
|
# Common packages
|
||||||
mkdir -p $(DESTDIR)/$(SYSCONFDIR)/$(PACKAGE)
|
mkdir -p $(DESTDIR)/$(SYSCONFDIR)/$(PACKAGE)
|
||||||
mkdir -p $(DESTDIR)/$(SYSCONFDIR)/init.d
|
mkdir -p $(DESTDIR)/$(SYSCONFDIR)/init.d
|
||||||
@ -176,21 +150,5 @@ install:
|
|||||||
rm $(DESTDIR)/usr/share/$(PACKAGE)-bridge/webapps/awsapi/WEB-INF/classes/services.xml
|
rm $(DESTDIR)/usr/share/$(PACKAGE)-bridge/webapps/awsapi/WEB-INF/classes/services.xml
|
||||||
rm -rf $(DESTDIR)/usr/share/$(PACKAGE)-bridge/webapps/awsapi/WEB-INF/classes/META-INF
|
rm -rf $(DESTDIR)/usr/share/$(PACKAGE)-bridge/webapps/awsapi/WEB-INF/classes/META-INF
|
||||||
|
|
||||||
dh_installdirs
|
override_dh_installdocs:
|
||||||
dh_install
|
|
||||||
dh_python2
|
|
||||||
|
|
||||||
binary: install
|
|
||||||
dh_install
|
|
||||||
dh_installchangelogs
|
|
||||||
dh_installdocs -A tools/whisker/LICENSE tools/whisker/NOTICE INSTALL.md
|
dh_installdocs -A tools/whisker/LICENSE tools/whisker/NOTICE INSTALL.md
|
||||||
dh_installman
|
|
||||||
dh_link
|
|
||||||
dh_strip
|
|
||||||
dh_compress
|
|
||||||
dh_fixperms
|
|
||||||
dh_makeshlibs
|
|
||||||
dh_installdeb
|
|
||||||
dh_gencontrol
|
|
||||||
dh_md5sums
|
|
||||||
dh_builddeb
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user