@@ -176,7 +176,9 @@ import Text.PrettyPrint
176
176
, char
177
177
, colon
178
178
, hsep
179
+ , int
179
180
, nest
181
+ , parens
180
182
, quotes
181
183
, renderStyle
182
184
, text
@@ -898,10 +900,11 @@ configurePackage cfg lbc0 pkg_descr00 flags enabled comp platform programDb0 pac
898
900
(merged, ds@ (dup : _)) ->
899
901
noticeDoc verbosity $
900
902
vcat
901
- [ (text " The build tool" <+> quotes (text $ nameOf dup) <+> " has multiple versions specified" ) <> colon
902
- , nest 2 $ vcat [char ' -' <+> text (prettyShow $ versionOf d) | d <- ds]
903
- , text " These versions have been combined as" <> colon
904
- , nest 2 $ quotes (text $ prettyShow merged)
903
+ [ (text " As the build tool" <+> quotes (text $ nameOf dup) <+> " was specified more than once" ) <> colon
904
+ , nest 2 $ vcat [char ' -' <+> versionOfDoc d | d <- ds]
905
+ , (text " We'll use the effective intersection of these" <+> int (length ds) <+> " version ranges" ) <> colon
906
+ , nest 2 $ char ' -' <+> versionOfDoc merged
907
+ , text " Please specify build tool dependencies only once."
905
908
]
906
909
907
910
programDb1 <-
@@ -959,6 +962,12 @@ nameOf (LegacyExeDependency n _) = n
959
962
versionOf :: LegacyExeDependency -> VersionRange
960
963
versionOf (LegacyExeDependency _ v) = v
961
964
965
+ versionOfDoc :: LegacyExeDependency -> Doc
966
+ versionOfDoc (LegacyExeDependency _ v) =
967
+ if v == anyVersion
968
+ then text (prettyShow v) <+> parens (text " any version" )
969
+ else text $ prettyShow v
970
+
962
971
-- | Any duplicates in the list has their version range merged by intersection.
963
972
-- The second list has the build tool with its merged version range and its list
964
973
-- of duplicates.
0 commit comments