Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.

Commit

Permalink
last updates for 8.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gbaz committed Dec 8, 2017
1 parent a3a6b38 commit afe05bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hptool/src/PlatformDB.hs
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ release vstr incs = Release (HpVersion $ version vstr) incs []
-- | Construct list of Includes as a delta to packages in another release.
-- The contents of the single list provided are applied to both the core and
-- the full include lists (since full is just the additions to core with no
-- overlap).
-- overlap). Note that this will only _update_ packages, not provide new ones.
deltaFrom :: Release -> [Include] -> ([Include], [Include])
deltaFrom base deltas = ( go (relMinimalIncludes base) deltas
, go (relIncludes base) deltas )
where
go [] dIncs = dIncs
go [] dIncs = [] --dIncs
go (bInc : bIncs) dIncs =
let (updates, dIncs') = partition (match bInc) dIncs
in merge bInc updates : go bIncs dIncs'
Expand Down
4 changes: 4 additions & 0 deletions hptool/src/Releases2017.hs
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,17 @@ hp_8_2_2 =
and as such, do not carry the same stability guaruntees.
, incGHCLib "ghc-prim" "0.5.1.1"
-}

, incTool "alex" "3.2.3"
, incTool "happy" "1.19.8"

, incTool "hscolour" "1.24.2"
, incLib "HTTP" "4000.3.8"
, incLib "QuickCheck" "2.10.1"
, incLib "scientific" "0.3.5.2"

, incGHCTool "cabal-install" "2.0.0.1"
, incGHCTool "stack" "1.6.1"
]


Expand Down

0 comments on commit afe05bb

Please sign in to comment.