mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 02:49:14 -04:00
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
29 lines
929 B
Text
29 lines
929 B
Text
--- fortran-src.cabal.orig 2018-05-18 02:24:45 UTC
|
|
+++ fortran-src.cabal
|
|
@@ -28,7 +28,7 @@ executable fortran-src
|
|
uniplate >= 1.6 && < 2,
|
|
GenericPretty >= 1.2.2 && < 2,
|
|
pretty >= 1.1 && < 2,
|
|
- containers >= 0.5 && < 0.6,
|
|
+ containers >= 0.5 && < 0.7,
|
|
text >= 1.2 && < 2,
|
|
bytestring >= 0.10 && < 0.11,
|
|
binary >= 0.8.3.0 && < 0.9,
|
|
@@ -78,7 +78,7 @@ library
|
|
uniplate >= 1.6 && < 2,
|
|
GenericPretty >= 1.2.2 && < 2,
|
|
pretty >= 1.1 && < 2,
|
|
- containers >= 0.5 && < 0.6,
|
|
+ containers >= 0.5 && < 0.7,
|
|
text >= 1.2 && < 2,
|
|
bytestring >= 0.10 && < 0.11,
|
|
binary >= 0.8.3.0 && < 0.9,
|
|
@@ -102,7 +102,7 @@ test-suite spec
|
|
filepath >= 1.4 && < 2,
|
|
GenericPretty >= 1.2.2 && < 2,
|
|
pretty >= 1.1 && < 2,
|
|
- containers >= 0.5 && < 0.6,
|
|
+ containers >= 0.5 && < 0.7,
|
|
text >= 1.2 && < 2,
|
|
bytestring >= 0.10 && < 0.11,
|
|
binary >= 0.8.3.0 && < 0.9,
|