@@ -32,8 +32,6 @@ import Distribution.System ( OS (..), Platform (..) )
32
32
import qualified Distribution.Text as C
33
33
import Distribution.Types.MungedPackageName
34
34
( encodeCompatPackageName )
35
- import Distribution.Types.UnqualComponentName
36
- ( mkUnqualComponentName )
37
35
import Distribution.Version ( mkVersion )
38
36
import Path
39
37
( (</>) , addExtension , filename , isProperPrefixOf , parent
@@ -849,9 +847,9 @@ copyPreCompiled ee task pkgId (PrecompiledCache mlib subLibs exes) = do
849
847
subLibNames = Set. toList $ buildableSubLibs $ case task. taskType of
850
848
TTLocalMutable lp -> lp. package
851
849
TTRemotePackage _ p _ -> p
852
- toMungedPackageId :: Text -> MungedPackageId
850
+ toMungedPackageId :: StackUnqualCompName -> MungedPackageId
853
851
toMungedPackageId subLib =
854
- let subLibName = LSubLibName $ mkUnqualComponentName $ T. unpack subLib
852
+ let subLibName = LSubLibName $ toCabalName subLib
855
853
in MungedPackageId (MungedPackageName pname subLibName) pversion
856
854
toPackageId :: MungedPackageId -> PackageIdentifier
857
855
toPackageId (MungedPackageId n v) =
@@ -1247,7 +1245,7 @@ singleTest topts testsToRun ac ee task installedMap = do
1247
1245
-- | Implements running a package's benchmarks.
1248
1246
singleBench :: HasEnvConfig env
1249
1247
=> BenchmarkOpts
1250
- -> [Text ]
1248
+ -> [StackUnqualCompName ]
1251
1249
-> ActionContext
1252
1250
-> ExecuteEnv
1253
1251
-> Task
@@ -1257,7 +1255,7 @@ singleBench beopts benchesToRun ac ee task installedMap = do
1257
1255
(allDepsMap, _cache) <- getConfigCache ee task installedMap False True
1258
1256
withSingleContext ac ee task. taskType allDepsMap (Just " bench" ) $
1259
1257
\ _package _cabalfp _pkgDir cabal announce _outputType -> do
1260
- let args = map T. unpack benchesToRun <> maybe []
1258
+ let args = map unqualCompToString benchesToRun <> maybe []
1261
1259
((: [] ) . (" --benchmark-options=" <> ))
1262
1260
beopts. additionalArgs
1263
1261
@@ -1307,15 +1305,13 @@ primaryComponentOptions lp =
1307
1305
++ map
1308
1306
(T. unpack . T. append " lib:" )
1309
1307
(getBuildableListText package. subLibraries)
1310
- ++ map
1311
- (T. unpack . T. append " exe:" )
1312
- (Set. toList $ exesToBuild lp)
1308
+ ++ Set. toList (Set. mapMonotonic (\ s -> " exe:" ++ unqualCompToString s) (exesToBuild lp))
1313
1309
where
1314
1310
package = lp. package
1315
1311
1316
1312
-- | Either build all executables or, if the user specifies requested
1317
1313
-- components, just build them.
1318
- exesToBuild :: LocalPackage -> Set Text
1314
+ exesToBuild :: LocalPackage -> Set StackUnqualCompName
1319
1315
exesToBuild lp = if lp. wanted
1320
1316
then exeComponents lp. components
1321
1317
else buildableExes lp. package
0 commit comments