From 1624e53d010aa2e14a01fba6eba3a0173756fe1c Mon Sep 17 00:00:00 2001
From: Oleg Grenrus <oleg.grenrus@iki.fi>
Date: Wed, 12 Feb 2020 19:15:08 +0200
Subject: [PATCH] Correct casing of CURRENT_PACKAGE_KEY

Fixes #6533
---
 Cabal/Distribution/Simple/Build/Macros/Z.hs    | 10 +++++-----
 boot/cabal_macros.template.h                   | 10 +++++-----
 .../PackageTests/CabalMacros/Mdl.hs            |  5 +++++
 .../PackageTests/CabalMacros/my.cabal          | 16 ++++++++++++++++
 .../PackageTests/CabalMacros/setup.cabal.out   | 16 ++++++++++++++++
 .../PackageTests/CabalMacros/setup.out         | 15 +++++++++++++++
 .../PackageTests/CabalMacros/setup.test.hs     | 18 ++++++++++++++++++
 7 files changed, 80 insertions(+), 10 deletions(-)
 create mode 100644 cabal-testsuite/PackageTests/CabalMacros/Mdl.hs
 create mode 100644 cabal-testsuite/PackageTests/CabalMacros/my.cabal
 create mode 100644 cabal-testsuite/PackageTests/CabalMacros/setup.cabal.out
 create mode 100644 cabal-testsuite/PackageTests/CabalMacros/setup.out
 create mode 100644 cabal-testsuite/PackageTests/CabalMacros/setup.test.hs

diff --git a/Cabal/Distribution/Simple/Build/Macros/Z.hs b/Cabal/Distribution/Simple/Build/Macros/Z.hs
index 641d395d15..4c14843e04 100644
--- a/Cabal/Distribution/Simple/Build/Macros/Z.hs
+++ b/Cabal/Distribution/Simple/Build/Macros/Z.hs
@@ -72,7 +72,7 @@ render z_root = execWriter $ do
     tell " */\n"
   tell "\n"
   forM_ (zTools z_root) $ \z_var1_tool -> do
-    tell "/* package "
+    tell "/* tool "
     tell (ztoolName z_var1_tool)
     tell "-"
     tell (prettyShow (ztoolVersion z_var1_tool))
@@ -85,7 +85,7 @@ render z_root = execWriter $ do
     tell " \""
     tell (prettyShow (ztoolVersion z_var1_tool))
     tell "\"\n"
-    tell "#endif /* VERSION_"
+    tell "#endif /* TOOL_VERSION_"
     tell (zMangleStr z_root (ztoolName z_var1_tool))
     tell " */\n"
     tell "#ifndef MIN_TOOL_VERSION_"
@@ -109,14 +109,14 @@ render z_root = execWriter $ do
     tell " && (minor) <= "
     tell (ztoolZ z_var1_tool)
     tell ")\n"
-    tell "#endif /* MIN_VERSION_"
+    tell "#endif /* MIN_TOOL_VERSION_"
     tell (zMangleStr z_root (ztoolName z_var1_tool))
     tell " */\n"
   tell "\n"
   if (zNotNull z_root (zPackageKey z_root))
   then do
-    tell "#ifndef CURRENT_packageKey\n"
-    tell "#define CURRENT_packageKey \""
+    tell "#ifndef CURRENT_PACKAGE_KEY\n"
+    tell "#define CURRENT_PACKAGE_KEY \""
     tell (zPackageKey z_root)
     tell "\"\n"
     tell "#endif /* CURRENT_packageKey */\n"
diff --git a/boot/cabal_macros.template.h b/boot/cabal_macros.template.h
index 4cd5956bc2..f50323d966 100644
--- a/boot/cabal_macros.template.h
+++ b/boot/cabal_macros.template.h
@@ -14,21 +14,21 @@
 {% endfor %}
 
 {% for tool in tools %}
-/* package {{ tool.name }}-{{ tool.version }} */
+/* tool {{ tool.name }}-{{ tool.version }} */
 #ifndef TOOL_VERSION_{{ mangleStr tool.name }}
 #define TOOL_VERSION_{{ mangleStr tool.name }} "{{ tool.version }}"
-#endif /* VERSION_{{ mangleStr tool.name }} */
+#endif /* TOOL_VERSION_{{ mangleStr tool.name }} */
 #ifndef MIN_TOOL_VERSION_{{ mangleStr tool.name }}
 #define MIN_TOOL_VERSION_{{ mangleStr tool.name }}(major1,major2,minor) (\
   (major1) <  {{ tool.x }} || \
   (major1) == {{ tool.x }} && (major2) <  {{ tool.y }} || \
   (major1) == {{ tool.x }} && (major2) == {{ tool.y }} && (minor) <= {{ tool.z }})
-#endif /* MIN_VERSION_{{ mangleStr tool.name }} */
+#endif /* MIN_TOOL_VERSION_{{ mangleStr tool.name }} */
 {% endfor %}
 
 {% if notNull packageKey %}
