Skip to content

feat: Update gtk2hs-buildtools version to fix stack build in some cases #132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -6,5 +6,5 @@ extra-deps:
- gio-0.13.8.1@sha256:7404841eefdfffb50c2b5f63879ffe4bf40fb5ddf90a7f633494eca0e23150a5,3136
- glib-0.13.8.1@sha256:42670daf0c85309281e08ba8559df75daa2e3be642e79fdfa781bef5e59658b0,3156
- gtk-0.15.5@sha256:62b0ed14e07e57f13a575d36f37c6f250ee9ed45d68d492685e8bd26c35c2203,16598
- gtk2hs-buildtools-0.13.8.0@sha256:132f38155fc677430a47ea750918973161c876fb6f281d342ac2f07eb99229ce,5238
- gtk2hs-buildtools-0.13.8.3
- pango-0.13.8.1@sha256:877b121c0bf87c96d3619effae6751ecfd74b7f7f3227cf3fde012597aed5ed9,3917

Unchanged files with check annotations Beta

= chop (sofar + time_in_this_slice t) start ts
where
(s, e)
| DurationTreeLeaf ev <- t = (startTimeOf ev, endTimeOf ev)

Check warning on line 94 in GUI/Timeline/Activity.hs

GitHub Actions / ubuntu-latest / ghc 8.8.4

Pattern match(es) are non-exhaustive

Check warning on line 94 in GUI/Timeline/Activity.hs

GitHub Actions / ubuntu-latest / ghc 8.10.7

Pattern match(es) are non-exhaustive

Check warning on line 94 in GUI/Timeline/Activity.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive

Check warning on line 94 in GUI/Timeline/Activity.hs

GitHub Actions / ubuntu-latest / ghc 9.0.2

Pattern match(es) are non-exhaustive
| DurationSplit s _ e _ _ _run _ <- t = (s, e)
mi = min (start + slice) e
. elems
where
accum info (Event _ (ProgramArgs _ (name:args)) _) =
info {

Check warning on line 107 in GUI/StartupInfoView.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
progName = Just name,
progArgs = Just args
}
accum info (Event _ (ProgramEnv _ env) _) =
info { progEnv = Just (sort (parseEnv env)) }

Check warning on line 113 in GUI/StartupInfoView.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
accum info (Event _ (RtsIdentifier _ rtsid) _) =
info { progRtsId = Just rtsid }

Check warning on line 116 in GUI/StartupInfoView.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
accum info (Event timestamp (WallClockTime _ sec nsec) _) =
-- WallClockTime records the wall clock time of *this* event
- (fromIntegral timestamp / nanoseconds)
nanoseconds = 1000000000
wallTimeUTC = posixSecondsToUTCTime wallTimePosix
in info { progStartTime = Just wallTimeUTC }

Check warning on line 128 in GUI/StartupInfoView.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
accum info _ = info
(ts,_) <- listStoreGetValue bookmarkStore pos
bookmarkViewGotoBookmark ts
onRowActivated bookmarkTreeView $ \[pos] _ -> do

Check warning on line 120 in GUI/BookmarkView.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
(ts, _) <- listStoreGetValue bookmarkStore pos
bookmarkViewGotoBookmark ts
set cellLabel [ cellTextEditable := True ]
on cellLabel edited $ \[pos] val -> do

Check warning on line 125 in GUI/BookmarkView.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
bookmarkViewEditLabel pos val
---------------------------------------------------------------------------
selection' = PointSelection cursorTs'
timelineSetSelection timelineWin selection'
eventsViewSetCursor eventsView cursorPos' Nothing
continueWith eventlogState {

Check warning on line 355 in GUI/Main.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
selection = selection',
cursorPos = cursorPos'
}
eventsViewSetCursor eventsView cursorPos' Nothing
histogramViewSetInterval histogramView Nothing
summaryViewSetInterval summaryView Nothing
continueWith eventlogState {

Check warning on line 367 in GUI/Main.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
selection = selection',
cursorPos = cursorPos'
}
eventsViewSetCursor eventsView cursorPos' mrange
histogramViewSetInterval histogramView (Just (start, end))
summaryViewSetInterval summaryView (Just (start, end))
continueWith eventlogState {

Check warning on line 380 in GUI/Main.hs

GitHub Actions / ubuntu-latest / ghc 9.2.2

Pattern match(es) are non-exhaustive
selection = selection',
cursorPos = cursorPos'
}