Path to this page:
./
lang/ghc94,
Compiler for the functional language Haskell - 9.4 Release Series
Branch: CURRENT,
Version: 9.4.7,
Package name: ghc-9.4.7,
Maintainer: pkgsrc-usersGHC: The Glasgow Haskell Compiler.
The Glasgow Haskell Compiler is a robust, fully-featured, optimising
compiler for the functional programming language Haskell 98
(http://www.haskell.org). GHC compiles Haskell to either native code
or C. It implements numerous experimental language extensions to
Haskell, including concurrency, a foreign language interface, several
type-system extensions, exceptions, and so on. GHC comes with a
generational garbage collector, a space and time profiler, and a
comprehensive set of libraries.
This package provides the 9.4.x release series.
DEINSTALL [+/-]#!/bin/sh
#
GHC_VERSION="@GHC_VERSION@"
case ${STAGE} in
DEINSTALL)
${RM} -f ${PKG_PREFIX}/lib/${PKGBASE}-${GHC_VERSION}/package.conf.d/package.cache
;;
esac
Master sites:
Filesize: 27947.727 KB
Version history: (Expand)
- (2023-10-09) Updated to version: ghc-9.4.7
- (2023-08-14) Updated to version: ghc-9.4.4nb3
- (2023-02-09) Updated to version: ghc-9.4.4nb2
- (2023-01-23) Updated to version: ghc-9.4.4nb1
- (2023-01-21) Package added to pkgsrc.se, version ghc-9.4.4 (created)
CVS history: (Expand)
2023-10-12 09:51:09 by Masatake Daimon | Files touched by this commit (1) |
Log message:
lang/ghc94: Fix "make bootstrap" on Darwin
|
2023-10-11 05:07:31 by Masatake Daimon | Files touched by this commit (3) |
Log message:
lang/ghc94: Fix broken "make bootstrap"
Bootstrapping the compiler without "cabal-install" is something GHC devs
rarely do, and it keeps bitrotting. This time I could make it work again,
but at some point we might end up having to distribute binaries of
cabal-install for each platform.
|
2023-10-10 16:58:42 by Masatake Daimon | Files touched by this commit (2) |
Log message:
lang/ghc94: Fix build of hadrian/bootstrap with cabal-install-parsers >= 0.6
|
2023-10-09 04:49:53 by Masatake Daimon | Files touched by this commit (6) |
Log message:
lang/ghc94: Update to GHC 9.4.7
Release notes:
9.4.5: https://downloads.haskell.org/~ghc/9.4.5/docs/users_guide/9.4.5-notes.html
9.4.6: https://downloads.haskell.org/~ghc/9.4.6/docs/users_guide/9.4.6-notes.html
9.4.7: https://downloads.haskell.org/~ghc/9.4.7/docs/users_guide/9.4.7-notes.html
|
2023-08-14 07:25:36 by Thomas Klausner | Files touched by this commit (1247) |
Log message:
*: recursive bump for Python 3.11 as new default
|
2023-06-06 14:42:56 by Taylor R Campbell | Files touched by this commit (1319) |
Log message:
Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.
Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).
No change to BUILD_DEPENDS as used correctly inside buildlink3.
As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
|
2023-02-21 11:36:55 by Jonathan Perkin | Files touched by this commit (1) |
Log message:
ghc94: Switch PYTHON_FOR_BUILD_ONLY to "tool".
Setting it to "yes" performs a full buildlink3 inclusion of the necessary
python version. This brings in gettext-lib, which on some platforms will add
an explicit -lintl to linker args, but gettext-lib is not marked as a full
dependency so this ends in runtime failures with missing libintl.
Switching to "tool" uses a plain DEPENDS instead so no problems.
|
2023-01-24 12:13:18 by Masatake Daimon | Files touched by this commit (2) |
Log message:
Fix build on FreeBSD/i386
|