| Safe Haskell | None |
|---|
Debian.Relation.Common
- type Relations = AndRelation
- type AndRelation = [OrRelation]
- type OrRelation = [Relation]
- data Relation = Rel BinPkgName (Maybe VersionReq) (Maybe ArchitectureReq)
- newtype SrcPkgName = SrcPkgName {}
- newtype BinPkgName = BinPkgName {}
- class Pretty a => PkgName a where
- pkgNameFromString :: String -> a
- class ParseRelations a where
- parseRelations :: a -> Either ParseError Relations
- prettyRelations :: [[Relation]] -> Doc
- prettyOrRelation :: [Relation] -> Doc
- prettyRelation :: Relation -> Doc
- data ArchitectureReq
- prettyArchitectureReq :: ArchitectureReq -> Doc
- data VersionReq
- prettyVersionReq :: VersionReq -> Doc
- checkVersionReq :: Maybe VersionReq -> Maybe DebianVersion -> Bool
Documentation
type Relations = AndRelationSource
type AndRelation = [OrRelation]Source
type OrRelation = [Relation]Source
Constructors
| Rel BinPkgName (Maybe VersionReq) (Maybe ArchitectureReq) |
class ParseRelations a whereSource
Methods
parseRelations :: a -> Either ParseError RelationsSource
parseRelations parse a debian relation (i.e. the value of a
Depends field). Return a parsec error or a value of type
Relations
prettyRelations :: [[Relation]] -> DocSource
This needs to be indented for use in a control file: intercalate n . lines . show
prettyOrRelation :: [Relation] -> DocSource
prettyRelation :: Relation -> DocSource
data ArchitectureReq Source
data VersionReq Source
Constructors
| SLT DebianVersion | |
| LTE DebianVersion | |
| EEQ DebianVersion | |
| GRE DebianVersion | |
| SGR DebianVersion |
Instances
| Eq VersionReq | |
| Ord VersionReq | The sort order is based on version number first, then on the kind of relation, sorting in the order <= , ==,= , >> |
| Show VersionReq | |
| Pretty VersionReq |
checkVersionReq :: Maybe VersionReq -> Maybe DebianVersion -> BoolSource
Check if a version number satisfies a version requirement.