This file is indexed.

/usr/share/doc/golang-github-jacobsa-crypto-dev/README.Debian is in golang-github-jacobsa-crypto-dev 0.0~git20171018.0.c73681c+dfsg1-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
The architecture-related build tags in the upstream code were
replaced with a simpler tag for pointer size. This ensures the
package will build on any Debian architecture.

The drawback is that packages using this code now have to set
the tag also. Please use something like this in your rules:

DEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS)
POINTER_SIZE_TAG = "$(DEB_HOST_ARCH_BITS)bit_pointer"

override_dh_auto_build:
	dh_auto_build -- -tags $(POINTER_SIZE_TAG)