This repository was archived by the owner on Feb 3, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff 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.
3737deltaFrom :: Release -> [Include ] -> ([Include ], [Include ])
3838deltaFrom 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'
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments