Imported Debian patch 4.8.10-2
This commit is contained in:
committed by
Mario Fetka
parent
8bc559c5a1
commit
358acdd85f
27
debian/rules
vendored
27
debian/rules
vendored
@@ -3,7 +3,8 @@
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||||
include /usr/share/dpkg/architecture.mk
|
||||
include /usr/share/dpkg/pkg-info.mk
|
||||
|
||||
# build server only where nodejs is available
|
||||
ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armhf i386 mips mips64el mipsel ppc64 ppc64el s390x))
|
||||
@@ -12,12 +13,11 @@ else
|
||||
ONLY_CLIENT=1
|
||||
endif
|
||||
|
||||
# build client only until dogtag works
|
||||
ONLY_CLIENT=1
|
||||
|
||||
DESTDIR=$(CURDIR)/debian/tmp
|
||||
|
||||
export PYTHON=python
|
||||
export PYTHON=python3
|
||||
export am_cv_python_pythondir=/usr/lib/python3/dist-packages
|
||||
export am_cv_python_pyexecdir=/usr/lib/python3/dist-packages
|
||||
|
||||
confflags = \
|
||||
--libexecdir=/usr/lib/ \
|
||||
@@ -35,12 +35,10 @@ confflags += --enable-server \
|
||||
endif
|
||||
|
||||
# For maintainer use only, generate a tarball:
|
||||
SOURCE = freeipa
|
||||
gentarball: UV=$(shell dpkg-parsechangelog|awk '/^Version:/ {print $$2}'|sed 's/-.*$$//')
|
||||
gentarball:
|
||||
git archive --format=tar upstream-next --prefix=$(SOURCE)-$(UV)/ | \
|
||||
xz --best \
|
||||
> ../$(SOURCE)_$(UV).orig.tar.xz
|
||||
tar --transform 's,^,$(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM)/,' \
|
||||
--exclude './debian' --exclude-vcs \
|
||||
-cJf ../$(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM).orig.tar.xz .
|
||||
|
||||
gencontrol:
|
||||
ifeq ($(ONLY_CLIENT), 1)
|
||||
@@ -57,7 +55,7 @@ endif
|
||||
|
||||
override_dh_clean: gencontrol
|
||||
dh_clean
|
||||
rm -f po/*.gmo po/Makefile.hack po/POTFILES.in po/ipa.pot po/stamp-po
|
||||
rm -f po/*.gmo po/Makefile.hack po/POTFILES.in po/stamp-po
|
||||
rm -rf contrib/completion/ipa.bash_completion daemons/ipa-version.h \
|
||||
install/ui/src/libs/loader.js m4
|
||||
rm -f ipaplatform/override.py ipapython/version.py ipasetup.py
|
||||
@@ -95,11 +93,10 @@ endif
|
||||
find $(CURDIR)/debian/tmp -name "*.mo" -type f -exec chmod -x "{}" \;
|
||||
# remove files which are useful only for make uninstall
|
||||
find $(CURDIR)/debian/tmp -wholename '*/dist-packages/*/install_files.txt' -exec rm '{}' \;
|
||||
|
||||
# we still need to use python2
|
||||
# fix the interpreter
|
||||
find debian/tmp ! -name '*.pyc' -a ! -name '*.pyo' -a \
|
||||
-type f -exec grep -qsm1 '^#!.*\bpython' {} \; \
|
||||
-exec sed -i -e '1 s|^#!.*\bpython[^ ]*|#!/usr/bin/python|' {} \;
|
||||
-exec sed -i -e '1 s|^#!.*\bpython[^ ]*|#!/usr/bin/python3|' {} \;
|
||||
|
||||
override_dh_missing:
|
||||
dh_missing --fail-missing
|
||||
@@ -122,5 +119,5 @@ override_dh_fixperms:
|
||||
fi
|
||||
|
||||
%:
|
||||
dh $@ --with python2
|
||||
dh $@ --with python3
|
||||
# --builddirectory=build
|
||||
|
||||
Reference in New Issue
Block a user