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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Regenerate publicsuffix table
export DH_GOLANG_GO_GENERATE := 1
# http2/h2i is cli tool
export DH_GOLANG_EXCLUDES := http2/h2i
%:
dh $@ --builddirectory=_build --buildsystem=golang
execute_after_dh_auto_configure:
# Remove tests that depends on non-free RFC spec.
printf 'package http2\nfunc covers(string, string) {}' > _build/src/golang.org/x/net/http2/z_spec_test.go
# Placeholder for generated file, needed by go:embed
mkdir -p _build/src/golang.org/x/net/publicsuffix/data/
touch $(addprefix _build/src/golang.org/x/net/publicsuffix/data/,children nodes text)
override_dh_auto_test:
# Some tests require root, need -short to skip them for now.
dh_auto_test -O--buildsystem=golang -- -short
override_dh_gencontrol:
dh_gencontrol -v -- -Vmy:Built-Using="$(shell dpkg-query --show -f '$${source:Package} (=$${source:Version}),' publicsuffix)"
|