-#ifndef CURRENT_packageKey
-#define CURRENT_packageKey "{{ packageKey }}"
+#ifndef CURRENT_PACKAGE_KEY
+#define CURRENT_PACKAGE_KEY "{{ packageKey }}"
 #endif /* CURRENT_packageKey */
 {% endif %}
 {% if notNull componentId %}
diff --git a/cabal-testsuite/PackageTests/CabalMacros/Mdl.hs b/cabal-testsuite/PackageTests/CabalMacros/Mdl.hs
new file mode 100644
index 0000000000..abd5d06f14
--- /dev/null
+++ b/cabal-testsuite/PackageTests/CabalMacros/Mdl.hs
@@ -0,0 +1,5 @@
+{-# LANGUAGE CPP #-}
+module Mdl where
+
+answer :: Int
+answer = 42
diff --git a/cabal-testsuite/PackageTests/CabalMacros/my.cabal b/cabal-testsuite/PackageTests/CabalMacros/my.cabal
new file mode 100644
index 0000000000..169b547401
--- /dev/null
+++ b/cabal-testsuite/PackageTests/CabalMacros/my.cabal
@@ -0,0 +1,16 @@
+cabal-version: 2.1
+name: CabalMacros
+version: 0.1
+license: BSD-3-Clause
+author: Oleg Grenrus
+stability: stable
+category: PackageTests
+build-type: Simple
+
+description:
+    Check that the generated cabal_macros.h is intact.
+
+Library
+    exposed-modules: Mdl
+    build-depends: base
+    default-language: Haskell2010
diff --git a/cabal-testsuite/PackageTests/CabalMacros/setup.cabal.out b/cabal-testsuite/PackageTests/CabalMacros/setup.cabal.out
new file mode 100644
index 0000000000..964a342210
--- /dev/null
+++ b/cabal-testsuite/PackageTests/CabalMacros/setup.cabal.out
@@ -0,0 +1,16 @@
+# Setup configure
+Resolving dependencies...
+Configuring CabalMacros-0.1...
+# Setup build
+Preprocessing library for CabalMacros-0.1..
+Building library for CabalMacros-0.1..
+# cabal_macros.h
+#ifndef CURRENT_PACKAGE_KEY
+#define CURRENT_PACKAGE_KEY "CabalMacros-0.1"
+#endif /* CURRENT_packageKey */
+#ifndef CURRENT_COMPONENT_ID
+#define CURRENT_COMPONENT_ID "CabalMacros-0.1"
+#endif /* CURRENT_COMPONENT_ID */
+#ifndef CURRENT_PACKAGE_VERSION
+#define CURRENT_PACKAGE_VERSION "0.1"
+#endif /* CURRENT_PACKAGE_VERSION */
diff --git a/cabal-testsuite/PackageTests/CabalMacros/setup.out b/cabal-testsuite/PackageTests/CabalMacros/setup.out
new file mode 100644
index 0000000000..dbfc1043f1
--- /dev/null
+++ b/cabal-testsuite/PackageTests/CabalMacros/setup.out
@@ -0,0 +1,15 @@
+# Setup configure
+Configuring CabalMacros-0.1...
+# Setup build
+Preprocessing library for CabalMacros-0.1..
+Building library for CabalMacros-0.1..
+# cabal_macros.h
+#ifndef CURRENT_PACKAGE_KEY
+#define CURRENT_PACKAGE_KEY "CabalMacros-0.1"
+#endif /* CURRENT_packageKey */
+#ifndef CURRENT_COMPONENT_ID
+#define CURRENT_COMPONENT_ID "CabalMacros-0.1"
+#endif /* CURRENT_COMPONENT_ID */
+#ifndef CURRENT_PACKAGE_VERSION
+#define CURRENT_PACKAGE_VERSION "0.1"
+#endif /* CURRENT_PACKAGE_VERSION */
diff --git a/cabal-testsuite/PackageTests/CabalMacros/setup.test.hs b/cabal-testsuite/PackageTests/CabalMacros/setup.test.hs
new file mode 100644
index 0000000000..16fdbe5127
--- /dev/null
+++ b/cabal-testsuite/PackageTests/CabalMacros/setup.test.hs
@@ -0,0 +1,18 @@
+import Test.Cabal.Prelude
+import qualified Data.ByteString.Char8 as BS8
+
+main = setupAndCabalTest $ do
+    env <- getTestEnv
+    let mode = testRecordMode env
+
+    setup_build []
+    let autogenDir = testDistDir env </> "build" </> "autogen"
+
+    defaultRecordMode RecordAll $ recordHeader ["cabal_macros.h"]
+    contents <- liftIO $ BS8.readFile $ autogenDir </> "cabal_macros.h"
+    -- we are only interested in CURRENT_ lines
+    -- others change a lot based on available tools in the environment
+    let contents' = BS8.unlines
+                  $ filter (BS8.isInfixOf $ BS8.pack "CURRENT")
+                  $ BS8.lines contents
+    liftIO $ BS8.appendFile (testActualFile env) contents'
-- 
GitLab