Skip to content
Snippets Groups Projects
Commit d1d5d6cd authored by Simon Marlow's avatar Simon Marlow
Browse files

On second thoughts, follow the Cabal docs for the syntax of package names

Each package component must now contain at least one letter, a weaker 
requirement than always beginning with a letter.
parent b74d7ded
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ module Distribution.Package (
import Distribution.Version
import Distribution.Compat.ReadP as ReadP
import Data.Char ( isAlpha, isAlphaNum )
import Data.Char ( isDigit, isAlphaNum )
import Data.List ( intersperse )
data PackageIdentifier
......@@ -65,10 +65,9 @@ parsePackageName :: ReadP r String
parsePackageName = do ns <- sepBy1 component (char '-')
return (concat (intersperse "-" ns))
where component = do
c <- satisfy isAlpha
cs <- munch isAlphaNum
return (c:cs)
-- each component begins with an alphabetic character, to avoid
cs <- munch1 isAlphaNum
if all isDigit cs then pfail else return cs
-- each component must contain an alphabetic character, to avoid
-- ambiguity in identifiers like foo-1 (the 1 is the version number).
parsePackageId :: ReadP r PackageIdentifier
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment