summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-07-15 13:57:37 +0200
committerTimo Kaufmann <timokau@zoho.com>2018-07-15 14:14:21 +0200
commit8f9b985e60de16883b2e67eaf2924144d647f31e (patch)
tree92dc7af97964d5af05578f025ba9ea05cff72cf3 /pkgs/build-support
parent1ddab0efb1729a32fdea83cf757584a7ebf1e13a (diff)
downloadnixpkgs-8f9b985e60de16883b2e67eaf2924144d647f31e.tar
nixpkgs-8f9b985e60de16883b2e67eaf2924144d647f31e.tar.gz
nixpkgs-8f9b985e60de16883b2e67eaf2924144d647f31e.tar.bz2
nixpkgs-8f9b985e60de16883b2e67eaf2924144d647f31e.tar.lz
nixpkgs-8f9b985e60de16883b2e67eaf2924144d647f31e.tar.xz
nixpkgs-8f9b985e60de16883b2e67eaf2924144d647f31e.tar.zst
nixpkgs-8f9b985e60de16883b2e67eaf2924144d647f31e.zip
fetchpatch: fail on empty patch
Since this is probably never the desired case and has led to actual
issues, see the comments at:

https://github.com/NixOS/nixpkgs/commit/af1313e91552e42a4419b396b3026319c60fc17f

This might also happen when pulling a patch from GitHub or a similar web
interface without explicitly selecting the "raw" format.
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/fetchpatch/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/build-support/fetchpatch/default.nix b/pkgs/build-support/fetchpatch/default.nix
index c8004fb8743..1e231d649b3 100644
--- a/pkgs/build-support/fetchpatch/default.nix
+++ b/pkgs/build-support/fetchpatch/default.nix
@@ -10,6 +10,10 @@
 fetchurl ({
   postFetch = ''
     tmpfile="$TMPDIR/${args.sha256}"
+    if [ ! -s "$out" ]; then
+      echo "error: Fetched patch file '$out' is empty!" 1>&2
+      exit 1
+    fi
     "${patchutils}/bin/lsdiff" "$out" \
       | sort -u | sed -e 's/[*?]/\\&/g' \
       | xargs -I{} \
@@ -21,12 +25,26 @@ fetchurl ({
            --addnewprefix=b/${extraPrefix} \
         ''} \
         --clean "$out" > "$tmpfile"
+    if [ ! -s "$tmpfile" ]; then
+      echo "error: Normalized patch '$tmpfile' is empty (while the fetched file was not)!" 1>&2
+      echo "Did you maybe fetch a HTML representation of a patch instead of a raw patch?" 1>&2
+      echo "Fetched file was:" 1>&2
+      cat "$out" 1>&2
+      exit 1
+    fi
     ${patchutils}/bin/filterdiff \
       -p1 \
       ${builtins.toString (builtins.map (x: "-x ${lib.escapeShellArg x}") excludes)} \
       ${builtins.toString (builtins.map (x: "-i ${lib.escapeShellArg x}") includes)} \
       "$tmpfile" > "$out"
     ${args.postFetch or ""}
+    if [ ! -s "$out" ]; then
+      echo "error: Filtered patch '$out$' is empty (while the original patch file was not)!" 1>&2
+      echo "Check your includes and excludes." 1>&2
+      echo "Normalizd patch file was:" 1>&2
+      cat "$tmpfile" 1>&2
+      exit 1
+    fi
   '';
   meta.broken = excludes != [] && includes != [];
 } // builtins.removeAttrs args ["stripLen" "extraPrefix" "excludes" "includes" "postFetch"])