summarylogtreecommitdiffstats
AgeCommit message (Collapse)Author
8 daysSet cabal update timestampgesh
Avoids re-updating too frequently -- it's rare that we need a higher resolution of updates than this, in which case a manual `cabal update` should suffice. (Otherwise, if hackage updated between builds, this will trigger another update)
2025-06-22Add forgotten ghc makedependgesh
In adapting my stack-based PKGBUILDs, forgot cabal doesn't automatically pull in GHC -- h/t to @andykluger who reminded me this was necessary
2025-01-19Specify provides versiongesh
2025-01-19Add forgotten conflicts entrygesh
2025-01-19Cleanup for consistency with my other packagesgesh
2024-12-03Build package itself offlinegesh
Separate building the package and its deps into build() and prepare(), respectively (perhaps counterindicated and a sign we should actually be using the wider Arch Haskell ecosystem? Will revert if I see pushback) Uses the --offline flag added in cabal 3.12.1.0 -- the flag was added way back in 1.24.0.0 in 2016-03, so it won't complain on older cabals, but the functionality for build was only added in 3.12.1.0
2024-05-29Remove local-only filesgesh
.gitattributes are useful for local configuration, but they shouldn't have been checked in
2024-05-02Minor corrections based on #haskell feedbackgesh
Plus add prepare() for when building in a chroot
2024-04-15Update license to SPDX, add git makedepgesh
Thanks to @alerque for reminding me of the makedep requirement
2024-03-16Fix pkgver()gesh
Don't retag for a version if a tag already exists (picked up on by this causing unexpected output)
2023-04-21Stop patching compatibility manuallygesh
Brittle, and upstream has merged anyway
2022-03-22Cleanupgesh
* Use patch instead of git am -- latter has some heaviness (but not enough for its own patch) NOTE: This is currently commented out since the change has the side effect of downgrading the package -- git am creates a new commit, and so it is counted for determining the version, whereas patch just modifies the working tree. * Clarify why the weird pkgver() * Use v2- over new- commands for stability * No need for $srcdir prefix everywhere
2021-11-07gitattributes: ignore whitespace in SRCINFOgesh
Previous config also killed diffs
2021-10-27Fix build on GHC 8.10.4, GHC 9.0.1gesh
Accepts PR #32 from upstream
2021-10-27Initial commitgesh