packages feed

fedora-dists 1.1.1 → 1.1.2

raw patch · 3 files changed

+15/−6 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -2,6 +2,10 @@  `fedora-dists` uses [PVP Versioning](https://pvp.haskell.org). +## 1.1.2 (2020-01-24)+- mockConfig rawhide version+- drop F29 and EPEL6+ ## 1.1.1 (2019-12-15) - fix read and show for RHEL 
FedoraDists.hs view
@@ -1,6 +1,6 @@ -- | -- Module      :  FedoraDists--- Copyright   :  (C) 2014-2018  Jens Petersen+-- Copyright   :  (C) 2014-2020  Jens Petersen -- -- Maintainer  :  Jens Petersen <petersen@fedoraproject.org> -- Stability   :  alpha@@ -63,7 +63,7 @@  -- | Current maintained distribution releases. dists :: [Dist]-dists = [rawhide, Fedora 31, Fedora 30, Fedora 29, EPEL 8, EPEL 7, EPEL 6]+dists = [rawhide, Fedora 31, Fedora 30, EPEL 8, EPEL 7]  -- | The Fedora release number corresponding to current Rawhide rawhideRelease :: Int@@ -121,7 +121,12 @@ -- | Mock configuration for `Dist` and arch mockConfig :: Dist -> String -> String mockConfig dist arch =-  distRepo dist ++ "-" ++ releaseVersion dist ++ "-" ++ arch+  let prefix =+        case dist of+          Fedora _ -> "fedora"+          _ -> distRepo dist+  in+  prefix ++ "-" ++ releaseVersion dist ++ "-" ++ arch  -- | Map `Dist` to a container image distContainer :: Dist -> String
fedora-dists.cabal view
@@ -1,6 +1,6 @@ cabal-version:       1.18 name:                fedora-dists-version:             1.1.1+version:             1.1.2 synopsis:            Library for Fedora distribution versions description:             This library provides the Dist datatype and various associated@@ -12,13 +12,13 @@ license-file:        LICENSE author:              Jens Petersen maintainer:          petersen@fedoraproject.org-copyright:           2018 Jens Petersen+copyright:           2018-2020 Jens Petersen category:            Distribution build-type:          Simple extra-doc-files:     README.md                    , CHANGELOG.md tested-with:         GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2,-                     GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1+                     GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.2  source-repository head   type:                git