File: Version.hs

package info (click to toggle)
haskell-debian 3.64-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 364 kB
  • sloc: haskell: 3,226; ansic: 8; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 487 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- |A module for parsing, comparing, and (eventually) modifying debian version
-- numbers. <http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version>
module Debian.Version 
    (DebianVersion -- |Exported abstract because the internal representation is likely to change 
    , prettyDebianVersion
    , parseDebianVersion
    , epoch
    , version
    , revision
    , buildDebianVersion
    , evr
    ) where 

import Debian.Version.Common
import Debian.Version.String