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 56 57 58 59 60 61 62 63 64
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/dpkg/pkg-info.mk
export GO111MODULE=off
export DH_GOLANG_GO_GENERATE := 1
export DH_GOLANG_INSTALL_EXTRA := $(wildcard libpod/*/testdata/*) $(wildcard hack/*)
export DH_GOLANG_EXCLUDES := dependencies test/e2e contrib/perftest test/utils test/endpoint hack/podman-registry-go pkg/bindings/test
export HOME=$(CURDIR)/debian/tmp
## https://podman.io/getting-started/installation#build-tags
BUILDTAGS := apparmor,ostree,seccomp,selinux,systemd
# containers_image_openpgp
%:
dh $@ --buildsystem=golang --with=golang,bash-completion --builddirectory=_output
override_dh_clean:
dh_clean $(PB_GO_FILES)
## Remove Files-Excluded (when built from checkout or non-DFSG tarball):
$(RM) -rv `perl -0nE 'say $$1 if m{^Files\-Excluded\:\s*(.*?)(?:\n\n|Files:|Comment:)}sm;' debian/copyright`
-find vendor -mindepth 1 -type d -empty -delete -printf 'removed %p\n'
override_dh_auto_build:
$(MAKE) docs
# LDFLAGS_PODMAN="-X main.gitCommit=$(GIT_COMMIT)"
dh_auto_build -v --builddirectory=_output -- -tags "$(BUILDTAGS)" \
-ldflags "-X main.buildInfo=$(DEB_VERSION)"
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
# make test binaries available where the tests expect them
ln -sv ../../../../bin _output/src/github.com/containers/podman/bin
mkdir -p -m700 $(CURDIR)/debian/tmp-home/.cache
mkdir -p -m700 $(CURDIR)/debian/tmp-home/.config
mkdir -p -m700 $(CURDIR)/debian/tmp-home/.local/share
mkdir -p -m700 $(CURDIR)/debian/tmp-home/run
env \
HOME=$(CURDIR)/debian/tmp-home/.cache \
XDG_CACHE_HOME=$(CURDIR)/debian/tmp-home/.cache \
XDG_CONFIG_HOME=$(CURDIR)/debian/tmp-home/.config \
XDG_DATA_HOME=$(CURDIR)/debian/tmp-home/.local/share \
XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp-home/run \
PATH="$(CURDIR)/_output/bin:$$PATH" \
DH_GOLANG_EXCLUDES="$${DH_GOLANG_EXCLUDES} libpod/lock/file libpod/hack/podman-registry-go libpod/pkg/bindings/test" \
dh_auto_test -v --max-parallel=2 -- -tags "$(BUILDTAGS)"
rm -rf $(CURDIR)/debian/tmp-home
endif
override_dh_auto_install:
dh_auto_install --destdir=debian/tmp --buildsystem=golang --builddirectory=_output
# avoid exposing unnecessary vendor libraries
rm -rfv debian/tmp/usr/share/gocode/src/github.com/containers/libpod/vendor
override_dh_installsystemd:
dh_installsystemd
dh_installsystemd --name=podman-auto-update
|