In /usr/bin/dpatch-list-patch line 24:
eval set -- ${TEMP}
            ^-----^ SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
eval set -- "${TEMP}"


In /usr/bin/dpatch-list-patch line 42:
cd ${DPLP_SRCDIR}
^---------------^ SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.
   ^------------^ SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
cd "${DPLP_SRCDIR}" || exit

For more information:
  https://www.shellcheck.net/wiki/SC2164 -- Use 'cd ... || exit' or 'cd ... |...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...