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

Commit afe05bb

Browse files
committed
last updates for 8.2.2 release
1 parent a3a6b38 commit afe05bb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

hptool/src/PlatformDB.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ release vstr incs = Release (HpVersion $ version vstr) incs []
3333
-- | Construct list of Includes as a delta to packages in another release.
3434
-- The contents of the single list provided are applied to both the core and
3535
-- the full include lists (since full is just the additions to core with no
36-
-- overlap).
36+
-- overlap). Note that this will only _update_ packages, not provide new ones.
3737
deltaFrom :: Release -> [Include] -> ([Include], [Include])
3838
deltaFrom base deltas = ( go (relMinimalIncludes base) deltas
3939
, go (relIncludes base) deltas )
4040
where
41-
go [] dIncs = dIncs
41+
go [] dIncs = [] --dIncs
4242
go (bInc : bIncs) dIncs =
4343
let (updates, dIncs') = partition (match bInc) dIncs
4444
in merge bInc updates : go bIncs dIncs'

hptool/src/Releases2017.hs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,17 @@ hp_8_2_2 =
121121
and as such, do not carry the same stability guaruntees.
122122
, incGHCLib "ghc-prim" "0.5.1.1"
123123
-}
124+
124125
, incTool "alex" "3.2.3"
125126
, incTool "happy" "1.19.8"
126127

127128
, incTool "hscolour" "1.24.2"
128129
, incLib "HTTP" "4000.3.8"
129130
, incLib "QuickCheck" "2.10.1"
130131
, incLib "scientific" "0.3.5.2"
132+
133+
, incGHCTool "cabal-install" "2.0.0.1"
134+
, incGHCTool "stack" "1.6.1"
131135
]
132136

133137

0 commit comments

Comments
 (0)