[131411] trunk/dports
cal at macports.org
cal at macports.org
Sun Jan 11 13:17:30 PST 2015
Revision: 131411
https://trac.macports.org/changeset/131411
Author: cal at macports.org
Date: 2015-01-11 13:17:30 -0800 (Sun, 11 Jan 2015)
Log Message:
-----------
Haskell: remove duplicate hs-binary which is now provided by GHC, fix build of pandoc, #42082
The ghc port installs a copy of the binary haskell module as of 7.8.3.
Previously, we had an additional hs-binary port that would install the same
module. On its uninstallation, it also unregistered the copy that came with
GHC, breaking its dependencies. This makes a revbump for GHC necessary.
Additionally, this commit removes all hs-binary dependencies and increases the
revision to force a rebuild with GHC's copy (unless the port is also upgraded
in this commit, in which case the revbump is unnecessary).
This commit also
- updates hs-aeson to 0.7.0.4; 0.8.* is available, but requires a newer
hs-text. Since hs-text is part of the Haskell platform, we could (a) leave
the Haskell platform, which I'd like to avoid because it's tested and
stable, whereas latest and greatest of the modules in the platform might not
be, (b) ship a second, newer copy of hs-text, which is hard, because
packages that depend on two versions of hs-text are hard to avoid in this
case, and this situation could lead to build errors or crashes. For these
reasons I've decided to stay at the somewhat older hs-aeson (and because of
that and the same situation a couple of times more also at an older version
of pandoc).
- marks hs-binary obsolete
- updates hs-conduit to 1.2.3.1
- adds hs-enclosed-exceptions
- updates hs-resourcet to 1.1.3.3
- downgrades hs-scientific to 0.2.0.2 because hs-aeson 0.7.* needs
hs-scientific ==0.2.*
- updates hs-sha to 1.6.4.1
- updates hs-tagsoup to 0.13.3
- updates hs-texmath to 0.6.6.3, 0.8.* is available, but isn't supported
before pandoc 1.13
- updates hs-yaml to 0.8.10.1
- updates hs-zip-archive to 0.1.4
- updates pandoc to 1.12.4.2, which should close #42082
Modified Paths:
--------------
trunk/dports/devel/hs-aeson/Portfile
trunk/dports/devel/hs-binary/Portfile
trunk/dports/devel/hs-conduit/Portfile
trunk/dports/devel/hs-enclosed-exceptions/Portfile
trunk/dports/devel/hs-hashed-storage/Portfile
trunk/dports/devel/hs-hoc/Portfile
trunk/dports/devel/hs-hxt/Portfile
trunk/dports/devel/hs-juicypixels/Portfile
trunk/dports/devel/hs-pandoc-types/Portfile
trunk/dports/devel/hs-pointedlist/Portfile
trunk/dports/devel/hs-puremd5/Portfile
trunk/dports/devel/hs-resourcet/Portfile
trunk/dports/devel/hs-scientific/Portfile
trunk/dports/devel/hs-sha/Portfile
trunk/dports/devel/hs-tagsoup/Portfile
trunk/dports/devel/hs-texmath/Portfile
trunk/dports/devel/hs-yaml/Portfile
trunk/dports/devel/hs-zip-archive/Portfile
trunk/dports/devel/thrift/Portfile
trunk/dports/devel/thrift-devel/Portfile
trunk/dports/lang/ghc/Portfile
trunk/dports/textproc/pandoc/Portfile
Added Paths:
-----------
trunk/dports/devel/hs-enclosed-exceptions/
Modified: trunk/dports/devel/hs-aeson/Portfile
===================================================================
--- trunk/dports/devel/hs-aeson/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-aeson/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,10 +4,9 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup aeson 0.6.2.1
-revision 3
-checksums rmd160 ac3d7bb17f8110b2deb2633896b5c00c3cfa4b73 \
- sha256 cbcee6956d0a3cfc45073b6c160e9c412c3dfad0f36ec71d6044a391f108ca01
+haskell.setup aeson 0.7.0.4
+checksums rmd160 065188dba601b599a022fa727fb1fdc9f1b197ea \
+ sha256 53c83c4a488832d7964d9250e401066c236a80cdec66958f9b35104a19cb2f01
maintainers cal openmaintainer
platforms darwin
@@ -23,6 +22,7 @@
port:hs-dlist \
port:hs-hashable \
port:hs-mtl \
+ port:hs-scientific \
port:hs-syb \
port:hs-text \
port:hs-unordered-containers \
Modified: trunk/dports/devel/hs-binary/Portfile
===================================================================
--- trunk/dports/devel/hs-binary/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-binary/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -2,22 +2,11 @@
# $Id$
PortSystem 1.0
-PortGroup haskell 1.0
-haskell.setup binary 0.7.1.0
-revision 3
-license BSD
-maintainers cal openmaintainer
-platforms darwin
-
-checksums rmd160 fdd4d824cbb863a72272cab7d8c641b19c8e70c6 \
- sha256 9622efca717cd4f606dc3f43e93464b6eeb0f35e12dd0207065cc6533e498b99
-
-description Binary serialisation for Haskell values using lazy ByteStrings
-long_description \
- Efficient, pure binary serialisation using lazy ByteStrings. Haskell values \
- may be encoded to and from binary formats, written to disk as binary, or \
- sent over the network. The format used can be automatically generated, or \
- you can choose to implement a custom format if needed. Serialisation speeds \
- of over 1 G/sec have been observed, so this library should be suitable for \
- high performance scenarios.
+name hs-binary
+version 0.3.0.0
+revision 5
+license Permissive
+categories devel haskell
+replaced_by ghc
+PortGroup obsolete 1.0
Modified: trunk/dports/devel/hs-conduit/Portfile
===================================================================
--- trunk/dports/devel/hs-conduit/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-conduit/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,10 +4,9 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup conduit 1.0.9.3
-revision 3
-checksums rmd160 9525b7a17245c7fdd4b6c4257f7b42fb4eff19bf \
- sha256 90ccae260f2871005746995d4ad8dd215fdb73dfaf16753c223732b007725498
+haskell.setup conduit 1.2.3.1
+checksums rmd160 860bc0c659a6610335dfd27a0ac035fac703dd18 \
+ sha256 786d4b29f9478c7aad63fb9a264c5a077a7ed6c62a209fab56a6a9981c18c312
maintainers cal openmaintainer
platforms darwin
@@ -21,11 +20,10 @@
resource handling, and fits in the same general solution space as \
enumerator/iteratee and pipes.
-depends_lib-append port:hs-lifted-base \
+depends_lib-append port:hs-exceptions \
+ port:hs-lifted-base \
port:hs-mmorph \
- port:hs-monad-control \
port:hs-mtl \
port:hs-resourcet \
- port:hs-text \
port:hs-transformers-base \
port:hs-void
Modified: trunk/dports/devel/hs-enclosed-exceptions/Portfile
===================================================================
--- trunk/dports/devel/hs-yaml/Portfile 2015-01-10 21:17:38 UTC (rev 131394)
+++ trunk/dports/devel/hs-enclosed-exceptions/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,23 +4,21 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup yaml 0.8.5.2
-revision 5
-checksums rmd160 77a0d4f8090068ac93c2b55e8c00fa4aa94cb1ca \
- sha256 fbc999b2ee4062e942325037130e058bdaca214bb1f4e71428d7c553da2a48f4
+haskell.setup enclosed-exceptions 1.0.1
+checksums rmd160 af6d1eedd096355ab0139b64fad39d8a86fa70dd \
+ sha256 ff9b35b2278574002bf4ccf1c2293a7b500edba95382aa8242088a34220c2dce
-maintainers cal openmaintainer
+maintainers nomaintainer
platforms darwin
-license BSD
+license MIT
-description Support for parsing and rendering YAML documents
+description Catching all exceptions from within an enclosed computation
long_description \
- Provides support for parsing and emitting Yaml documents.
+ Catching all exceptions raised within an enclosed computation, while \
+ remaining responsive to (external) asynchronous exceptions. For more \
+ information on the technique, please see: \
+ https://www.fpcomplete.com/user/snoyberg/general-haskell/exceptions/catching-all-exceptions.
-depends_lib-append port:hs-aeson \
- port:hs-attoparsec \
- port:hs-conduit \
- port:hs-resourcet \
- port:hs-text \
- port:hs-unordered-containers \
- port:hs-vector
+depends_lib-append port:hs-async \
+ port:hs-lifted-base \
+ port:hs-monad-control
Modified: trunk/dports/devel/hs-hashed-storage/Portfile
===================================================================
--- trunk/dports/devel/hs-hashed-storage/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-hashed-storage/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -5,6 +5,7 @@
PortGroup haskell 1.0
haskell.setup hashed-storage 0.5.11
+revision 1
checksums rmd160 3be8b4a756c1bca25448a25e34415b4815382925 \
sha256 734b5e91081e355384f86fdd67f242e095e8c5196b182a62cc996fdabdb21569
@@ -13,18 +14,17 @@
license BSD
description Hashed file storage support code.
-long_description \
- Support code for reading and manipulating hashed file storage \
- (where each file and directory is associated with a \
- cryptographic hash, for corruption-resistant storage and fast \
- comparisons). \
- \
- The supported storage formats include darcs hashed pristine, \
- a plain filesystem tree and an indexed plain tree (where the \
- index maintains hashes of the plain files and directories).
+long_description \
+ Support code for reading and manipulating hashed file storage \
+ (where each file and directory is associated with a \
+ cryptographic hash, for corruption-resistant storage and fast \
+ comparisons). \
+ \
+ The supported storage formats include darcs hashed pristine, \
+ a plain filesystem tree and an indexed plain tree (where the \
+ index maintains hashes of the plain files and directories).
-depends_lib-append port:hs-binary \
- port:hs-dataenc \
+depends_lib-append port:hs-dataenc \
port:hs-extensible-exceptions \
port:hs-mmap \
port:hs-mtl \
Modified: trunk/dports/devel/hs-hoc/Portfile
===================================================================
--- trunk/dports/devel/hs-hoc/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-hoc/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -42,7 +42,6 @@
port:pkgconfig
depends_lib-append port:gmp \
- port:hs-binary \
port:hs-parsec \
port:hs-fgl
Modified: trunk/dports/devel/hs-hxt/Portfile
===================================================================
--- trunk/dports/devel/hs-hxt/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-hxt/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -5,7 +5,7 @@
PortGroup haskell 1.0
haskell.setup hxt 9.3.1.2
-revision 1
+revision 2
checksums rmd160 d6b21c01db606462660dd9281807db46596e6ec3 \
sha256 d6486d465f0827e456143da18fa5519b6b418123c1cb182c215a2e5dcc4f926c
@@ -24,8 +24,7 @@
funtions for serialization and deserialization of user defined data. The \
library makes extensive use of the arrow approach for processing XML.
-depends_lib-append port:hs-binary \
- port:hs-hunit \
+depends_lib-append port:hs-hunit \
port:hs-hxt-charproperties \
port:hs-hxt-regex-xmlschema \
port:hs-hxt-unicode \
Modified: trunk/dports/devel/hs-juicypixels/Portfile
===================================================================
--- trunk/dports/devel/hs-juicypixels/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-juicypixels/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -5,6 +5,7 @@
PortGroup haskell 1.0
haskell.setup JuicyPixels 3.2.2
+revision 1
checksums rmd160 820d86dabc1fee424b7038184d648aaf8f326071 \
sha256 1f3958b348eeecf928c91049af67cb504110e351b3f0b5225de3c403df21ad90
@@ -17,8 +18,7 @@
This package contains definitions for the Pandoc data structure, which is \
used by pandoc to represent structured documents.
-depends_lib-append port:hs-binary \
- port:hs-mmap \
+depends_lib-append port:hs-mmap \
port:hs-mtl \
port:hs-primitive \
port:hs-vector \
Modified: trunk/dports/devel/hs-pandoc-types/Portfile
===================================================================
--- trunk/dports/devel/hs-pandoc-types/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-pandoc-types/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -5,6 +5,7 @@
PortGroup haskell 1.0
haskell.setup pandoc-types 1.12.4.1
+revision 1
checksums rmd160 e038c591b3c2e81bcd1485e29762be11a0f2513a \
sha256 187bda4b12746b9cc460ae98b39d0964adace2bcca2fd0e343b1ea4234a86ff1
Modified: trunk/dports/devel/hs-pointedlist/Portfile
===================================================================
--- trunk/dports/devel/hs-pointedlist/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-pointedlist/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -5,7 +5,7 @@
PortGroup haskell 1.0
haskell.setup pointedlist 0.4.0.4
-revision 2
+revision 3
checksums rmd160 84a930040389d79ed300c2389b2f1cd40bdd9b59 \
sha256 69bced0457627a75682151e19e17b58a1f2acb8577cdccc2a1f0ae6d32e9dbdb
@@ -20,6 +20,5 @@
never be empty. A circular PointedList wraps around to the other end when \
progressing past the actual edge.
-depends_lib-append port:hs-binary \
- port:hs-derive \
+depends_lib-append port:hs-derive \
port:hs-fclabels
Modified: trunk/dports/devel/hs-puremd5/Portfile
===================================================================
--- trunk/dports/devel/hs-puremd5/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-puremd5/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -5,7 +5,7 @@
PortGroup haskell 1.0
haskell.setup pureMD5 2.1.2.1
-revision 3
+revision 4
checksums rmd160 b7c9c28e3422e8b1b14a3ad0b73feaee4576e017 \
sha256 6768174686d5eaef76b487f6f8160a932c48012668fbe542e7aba489134956ff
@@ -18,7 +18,6 @@
A Haskell-only implementation of the MD5 digest (hash) algorithm. This now \
supports the crypto-api class interface.
-depends_lib-append port:hs-binary \
- port:hs-cereal \
+depends_lib-append port:hs-cereal \
port:hs-crypto-api \
port:hs-tagged
Modified: trunk/dports/devel/hs-resourcet/Portfile
===================================================================
--- trunk/dports/devel/hs-resourcet/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-resourcet/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,22 +4,19 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup resourcet 0.4.9
-revision 1
-checksums rmd160 ee9a2b21508a421c18ed4830cd9e3ba83306f466 \
- sha256 5fd1329d934e0cf6f3f3c9c3db8c4b49064e4c77be568e25d472facd2bbceaca
+haskell.setup resourcet 1.1.3.3
+checksums rmd160 9aebd452b0a9106f4dbbd527b53a211697a120b3 \
+ sha256 829f2a7427429dbfd343e03c5bfb3e46c3bfbe84a797e9c166d40f0b66b80546
maintainers cal openmaintainer
platforms darwin
license BSD
description Deterministic allocation and freeing of scarce resources
-long_description \
- This package was originally included with the conduit package, and has \
- since been split off. For more information, please see \
- http://www.yesodweb.com/book/conduits.
+long_description ${description}
-depends_lib-append port:hs-lifted-base \
+depends_lib-append port:hs-exceptions \
+ port:hs-lifted-base \
port:hs-mmorph \
port:hs-monad-control \
port:hs-mtl \
Modified: trunk/dports/devel/hs-scientific/Portfile
===================================================================
--- trunk/dports/devel/hs-scientific/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-scientific/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,9 +4,10 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup scientific 0.3.3.5
-checksums rmd160 421d75491a252573079947c3578f66b73416dc0b \
- sha256 3d07689a786c20285982f463b61c848d4842159c46fa38868b1a896597a2f2cc
+epoch 1
+haskell.setup scientific 0.2.0.2
+checksums rmd160 fc0e643024a7e86102c136ab8ff6d186bc9cf495 \
+ sha256 c0114a8809f34c1bc284e53ce0ce836a0f23ed2535ef9df06417e65a9c6a398f
maintainers nomaintainer
platforms darwin
Modified: trunk/dports/devel/hs-sha/Portfile
===================================================================
--- trunk/dports/devel/hs-sha/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-sha/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,10 +4,9 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup SHA 1.6.1
-revision 5
-checksums rmd160 01950ac8e056fac60a50135d315a9f1896e031ec \
- sha256 fdb9924aa31493ad198e3b3498a8204cc7013e0ef86215faf1c4e435a7166aec
+haskell.setup SHA 1.6.4.1
+checksums rmd160 d1038e82bea102adee67d51359d3fcf9c62159d4 \
+ sha256 743bc6d7dd3e74a44bfca8920f0f0ba5855722a62f6cc44f0a38d10c11bddc0d
maintainers nomaintainer
platforms darwin
@@ -20,5 +19,3 @@
HMAC routines. The functions have been tested against most of the NIST and RFC test \
vectors for the various functions. While some attention has been paid to performance, \
these do not presently reach the speed of well-tuned libraries, like OpenSSL.
-
-depends_lib-append port:hs-binary
Modified: trunk/dports/devel/hs-tagsoup/Portfile
===================================================================
--- trunk/dports/devel/hs-tagsoup/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-tagsoup/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,10 +4,9 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup tagsoup 0.13
-revision 2
-checksums rmd160 b94f75cc39784199e51a8d62816308a7c8944a5a \
- sha256 617eba9017684ffcc4abe3627a43e2ad69d788901facdfa6a3b77f58b363d3dd
+haskell.setup tagsoup 0.13.3
+checksums rmd160 7cff95fed79e7b7b6e2c5d1d85cea00a832f925f \
+ sha256 32a862118d7836e9beb25fe4b317472fab6e1d41daefa86067231b328cff668d
platforms darwin
license BSD
Modified: trunk/dports/devel/hs-texmath/Portfile
===================================================================
--- trunk/dports/devel/hs-texmath/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-texmath/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,10 +4,9 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup texmath 0.6.5.2
-revision 4
-checksums rmd160 e709b5078abc57e903262097d2c8019240793b5c \
- sha256 749810eb9e01982730c66f11cdaf2af3252ee7dcc6a6089b1fa4cbad00716adf
+haskell.setup texmath 0.6.6.3
+checksums rmd160 fb270b239df58ca83a230b881cdbc4438bc1d130 \
+ sha256 82db05f65804453dcef692d2422bcff2d3b3ec9b0ea0811a4f49906599329eea
maintainers cal openmaintainer
platforms darwin
Modified: trunk/dports/devel/hs-yaml/Portfile
===================================================================
--- trunk/dports/devel/hs-yaml/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-yaml/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,10 +4,9 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup yaml 0.8.5.2
-revision 5
-checksums rmd160 77a0d4f8090068ac93c2b55e8c00fa4aa94cb1ca \
- sha256 fbc999b2ee4062e942325037130e058bdaca214bb1f4e71428d7c553da2a48f4
+haskell.setup yaml 0.8.10.1
+checksums rmd160 f563e22da28c518141d729e204b86ebe9db5fe0d \
+ sha256 e977912762e13571ec596173405ce328c8f7397aee4dd21f61ac9af762431ba9
maintainers cal openmaintainer
platforms darwin
@@ -20,7 +19,9 @@
depends_lib-append port:hs-aeson \
port:hs-attoparsec \
port:hs-conduit \
+ port:hs-enclosed-exceptions \
port:hs-resourcet \
+ port:hs-scientific \
port:hs-text \
port:hs-unordered-containers \
port:hs-vector
Modified: trunk/dports/devel/hs-zip-archive/Portfile
===================================================================
--- trunk/dports/devel/hs-zip-archive/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/hs-zip-archive/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,10 +4,9 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup zip-archive 0.1.3.4
-revision 5
-checksums rmd160 77f3b929bf6b3b836a80bdaf41653ddcb37a1bb9 \
- sha256 cbef41120d995a87702f7bb0c1ed8107f3f36a61714b2e31d9d19df5466e7643
+haskell.setup zip-archive 0.1.4
+checksums rmd160 67947b053161abcb84e066ec13362dce5e18dad5 \
+ sha256 8b0eef1b4211e0fb55c7689d2b3ce452278a32578b92f7c4c3114da1f843f346
platforms darwin
license BSD
@@ -18,8 +17,7 @@
The zip-archive library provides functions for creating, modifying, and \
extracting files from zip archives.
-depends_lib-append port:hs-binary \
- port:hs-digest \
+depends_lib-append port:hs-digest \
port:hs-mtl \
port:hs-utf8-string \
port:hs-zlib
Modified: trunk/dports/devel/thrift/Portfile
===================================================================
--- trunk/dports/devel/thrift/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/thrift/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -81,7 +81,6 @@
configure.args-append --with-haskell=yes
depends_lib-append port:ghc \
port:hs-http \
- port:hs-binary
}
variant php description "enable the PHP library" {
Modified: trunk/dports/devel/thrift-devel/Portfile
===================================================================
--- trunk/dports/devel/thrift-devel/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/devel/thrift-devel/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -89,7 +89,6 @@
configure.args-append --with-haskell=yes
depends_lib-append port:ghc \
port:hs-http \
- port:hs-binary
}
variant php description "enable the PHP library" {
Modified: trunk/dports/lang/ghc/Portfile
===================================================================
--- trunk/dports/lang/ghc/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/lang/ghc/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -8,6 +8,7 @@
# Do not update GHC separate from Haskell Platform.
# When updating GHC, make sure to revbump all Haskell ports.
version 7.8.3
+revision 1
categories lang haskell
maintainers gmail.com:kitchen.andy cal openmaintainer
license BSD
@@ -105,9 +106,11 @@
lappend obsoletes hs-process
# Legacy port deactivation hack added 2013-08-14, hs-template-haskell is provided by base
lappend obsoletes hs-template-haskell
- # Legacy port deactivation hack added 2015-01-05, hs-transformers and hs-xhtml are provided by base
+ # Legacy port deactivation hack added 2015-01-05, hs-transformers, hs-xhtml
+ # and hs-binary are provided by base
lappend obsoletes hs-transformers
lappend obsoletes hs-xhtml
+ lappend obsoletes hs-binary
foreach obsolete $obsoletes {
if {![catch {set obsolete_installed [lindex [registry_active $obsolete] 0]}]} {
Modified: trunk/dports/textproc/pandoc/Portfile
===================================================================
--- trunk/dports/textproc/pandoc/Portfile 2015-01-11 21:16:22 UTC (rev 131410)
+++ trunk/dports/textproc/pandoc/Portfile 2015-01-11 21:17:30 UTC (rev 131411)
@@ -4,9 +4,11 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup pandoc 1.12.2.1
-revision 7
+haskell.setup pandoc 1.12.4.2
name pandoc
+checksums rmd160 d3e725ff4ed36f9259c07ad3de6878e3acbd1a9b \
+ sha256 2f47f5f36498d26aa9cda7b93bcee76afedeeca7463478b5eda076209ba27f45
+
categories textproc
platforms darwin
license GPL-3
@@ -22,9 +24,6 @@
Textile, groff man pages, plain text, Emacs Org-Mode, AsciiDoc, EPUB (v2 \
and v3), FictionBook2, and S5, Slidy and Slideous HTML slide shows.
-checksums rmd160 89bdcc402abe0bc36641f1f30e268a705befe841 \
- sha256 8e9a37bb802efd44e6e6063060105ad4ef8328a093fccbd971c533f0b583dbf7
-
depends_lib-append \
port:hs-aeson \
port:hs-alex \
@@ -44,6 +43,7 @@
port:hs-parsec \
port:hs-random \
port:hs-syb \
+ port:hs-sha \
port:hs-tagsoup \
port:hs-temporary \
port:hs-texmath \
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150111/b3651fac/attachment-0001.html>
More information about the macports-changes
mailing list