non port: devel/hs-c2hs/Makefile |
SVNWeb
|
Number of commits found: 71 |
Sat, 27 Feb 2021
|
[ 10:54 arrowd ]
devel/hs-c2hs: Mark deprecated.
|
Sat, 4 Jul 2020
|
[ 18:11 zeising ] (Only the first 10 of 105 ports in this commit are shown above. )
Chanse update of devel/libffi
Chase the devel/libffi update
Bump portrevision of all dependent ports to chace shard library version bump
in libffi.
Update LIB_DEPENDS lines where needed to not require a specific version of
libffi.so.
PR: 247028 (for tracking)
|
Mon, 4 May 2020
|
[ 18:08 arrowd ] (Only the first 10 of 166 ports in this commit are shown above. )
Upgrade lang/ghc to 8.8.3 and many Haskell ports along the way.
PR: 244784
Submitted by: Evilham <contact@evilham.com> (some ports)
|
Thu, 20 Jun 2019
|
[ 16:03 arrowd ] (Only the first 10 of 36 ports in this commit are shown above. )
In wrapper scripts, use $@ instead of $* to correctly pass arguments to the real
program
PR: 238719
Approved by: tcberner (mentor, implicit)
|
Thu, 13 Jun 2019
|
[ 13:57 arrowd ] (Only the first 10 of 50 ports in this commit are shown above. )
For ports with USES=cabal install a wrapper shell script instead of a real
executable into /bin/, that sets some environment variables to workaround
https://github.com/haskell/cabal/issues/5997
While there, update bunch of Haskell ports, install their data files.
PR: 237878
Reviewed by: tcberner
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D20556
|
Thu, 9 May 2019
|
[ 14:39 arrowd ] (Only the first 10 of 102 ports in this commit are shown above. )
Introduce USES=cabal and use it to build Haskell applications.
PR: 230186
Reviewed by: mat, tcberner
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D19730
|
Sun, 6 Jan 2019
|
[ 12:18 arrowd ] (Only the first 10 of 807 ports in this commit are shown above. )
lang/ghc: Update to 8.6.3 and bump PORTREVISION's of all Haskell ports.
As usual, it is recommended to rebuild or reinstall all the
dependent ports and the lang/ghc port itself in one of the following
ways:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
In case of pkg(8), it is probably safer to remove all the GHC-dependent
packages along with GHC and reinstall everything from scratch. For
example:
# pkg query "%ro" ghc > ghc-pkgs.txt
# pkg delete -y lang/ghc
# pkg install -y `cat ghc-pkgs.txt`
During update some hs-* ports got two PORTREVISION bumps in a row. Other ports
got a PORTVERSION update together with one PORTREVISION bump. This is caused
by bulk-bumping PORTREVISION of all hs-* ports. There are a lot of them updated,
so figuring out which ones require a bump and which are not is too tedious.
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D18707
|
Sat, 30 Jun 2018
|
[ 09:58 arrowd ] (Only the first 10 of 563 ports in this commit are shown above. )
lang/ghc: Update to 8.4.3 and bump PORTREVISION's of all Haskell ports.
As usual, it is recommended to rebuild or reinstall all the
dependent ports and the lang/ghc port itself in one of the following
ways:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
In case of pkg(8), it is probably safer to remove all the GHC-dependent
packages along with GHC and reinstall everything from scratch. For
example:
# pkg query "%ro" ghc > ghc-pkgs.txt
# pkg delete -y lang/ghc
In ghc-pkgs.txt, check and remove all the packages that have been moved
on the update, then use this command:
# pkg install -y `cat ghc-pkgs.txt`
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D16038
|
Fri, 25 May 2018
|
[ 21:44 tcberner ] (Only the first 10 of 966 ports in this commit are shown above. )
Update lang/ghc 8.4.2 and the hs-* ports the newer versions
* Update lang/ghc to 8.4.2
* Update the boostrap compiler to 8.4.1
* Update the many hs-* ports
* Bump the rest
Thanks a lot to arrowd for doing all the heavy lifting :)
PR: 227968
Exp-run by: antoine
Submitted by: arrowd
Differential Revision: https://reviews.freebsd.org/D15005
|
Sat, 10 Feb 2018
|
[ 08:03 tcberner ] (Only the first 10 of 560 ports in this commit are shown above. )
Switch C compiler used to compile GHC to base Clang.
This removes build dependency on gcc and runtime dependency on gcc's runtime
libraries.
Big thanks to Gleb for working on this.
PR: 225185
Submitted by: Gleb Popov <6yearold@gmail.com>
Exp-run by: antoine
Reviewed by: pgj
Differential Revision: https://reviews.freebsd.org/D12043
|
Tue, 8 Aug 2017
|
[ 17:21 tcberner ] (Only the first 10 of 1370 ports in this commit are shown above. )
- Update The Glorious Glasgow Haskell Compiler to version 8.0.2
- Simplified port by only suporting GCC, and creating a build.mk file
- Update Pandoc to 1.19.2.1
- Update git-annex to 6.20170520
- Update Darcs to 2.12.5
- Update Gtk2Hs to 0.13.2.2
- Update Agda to 2.5.2
Please note that port revisions for all the Haskell ports without version
changes are bumped.
See the UPDATING file for instructions.
New ports (63):
(Only the first 15 lines of the commit message are shown above )
|
Sat, 25 Mar 2017
|
[ 20:29 tcberner ]
Fixup devel/hs-c2hs and devel/hs-gtk2hs-buildtools to pass -std=c99 to the
preprocessor
The ports using c2hs and gtk2hs fail to build with modern compilers as the c11
features of the FreeBSD system headers are not hidden, yet the tools only
understand c99.
* revert change to devel/hs-ncurses from r436451
* patch devel/hs-c2hs to pass -std=c99.
* patch devel/hs-gtk2-buildtools to pass -std=c99.
This should fix compilation of
* devel/hs-ncurses
* dns/hs-gnuidn
* graphics/hs-cairo
* x11-toolkits/hs-vte
* devel/hs-gconf
PR: 216707
Reviewed by: rakuco
Approved by: portmgr (antoine)
Differential Revision: https://reviews.freebsd.org/D10081
|
Sat, 18 Mar 2017
|
[ 22:37 tcberner ]
Force compilation of of devel/hs-ncurses in c99 mode, to allow devel/gcc to be
updated
* hs-ncurses failed, as it does not understand c11 features, which is the
default
in modern compilers. By passing cpp-options: -std=c99 via its cabal file, this
can be surpressed.
* While here, also update the affected ports
PR: 216843
Approved by: maintainer timeout (4weeks), rakuco (mentor)
|
Thu, 20 Aug 2015
|
[ 23:02 pgj ] (Only the first 10 of 1153 ports in this commit are shown above. )
- Update The Glorious Glasgow Haskell Compiler to version 7.10.2
- Include a patch for addressing timer issues [1]
- Add support for building both GHC and Haskell ports with Clang, either from
ports or the base system
- Discontinue supporting Haskell Platform, use Stackage instead as a
reference
- Drop support for FreeBSD 8.x, optimize bootstrap compiler tarballs
- Update Gtk2Hs to version 0.13 [2]
- Update Pandoc to version 1.15.0.6
- Update git-annex to version 5.20150727
- Update Darcs to 2.10 [3]
- Unbreak wxHaskell ports
Please note that port revisions for all the Haskell ports without version
changes are bumped. (Only the first 15 lines of the commit message are shown above )
|
Wed, 10 Sep 2014
|
[ 20:50 gerald ] (Only the first 10 of 3171 ports in this commit are shown above. )
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit)
|
Sun, 10 Aug 2014
|
[ 22:34 pgj ] (Only the first 10 of 1166 ports in this commit are shown above. )
- Update The Glorious Glasgow Haskell Compiler to version 7.8.3
- Update Haskell Platform to version 2014.2.0.0
- Update Yesod Platform to version 1.2.13
- Update Gtk2Hs to version 0.12.5
- Update Pandoc to version 1.12.4.2
- Update git-annex to version 5.20140717
- Unbreak wxHaskell ports
Please note that port revisions for all the Haskell ports without version
changes are bumped.
New ports (69):
databases/hs-esqueleto: Type-safe EDSL for SQL queries on persistent backends
devel/hs-Glob: Globbing library (Only the first 15 lines of the commit message are shown above )
|
Sat, 29 Mar 2014
|
[ 00:52 pgj ] (Only the first 10 of 402 ports in this commit are shown above. )
- Reroll and update bootstrap Haskell compilers to GHC 7.6.3 on 8.x and
9.x in order to prevent run-time breakage after the recent changes in
libiconv
- Bump port revision for lang/ghc and all dependents, as a consequence
Obtained from: FreeBSD Haskell
|
Mon, 10 Mar 2014
|
[ 20:55 gerald ] (Only the first 10 of 1081 ports in this commit are shown above. )
Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.
Part II, Bump PORTREVISIONs.
PR: 182136
Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by: bdrewery (two -exp runs)
|
Thu, 9 Jan 2014
|
[ 21:32 pgj ] (Only the first 10 of 410 ports in this commit are shown above. )
- Stagify lang/ghc and all the Haskell Cabal ports
- Update HACKAGE_SITE to follow changes in upstream
- MAKE_ENV now sets LC_ALL and DESTDIR for Haskell Cabal ports
- Further minor cosmetical changes: replace USE_GMAKE with USES, get rid of
${DO_NADA}, some refactoring
Obtained from: FreeBSD Haskell
|
[ 21:29 pgj ] (Only the first 10 of 406 ports in this commit are shown above. )
- Fix a run-time problem with lang/ghc on FreeBSD 10.0 and later, caused by
the iconv changes (basically GHCi was rendered unusable)
- Fix build for x11-toolkits/hs-wxc, while here
- Bump port revision for all Haskell Cabal ports as they have to be rebuilt
PR: ports/184806
Reported by: many
Obtained from: FreeBSD Haskell
MFH: 2014Q1
|
Sat, 26 Oct 2013
|
[ 00:52 gerald ] (Only the first 10 of 1147 ports in this commit are shown above. )
Update to libmpc version 1.0.1 which brings the following fixes:
- Switched to automake 1.11.6, see CVE-2012-3386.
- #14669: Fixed extraction of CC from gmp.h.
- Fixed case of intermediate zero real or imaginary part in mpc_fma,
found by hydra with GMP_CHECK_RANDOMIZE=1346362345.
This is on top of the following changes from version 1.0
- Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no
invariant sections) for the documentation.
- 100% of all lines are covered by tests
- Renamed functions
. mpc_mul_2exp to mpc_mul_2ui
. mpc_div_2exp to mpc_div_2ui (Only the first 15 lines of the commit message are shown above )
|
Fri, 20 Sep 2013
|
[ 17:04 bapt ] (Only the first 10 of 482 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 2)
|
Tue, 4 Jun 2013
|
[ 18:53 pgj ] (Only the first 10 of 625 ports in this commit are shown above. )
- Update The Glorious Glasgow Haskell Compiler to version 7.6.3
- Update Haskell Platform to version 2013.2.0.0
Please note that port revisions for all the Haskell ports without version
changes are bumped.
Some highlights of the update:
- Fix PDF generation for pandoc [1]
- From now on, PREFIX/{lib,share,share/doc}/cabal/ghc-GHC_VERSION are used for
hs- ports (Cabal packages) as prefixes to avoid problems when upgrading with
portmaster(8) [2]
- Experimental support for LLVM-based code generation (disabled by default)
- Many simplifications, refactoring in bsd.cabal.mk
(Only the first 15 lines of the commit message are shown above )
|
Tue, 5 Feb 2013
|
[ 22:26 pgj ] (Only the first 10 of 595 ports in this commit are shown above. )
- Fix breakage in the DYNAMIC-enabled ports triggered by the recent
devel/libffi update
- Enable multithreaded build for lang/ghc (i.e. mark MAKE_JOBS_SAFE)
Please note that port revision for all the Haskell ports without version
changes are bumped.
New ports (20):
devel/hs-MonadRandom 0.1.8
devel/hs-base64-conduit 0.5.1
devel/hs-bifunctors 3.2
devel/hs-either 3.1
devel/hs-errors 1.3.1
devel/hs-generic-deriving 1.4.0 (Only the first 15 lines of the commit message are shown above )
|
Thu, 20 Dec 2012
|
[ 02:23 pgj ] (Only the first 10 of 1010 ports in this commit are shown above. )
- Update The Glorious Glasgow Haskell Compiler to version 7.4.2
- Update Haskell Platform to version 2012.4.0.0
- Update Gtk2Hs to 0.12.4
- Transfer maintainership of math/hs-math-functions to haskell@ [1]
Please note that port revisions for all the Haskell ports without version
changes are bumped.
Some further highlights of the update:
- Trim Makefile headers
- Enable dynamic libraries and dynamic linking by default
- Enable bootstrapping by versions of GHC and HsColour already installed
- Use GCC and binutils from ports
New ports (32): (Only the first 15 lines of the commit message are shown above )
|
Fri, 3 Aug 2012
|
[ 02:30 pgj ] (Only the first 10 of 286 ports in this commit are shown above. )
- Teach the Haskell Cabal ports to use the new options framework
- Remove some cruft
Obtained from: FreeBSD Haskell
|
Sun, 3 Jun 2012
|
[ 20:52 pgj ] (Only the first 10 of 191 ports in this commit are shown above. )
- Update The Glorious Glasgow Haskell Compiler to version 7.4.1
Please note that port revision for all the Haskell ports without version changes
are also bumped. Other per-port updates are coming soon (in separate commits)!
In addition to that, separate -docs ports are no longer needed so they are
now removed.
Thanks ashish@ for the assistance.
Obtained from: FreeBSD Haskell
|
Mon, 13 Feb 2012
|
[ 03:49 pgj ] (Only the first 10 of 99 ports in this commit are shown above. )
- Please welcome GHC 7.0.4
GHC in the ports tree has been updated to version 7.0.4 and the port revision
for all the Haskell ports without version changes are bumped. Other per-port
updates are coming soon.
This update also incorporates some improvements for bsd.cabal.mk that makes
working with Haskell ports even easier.
Thanks ashish@ for the help!
Obtained from: FreeBSD Haskell
|
Sun, 10 Jul 2011
|
[ 01:23 ashish ]
- Update to 0.16.3
Obtained from: FreeBSD Haskell
|
Mon, 9 May 2011
|
[ 05:28 ashish ] (Only the first 10 of 460 ports in this commit are shown above. )
- Please welcome GHC 7.0.3
GHC in the ports tree has been updated to 7.0.3 and all other Haskell ports
are also updated to their corresponding Haskell Platform versions, or latest
versions.
We would like to acknowledge the support of the FreeBSD Donations Team and
Eotvos Lorand University, Faculty of Informatics who contributed to the server
that we used for testing.
We would also like to thank all the testers who tested FreeBSD Haskell ports
and provided their feedback.
PR: ports/156642
Approved by: tabthorpe (mentor)
Obtained from: FreeBSD Haskell
|
Sat, 15 May 2010
|
[ 18:59 pgj ]
- Update to 0.16.2
|
Wed, 12 May 2010
|
[ 16:33 pgj ] (Only the first 10 of 214 ports in this commit are shown above. )
Introduce a new (and hopefully better) ports infrastructure for Haskell Cabal
ports which makes possible the direct translation of Cabal package
descriptions to FreeBSD ports. It promises both easier addition and
maintenance for Cabal-based ports.
|
Mon, 19 Apr 2010
|
[ 10:43 ale ] (Only the first 10 of 132 ports in this commit are shown above. )
Switch to use newer GMP version.
PR: ports/144487
Submitted by: ale
Approved by: portmgr (-exp run by erwin)
|
Wed, 2 Sep 2009
|
[ 15:38 pgj ] (Only the first 10 of 169 ports in this commit are shown above. )
- Update GHC and Haskell ports to 6.10.4 (for both i386 and amd64), bump
port revision where appropriate
- Add devel/hs-ghc-paths
- Add devel/hs-QuickCheck
- Add devel/hs-readline
- Add devel/hs-haskeline
- Add devel/hs-mmap
- Remove lang/ghc-doc
- Mark devel/lhs2TeX broken as it does not compile with GHC 6.10.4
- Set NHC98 as default compiler for devel/hs-hat as it does not compile
with GHC 6.10.4
PR: ports/137055, ports/137058, ports/137059, ports/137060,
ports/137061,
ports/137062, ports/137063, ports/137063, ports/137064,
ports/137065,
ports/137066, ports/137067, ports/137068, ports/137069,
ports/137070, (Only the first 15 lines of the commit message are shown above )
|
Wed, 13 May 2009
|
[ 09:46 ale ] (Only the first 10 of 95 ports in this commit are shown above. )
Chase libgmp and bump PORTREVISION.
|
Fri, 6 Mar 2009
|
[ 19:48 pgj ]
- Update to 0.16.0
Approved by: tabthorpe
|
Sun, 20 Jul 2008
|
[ 14:54 obraun ]
Add ghc as run depend, since c2hs installs files in ghc's cabal dir, and make
portlint happier.
|
Fri, 18 Jul 2008
|
[ 20:05 obraun ] (Only the first 10 of 23 ports in this commit are shown above. )
Upgrade ghc to 6.8.3.
|
Mon, 11 Feb 2008
|
[ 18:55 obraun ]
Update to 0.15.1.
|
Fri, 9 Nov 2007
|
[ 08:09 vs ]
Fix packaging blunder: install supporting file where it belongs
Approved by: portmgr (linimon)
|
Thu, 1 Nov 2007
|
[ 09:37 vs ]
Unbreak by updating to 0.15.0
Approved by: portmgr (erwin)
|
Sat, 19 May 2007
|
[ 20:32 flz ] (Only the first 10 of 7868 ports in this commit are shown above. )
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
|
Sat, 24 Mar 2007
|
[ 20:55 obraun ]
Mark broken with ghc 6.6.
Reported by: kris (bento)
|
Wed, 17 May 2006
|
[ 06:38 vs ]
Chase GHC update
|
Thu, 12 Jan 2006
|
[ 12:54 sem ] (Only the first 10 of 154 ports in this commit are shown above. )
- Update graphics/libglut to 6.4.1.
- Shared lib version and PORTREVISION bumb for all affected ports.
While I'm here:
- Remove USE_MESA knob where it was (35 ports).
It marked as depricated for 2 years.
PR: ports/90247
Submitted by: Ermal Lu?i <eri--@albabsd.org>
|
Fri, 14 Oct 2005
|
[ 12:09 vs ]
Chase update of lang/ghc
|
Wed, 18 May 2005
|
[ 19:43 obraun ]
Upgrade to 0.13.6.
|
Tue, 12 Apr 2005
|
[ 11:42 vs ]
Fix dependency. The port remains BROKEN though as it still hasn't been
updated to work with the latest GHC.
|
Sun, 10 Apr 2005
|
[ 21:41 kris ]
BROKEN: Broken dependency
|
Tue, 19 Oct 2004
|
[ 17:50 obraun ]
Upgrade to 0.13.4.
|
Sun, 17 Oct 2004
|
[ 09:25 obraun ]
Upgrade ghc to 6.2.2, remove BROKEN, make portlint a little bit happier.
|
Sat, 16 Oct 2004
|
[ 20:00 obraun ]
Upgrade to 0.13.2.
|
Fri, 16 Jul 2004
|
[ 15:44 vs ]
Minor portlint-spree, including fixes for package-building hs-tclhaskell-ghc
and hs-c2hs on the cluster (for 4.X).
|
Fri, 11 Jun 2004
|
[ 16:08 obraun ]
Upgrade to 0.13.1.
|
Thu, 25 Mar 2004
|
[ 08:29 obraun ]
ghc-6.2.1 is now in the tree
|
Thu, 11 Mar 2004
|
[ 07:48 obraun ] (Only the first 10 of 29 ports in this commit are shown above. )
deUSE_SIZEify.
|
Sat, 6 Mar 2004
|
[ 21:29 obraun ] (Only the first 10 of 22 ports in this commit are shown above. )
Set maintainer to the new created haskell@ mail alias.
|
Wed, 25 Feb 2004
|
[ 11:40 obraun ]
Make c2hs buildable with either ghc6 (default) or ghc5.
Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
|
Sun, 15 Feb 2004
|
[ 13:12 obraun ]
Upgrade to 0.12.0
|
Wed, 4 Feb 2004
|
[ 05:21 marcus ] (Only the first 10 of 1588 ports in this commit are shown above. )
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
|
Sat, 31 Jan 2004
|
[ 11:16 obraun ] (Only the first 10 of 60 ports in this commit are shown above. )
SIZE-ify
|
Fri, 16 Jan 2004
|
[ 12:09 obraun ]
Use lang/ghc5
|
Tue, 10 Jun 2003
|
[ 08:24 obraun ]
* Upgrade to 0.11.5.
* Remove WITH_PROFILE knob.
|
Mon, 9 Jun 2003
|
[ 21:45 obraun ]
Use ghc --numeric-version.
|
[ 18:39 obraun ]
Remove ghc's package.conf.old.
Pointed out by: kris, bento
|
Tue, 18 Feb 2003
|
[ 10:50 obraun ] (Only the first 10 of 42 ports in this commit are shown above. )
De-pkg-comment and make portlint a little bit happier.
|
Wed, 20 Nov 2002
|
[ 09:10 obraun ] (Only the first 10 of 20 ports in this commit are shown above. )
Add the new virtual category haskell.
|
Tue, 5 Nov 2002
|
[ 21:55 obraun ] (Only the first 10 of 36 ports in this commit are shown above. )
Use PORTCOMMENT variable instead of pkg-comment file.
|
Tue, 17 Sep 2002
|
[ 20:11 obraun ]
Upgrade to 0.10.17.
|
Sat, 7 Sep 2002
|
[ 20:07 obraun ]
* Upgrade to 0.10.16.
* Add knob WITH_PROFILE.
|
Wed, 4 Sep 2002
|
[ 18:39 obraun ] (Only the first 10 of 64 ports in this commit are shown above. )
Add prefix `hs-' for Haskell related ports after repo copy.
Remove Haskell ports without prefix.
|
Number of commits found: 71 |