diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2013-03-29 22:43:58 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2013-03-29 22:43:58 +0000 |
commit | bd8d410bbe561cb06cef8e6439398148ea172996 (patch) | |
tree | bb6acd9e4d75e5dd918d3f6f723ca485c7f0dd6f /www | |
parent | 18f2b16087e8ecd6790e8d551f1083d977da1d77 (diff) | |
download | ports-bd8d410bbe561cb06cef8e6439398148ea172996.tar.gz ports-bd8d410bbe561cb06cef8e6439398148ea172996.zip |
Notes
Diffstat (limited to 'www')
83 files changed, 317 insertions, 256 deletions
diff --git a/www/hs-activehs/Makefile b/www/hs-activehs/Makefile index 3f05460c179f..669699ee8b4d 100644 --- a/www/hs-activehs/Makefile +++ b/www/hs-activehs/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= activehs -PORTVERSION= 0.3.0.1 -PORTREVISION= 1 +PORTVERSION= 0.3.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -12,11 +11,11 @@ LICENSE= BSD CABAL_SETUP= Setup.hs -USE_CABAL= activehs-base>=0.2 Agda>=2.3.0.1 blaze-html>=0.5 \ - blaze-markup>=0.5.1.0 cmdargs>=0.7 data-pprint>=0.2 \ - dia-base>=0.1 dia-functions>=0.2.1.1 haskell-src-exts>=1.12 \ +USE_CABAL= activehs-base>=0.2 blaze-html>=0.5 blaze-markup>=0.5.1.0 \ + cmdargs>=0.7 data-pprint>=0.2 dia-base>=0.1 \ + dia-functions>=0.2.1.1 haskell-src-exts>=1.12 \ highlighting-kate>=0.5 hint>=0.3.3.2 hoogle>=4.2.11 mtl>=2.0 \ - pandoc>=1.8 pureMD5>=2.1 QuickCheck>=2.4 simple-reflect>=0.2 \ + pandoc>=1.10 pureMD5>=2.1 QuickCheck>=2.4 simple-reflect>=0.2 \ snap-core>=0.6 snap-server>=0.6 split>=0.1 syb>=0.2 \ text>=0.11 utf8-string>=0.3 xhtml>=3000.2 diff --git a/www/hs-activehs/distinfo b/www/hs-activehs/distinfo index bb773e290fc4..6846af2f7017 100644 --- a/www/hs-activehs/distinfo +++ b/www/hs-activehs/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/activehs-0.3.0.1.tar.gz) = 860556c074cde2dad353cf4ca68a47271947e574c4680c237e79fe8bbb8c5627 -SIZE (cabal/activehs-0.3.0.1.tar.gz) = 35745 +SHA256 (cabal/activehs-0.3.1.tar.gz) = 0c0ab3ef3338d713d0bde0ce288199ce28c6401e27545691f04e08450403ea0f +SIZE (cabal/activehs-0.3.1.tar.gz) = 33193 diff --git a/www/hs-activehs/files/patch-Main.hs b/www/hs-activehs/files/patch-Main.hs new file mode 100644 index 000000000000..0920ef39498b --- /dev/null +++ b/www/hs-activehs/files/patch-Main.hs @@ -0,0 +1,10 @@ +--- ./Main.hs.orig 2013-02-12 20:23:46.000000000 +0100 ++++ ./Main.hs 2013-02-18 19:59:53.000000000 +0100 +@@ -31,7 +31,6 @@ + import System.Locale (defaultTimeLocale) + import Data.Time (getCurrentTime, formatTime, diffUTCTime) + import Data.Maybe (listToMaybe) +---import Prelude hiding (catch) + + --------------------------------------------------------------- + diff --git a/www/hs-activehs/files/patch-Simple.hs b/www/hs-activehs/files/patch-Simple.hs new file mode 100644 index 000000000000..bc6f6eeca660 --- /dev/null +++ b/www/hs-activehs/files/patch-Simple.hs @@ -0,0 +1,19 @@ +--- ./Simple.hs.orig 2013-02-12 20:23:45.000000000 +0100 ++++ ./Simple.hs 2013-02-18 19:59:53.000000000 +0100 +@@ -1,4 +1,4 @@ +-{-# LANGUAGE ExistentialQuantification, ScopedTypeVariables, PatternGuards, FlexibleContexts #-} ++{-# LANGUAGE ExistentialQuantification, ScopedTypeVariables, PatternGuards, FlexibleContexts, CPP #-} + + module Simple + ( Task (..), TaskChan +@@ -23,7 +23,9 @@ + import Control.Monad (when, forever) + import Control.Monad.Error (MonadError, catchError) + import Data.List (isPrefixOf) +---import Prelude hiding (catch) ++#if !MIN_VERSION_base(4,6,0) ++import Prelude hiding (catch) ++#endif + + ------------------------- + diff --git a/www/hs-activehs/files/patch-Smart.hs b/www/hs-activehs/files/patch-Smart.hs new file mode 100644 index 000000000000..ad3d8eb0ba59 --- /dev/null +++ b/www/hs-activehs/files/patch-Smart.hs @@ -0,0 +1,10 @@ +--- ./Smart.hs.orig 2013-02-12 20:23:45.000000000 +0100 ++++ ./Smart.hs 2013-02-18 19:59:53.000000000 +0100 +@@ -37,7 +37,6 @@ + import qualified Data.Data as D + import Data.List (nub) + import Data.Char (isAlpha) +---import Prelude hiding (catch) + + + ---------------------------------------------------------------------- diff --git a/www/hs-activehs/files/patch-Special.hs b/www/hs-activehs/files/patch-Special.hs new file mode 100644 index 000000000000..af4c8ebd5c92 --- /dev/null +++ b/www/hs-activehs/files/patch-Special.hs @@ -0,0 +1,20 @@ +--- ./Special.hs.orig 2013-02-12 20:23:46.000000000 +0100 ++++ ./Special.hs 2013-02-18 19:59:53.000000000 +0100 +@@ -1,4 +1,4 @@ +-{-# LANGUAGE ScopedTypeVariables, OverloadedStrings, ViewPatterns, PatternGuards, NamedFieldPuns #-} ++{-# LANGUAGE ScopedTypeVariables, OverloadedStrings, ViewPatterns, PatternGuards, NamedFieldPuns, CPP #-} + + module Special + ( SpecialTask (..), exerciseServer' +@@ -25,8 +25,9 @@ + import System.Directory (getTemporaryDirectory) + + import Control.Concurrent (threadDelay, forkIO, killThread) +---import Prelude hiding (catch) +- ++#if !MIN_VERSION_base(4,6,0) ++import Prelude hiding (catch) ++#endif + + --------------------------------------------------------------- + diff --git a/www/hs-activehs/files/patch-activehs.cabal b/www/hs-activehs/files/patch-activehs.cabal index 5bbbc9570646..0528ec55bb35 100644 --- a/www/hs-activehs/files/patch-activehs.cabal +++ b/www/hs-activehs/files/patch-activehs.cabal @@ -1,10 +1,17 @@ ---- ./activehs.cabal.orig 2012-10-10 11:22:11.000000000 +0200 -+++ ./activehs.cabal 2012-11-03 20:34:38.000000000 +0100 -@@ -77,6 +77,7 @@ +--- ./activehs.cabal.orig 2013-02-12 20:23:46.000000000 +0100 ++++ ./activehs.cabal 2013-03-10 13:53:48.000000000 +0100 +@@ -76,11 +76,12 @@ + bytestring >= 0.9 && < 0.11, utf8-string >= 0.3 && < 0.4, xhtml >= 3000.2 && < 3000.3, - blaze-html >= 0.4 && < 0.6, +- blaze-html >= 0.4 && < 0.6, ++ blaze-html >= 0.4 && < 0.7, + blaze-markup == 0.5.1.*, pureMD5 >= 2.1 && < 2.2, deepseq >= 1.1 && < 1.4, split >= 0.1 && < 0.3, +- pandoc >= 1.10 && < 1.11, ++ pandoc >= 1.10 && < 1.12, + time >= 1.2 && < 1.5, + old-time >= 1.0 && < 1.2, + process >= 1.0 && < 1.2, diff --git a/www/hs-authenticate/Makefile b/www/hs-authenticate/Makefile index 702d408f6782..989957610dcc 100644 --- a/www/hs-authenticate/Makefile +++ b/www/hs-authenticate/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= authenticate -PORTVERSION= 1.3.2 -PORTREVISION= 1 +PORTVERSION= 1.3.2.6 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -10,9 +9,8 @@ COMMENT= Authentication methods for Haskell web applications LICENSE= BSD -USE_CABAL= aeson>=0.5 attoparsec blaze-builder blaze-builder-conduit>=0.5 \ - case-insensitive>=0.2 conduit>=0.5 http-conduit>=1.5 \ - http-types>=0.6 monad-control>=0.3 network resourcet>=0.3 \ +USE_CABAL= aeson>=0.5 attoparsec blaze-builder case-insensitive>=0.2 \ + conduit>=0.5 http-conduit>=1.5 http-types>=0.6 network \ tagsoup>=0.12 text transformers>=0.1 unordered-containers \ xml-conduit>=1.0 diff --git a/www/hs-authenticate/distinfo b/www/hs-authenticate/distinfo index 90f12bb9fd90..2af618b464d9 100644 --- a/www/hs-authenticate/distinfo +++ b/www/hs-authenticate/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/authenticate-1.3.2.tar.gz) = 35b531dea3acdd66abfd95684184062bd47da91e35a7920df8de0a0662766faf -SIZE (cabal/authenticate-1.3.2.tar.gz) = 8436 +SHA256 (cabal/authenticate-1.3.2.6.tar.gz) = 3f4b5b35e85083c22b3ff1cfa2bb18964f203b9d36695b118452aa69b0894f8b +SIZE (cabal/authenticate-1.3.2.6.tar.gz) = 8426 diff --git a/www/hs-css-text/Makefile b/www/hs-css-text/Makefile index eb3d1293afdd..8da00df73001 100644 --- a/www/hs-css-text/Makefile +++ b/www/hs-css-text/Makefile @@ -2,7 +2,7 @@ PORTNAME= css-text PORTVERSION= 0.1.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-fastcgi/Makefile b/www/hs-fastcgi/Makefile index 9bcaf6524ffd..a1fd23576fb3 100644 --- a/www/hs-fastcgi/Makefile +++ b/www/hs-fastcgi/Makefile @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= fastcgi -PORTVERSION= 3001.0.2.3 -PORTREVISION= 7 +PORTVERSION= 3001.0.2.4 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org -COMMENT= A Haskell library for writing FastCGI programs +COMMENT= Haskell library for writing FastCGI programs LICENSE= BSD -USE_CABAL= cgi>=3000 +USE_CABAL= cgi>=3000.0.0 + LIB_DEPENDS= fcgi.0:${PORTSDIR}/www/fcgi .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" diff --git a/www/hs-fastcgi/distinfo b/www/hs-fastcgi/distinfo index 21b85e546175..d3c0a3655326 100644 --- a/www/hs-fastcgi/distinfo +++ b/www/hs-fastcgi/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/fastcgi-3001.0.2.3.tar.gz) = 4a88ba6c93f64f539bc2ef8d27f39b7b2ef48cbd41a4134f49f1e36d75c335f7 -SIZE (cabal/fastcgi-3001.0.2.3.tar.gz) = 4490 +SHA256 (cabal/fastcgi-3001.0.2.4.tar.gz) = b91faff0f2316105147d4d95bd4ff5f9f3437a8007aac93feb830094003fe152 +SIZE (cabal/fastcgi-3001.0.2.4.tar.gz) = 4497 diff --git a/www/hs-gitit/Makefile b/www/hs-gitit/Makefile index 9146ae9f7c7d..09a237d26d6e 100644 --- a/www/hs-gitit/Makefile +++ b/www/hs-gitit/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gitit -PORTVERSION= 0.10.1.2 +PORTVERSION= 0.10.3.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -12,10 +12,10 @@ LICENSE= GPLv2 USE_CABAL= base64-bytestring>=0.1 blaze-html>=0.4 cgi ConfigFile>=1 \ feed>=0.3.6 filestore>=0.6 ghc-paths happstack-server>=7.0 \ highlighting-kate>=0.5.0.1 hslogger>=1 HStringTemplate>=0.6 \ - HTTP>=4000.0 json>=0.4 mtl network>=2.3 pandoc>=1.9.0.5 \ - pandoc-types>=1.9.0.2 parsec random recaptcha>=0.1 safe SHA>1 \ - syb tagsoup>=0.12 text url>=2.1 utf8-string>=0.3 \ - xhtml xml>=1.3.5 xss-sanitize>=0.3 zlib>=0.5 + HTTP>=4000.0 json>=0.4 mtl network>=2.3 pandoc>=1.10.0.5 \ + pandoc-types>=1.10 parsec random recaptcha>=0.1 safe SHA>1 \ + syb tagsoup>=0.12 text url utf8-string>=0.3 xhtml xml>=1.3.5 \ + xss-sanitize>=0.3 zlib>=0.5 EXECUTABLE= expireGititCache gitit diff --git a/www/hs-gitit/distinfo b/www/hs-gitit/distinfo index 1b2acd82587b..a5cf3d56839f 100644 --- a/www/hs-gitit/distinfo +++ b/www/hs-gitit/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/gitit-0.10.1.2.tar.gz) = 53d5074b7b2d34dbc0b2043791d52061f7e348e4fe6b877be99d99466de3c1b7 -SIZE (cabal/gitit-0.10.1.2.tar.gz) = 208344 +SHA256 (cabal/gitit-0.10.3.1.tar.gz) = a5aabbac331436121d7178533fad5482fb0e4469852dea48b32063ef7ccea6ea +SIZE (cabal/gitit-0.10.3.1.tar.gz) = 209218 diff --git a/www/hs-hS3/Makefile b/www/hs-hS3/Makefile index f86545cb302c..9457a301e5d6 100644 --- a/www/hs-hS3/Makefile +++ b/www/hs-hS3/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= hS3 -PORTVERSION= 0.5.6 -PORTREVISION= 5 +PORTVERSION= 0.5.7 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -10,10 +9,11 @@ COMMENT= Interface to Amazon's Simple Storage Service (S3) LICENSE= BSD -USE_CABAL= Crypto>=4.1.0 dataenc HTTP>=4000.0.0 hxt>=9.0.0 \ - MissingH>=0.18.6 network regex-compat utf8-string CABAL_SETUP= Setup.hs +USE_CABAL= Crypto>=4.1.0 dataenc HTTP>=4000.0.0 hxt>=9.0.0 \ + MissingH>=0.18.6 network random regex-compat utf8-string + EXECUTABLE= hs3 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" diff --git a/www/hs-hS3/distinfo b/www/hs-hS3/distinfo index 1aa2bcec33b5..6f7ce3b312e3 100644 --- a/www/hs-hS3/distinfo +++ b/www/hs-hS3/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/hS3-0.5.6.tar.gz) = ec0be701f8e46d725b2ceb5d54a1889823cb41668e53c43f05d74d07f76fa6b1 -SIZE (cabal/hS3-0.5.6.tar.gz) = 19626 +SHA256 (cabal/hS3-0.5.7.tar.gz) = c29979436fc81fb9a9b12a6cb18ab8d419d7d85bba8238e29d25e2aff836b7dc +SIZE (cabal/hS3-0.5.7.tar.gz) = 19543 diff --git a/www/hs-hamlet/Makefile b/www/hs-hamlet/Makefile index bb46432c37b4..c692eaacddcc 100644 --- a/www/hs-hamlet/Makefile +++ b/www/hs-hamlet/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hamlet -PORTVERSION= 1.1.3.1 +PORTVERSION= 1.1.6.3 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-hamlet/distinfo b/www/hs-hamlet/distinfo index 5c6e47582678..8b9a6b4c84ac 100644 --- a/www/hs-hamlet/distinfo +++ b/www/hs-hamlet/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/hamlet-1.1.3.1.tar.gz) = 3154195d217cdc93b0ca13b7833fecf825c38179c3c9773ef1093a60b3d41813 -SIZE (cabal/hamlet-1.1.3.1.tar.gz) = 19012 +SHA256 (cabal/hamlet-1.1.6.3.tar.gz) = 5a5b79cfaad1823a3a83384e1e563454430452b10e5862866b95457a8844f2ce +SIZE (cabal/hamlet-1.1.6.3.tar.gz) = 20596 diff --git a/www/hs-happstack-server/Makefile b/www/hs-happstack-server/Makefile index b46bef8ce724..83ccca8dbef1 100644 --- a/www/hs-happstack-server/Makefile +++ b/www/hs-happstack-server/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= happstack-server -PORTVERSION= 7.1.1 -PORTREVISION= 1 +PORTVERSION= 7.1.7 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -13,7 +12,7 @@ FILE_LICENSE= COPYING CABAL_SETUP= Setup.hs -USE_CABAL= base64-bytestring blaze-html hslogger>=1.0.2 html \ +USE_CABAL= base64-bytestring blaze-html>=0.5 hslogger>=1.0.2 html \ monad-control>=0.3 mtl>=2 network>=2.2.3 parsec \ sendfile>=0.7.1 syb system-filepath>=0.3.1 text>=0.10 \ threads>=0.5 time-compat transformers>=0.1.3 \ diff --git a/www/hs-happstack-server/distinfo b/www/hs-happstack-server/distinfo index 7065d2926b82..0bf201058c56 100644 --- a/www/hs-happstack-server/distinfo +++ b/www/hs-happstack-server/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/happstack-server-7.1.1.tar.gz) = eaac533246ee0b67c05a217b967e55a9e0118d1ada0b64aada3d163c47a22260 -SIZE (cabal/happstack-server-7.1.1.tar.gz) = 75704 +SHA256 (cabal/happstack-server-7.1.7.tar.gz) = e7d5bf684c7a9644cd87116f2639423c161f2f5cb939429457047c2284c2a7bd +SIZE (cabal/happstack-server-7.1.7.tar.gz) = 76019 diff --git a/www/hs-happstack/Makefile b/www/hs-happstack/Makefile index 0f2fda08bc9b..1b294f53ff21 100644 --- a/www/hs-happstack/Makefile +++ b/www/hs-happstack/Makefile @@ -2,7 +2,7 @@ PORTNAME= happstack PORTVERSION= 7.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-heist/Makefile b/www/hs-heist/Makefile index f370a3af9570..5b30430bc537 100644 --- a/www/hs-heist/Makefile +++ b/www/hs-heist/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= heist -PORTVERSION= 0.11.0 +PORTVERSION= 0.11.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -12,7 +12,7 @@ LICENSE= BSD CABAL_SETUP= Setup.hs USE_CABAL= aeson>=0.6 attoparsec>=0.10 blaze-builder>=0.2 \ - blaze-html>=0.4 directory-tree>=0.10 dlist>=0.5 errors>=1.3 \ + blaze-html>=0.4 directory-tree>=0.10 dlist>=0.5 errors>=1.4 \ hashable>=1.1 MonadCatchIO-transformers>=0.2.1 mtl>=2.0 \ random>=1.0.1.0 text>=0.10 unordered-containers>=0.1.4 \ vector>=0.9 xmlhtml>=0.1.6 diff --git a/www/hs-heist/distinfo b/www/hs-heist/distinfo index 893b546ef3b8..cd8571e3d969 100644 --- a/www/hs-heist/distinfo +++ b/www/hs-heist/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/heist-0.11.0.tar.gz) = fcccf0fdd7391e93ed209b97df3f59e89ed3f3c18e237ae206ddc8b6d45b7cfd -SIZE (cabal/heist-0.11.0.tar.gz) = 59557 +SHA256 (cabal/heist-0.11.1.tar.gz) = 50e6f3586e0a757f17d6f8109428fa3b891a47b1d4f2d134faaef4fe9897a69d +SIZE (cabal/heist-0.11.1.tar.gz) = 61291 diff --git a/www/hs-hjsmin/Makefile b/www/hs-hjsmin/Makefile index 5e6643e1db2e..0f2d1e58196b 100644 --- a/www/hs-hjsmin/Makefile +++ b/www/hs-hjsmin/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hjsmin -PORTVERSION= 0.1.4 +PORTVERSION= 0.1.4.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-hjsmin/distinfo b/www/hs-hjsmin/distinfo index 2cf660d929f9..6200d8cf8c84 100644 --- a/www/hs-hjsmin/distinfo +++ b/www/hs-hjsmin/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/hjsmin-0.1.4.tar.gz) = b6c33e6f18690cb871a3c43fb463721002ca6f0bc0773322a3c3f77381299cf0 -SIZE (cabal/hjsmin-0.1.4.tar.gz) = 116144 +SHA256 (cabal/hjsmin-0.1.4.1.tar.gz) = 2a2ca985c9ba648c0c96ca684c9d9f26998af1d8e68d28ea6af50c3b4d83e364 +SIZE (cabal/hjsmin-0.1.4.1.tar.gz) = 116268 diff --git a/www/hs-http-conduit/Makefile b/www/hs-http-conduit/Makefile index a4e95e2d53ec..828e7428bf9a 100644 --- a/www/hs-http-conduit/Makefile +++ b/www/hs-http-conduit/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= http-conduit -PORTVERSION= 1.8.7 +PORTVERSION= 1.9.0 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -9,14 +9,13 @@ COMMENT= HTTP client package with conduit interface and HTTPS support LICENSE= BSD -USE_CABAL= asn1-data>=0.5.1 attoparsec>=0.8.0.2 attoparsec-conduit>=0.5 \ - base64-bytestring>=0.1 blaze-builder>=0.2.1 \ +USE_CABAL= asn1-data>=0.5.1 base64-bytestring>=0.1 blaze-builder>=0.2.1 \ blaze-builder-conduit>=0.5 case-insensitive>=0.2 \ certificate>=1.3 conduit>=0.5.5 cookie>=0.4 cprng-aes>=0.2 \ data-default failure>=0.1 http-types>=0.7 lifted-base>=0.1 \ mime-types>=0.1 monad-control>=0.3 mtl network>=2.3 \ - random regex-compat resourcet>=0.3 socks>=0.4 text \ - tls>=1.0.0 tls-extra>=0.5.0 transformers>=0.2 \ + publicsuffixlist>=0.0.3 random regex-compat resourcet>=0.3 \ + socks>=0.4 text tls>=1.0.0 tls-extra>=0.5.0 transformers>=0.2 \ transformers-base>=0.4 utf8-string>=0.3.4 void>=0.5.5 \ zlib-conduit>=0.5 diff --git a/www/hs-http-conduit/distinfo b/www/hs-http-conduit/distinfo index 158e5c3c5987..f94656487990 100644 --- a/www/hs-http-conduit/distinfo +++ b/www/hs-http-conduit/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/http-conduit-1.8.7.tar.gz) = f124d0e883a3a213e362e2ba4719d3d5acb24e3ef73e2fa3a7cff4466ecf658b -SIZE (cabal/http-conduit-1.8.7.tar.gz) = 42238 +SHA256 (cabal/http-conduit-1.9.0.tar.gz) = f365952e83dacfdb6218ae7a5c462bc904f493dc6bbbc57d99ad39939e16ceac +SIZE (cabal/http-conduit-1.9.0.tar.gz) = 44423 diff --git a/www/hs-http-date/Makefile b/www/hs-http-date/Makefile index 4540169e8188..141767655f00 100644 --- a/www/hs-http-date/Makefile +++ b/www/hs-http-date/Makefile @@ -2,6 +2,7 @@ PORTNAME= http-date PORTVERSION= 0.0.4 +PORTREVISION= 1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-http-reverse-proxy/Makefile b/www/hs-http-reverse-proxy/Makefile index 0e94c8e835a3..27c337f1b3e1 100644 --- a/www/hs-http-reverse-proxy/Makefile +++ b/www/hs-http-reverse-proxy/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= http-reverse-proxy -PORTVERSION= 0.1.1.1 +PORTVERSION= 0.1.1.3 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -11,11 +11,10 @@ LICENSE= BSD CABAL_SETUP= Setup.hs -USE_CABAL= blaze-builder>=0.3 case-insensitive>=0.4 \ - classy-prelude-conduit>=0.3 conduit>=0.5 data-default \ - http-conduit>=1.6 http-types>=0.6 lifted-base>=0.1 \ - monad-control>=0.3 network network-conduit>=0.6 text>=0.11 \ - wai>=1.3 warp>=1.3.4 word8>=0.0 +USE_CABAL= blaze-builder>=0.3 case-insensitive>=0.4 classy-prelude>=0.3 \ + conduit>=0.5 data-default http-conduit>=1.6 http-types>=0.6 \ + lifted-base>=0.1 monad-control>=0.3 network network-conduit>=0.6 \ + text>=0.11 wai>=1.3 warp>=1.3.4 word8>=0.0 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include <bsd.port.mk> diff --git a/www/hs-http-reverse-proxy/distinfo b/www/hs-http-reverse-proxy/distinfo index 6e124fbc78b8..7a5abb694f33 100644 --- a/www/hs-http-reverse-proxy/distinfo +++ b/www/hs-http-reverse-proxy/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/http-reverse-proxy-0.1.1.1.tar.gz) = 62529458a4dd6a8d04aa44c1c0906f627f0bac7c4e685f7539ab052301efe675 -SIZE (cabal/http-reverse-proxy-0.1.1.1.tar.gz) = 6323 +SHA256 (cabal/http-reverse-proxy-0.1.1.3.tar.gz) = f65adce5c858710ac2df048aa9183d4596fbc506ecc3019dd56480b75717507c +SIZE (cabal/http-reverse-proxy-0.1.1.3.tar.gz) = 6357 diff --git a/www/hs-http-server/Makefile b/www/hs-http-server/Makefile index a8c9f3855ba7..9437c99680a6 100644 --- a/www/hs-http-server/Makefile +++ b/www/hs-http-server/Makefile @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= http-server -PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTVERSION= 1.0.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org -COMMENT= A library for writing Haskell web servers +COMMENT= Library for writing Haskell web servers LICENSE= BSD CABAL_SETUP= Setup.hs + USE_CABAL= HTTP>=4000.2.0 mime>=0.3 network>=2 url>=2 utf8-string>=0.3.4 INSTALL_PORTEXAMPLES= cd ${WRKSRC}/example && \ diff --git a/www/hs-http-server/distinfo b/www/hs-http-server/distinfo index c31b5b77c8d6..b73a2bbb8955 100644 --- a/www/hs-http-server/distinfo +++ b/www/hs-http-server/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/http-server-1.0.1.tar.gz) = 514541d73dab8269706c574ead7ac14e462ef2c7379decd7fc29f4ca38672749 -SIZE (cabal/http-server-1.0.1.tar.gz) = 28028 +SHA256 (cabal/http-server-1.0.2.tar.gz) = 44456c09b639c2c6259f679a2203ab995c2204f5f1402879323be37e8daaff87 +SIZE (cabal/http-server-1.0.2.tar.gz) = 27993 diff --git a/www/hs-http-types/Makefile b/www/hs-http-types/Makefile index 77121eaec11c..36de4256ee8d 100644 --- a/www/hs-http-types/Makefile +++ b/www/hs-http-types/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= http-types -PORTVERSION= 0.7.3.0.1 -PORTREVISION= 1 +PORTVERSION= 0.8.0 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-http-types/distinfo b/www/hs-http-types/distinfo index 75621a1c7f0d..8037ded42595 100644 --- a/www/hs-http-types/distinfo +++ b/www/hs-http-types/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/http-types-0.7.3.0.1.tar.gz) = 38a3a07fe8bf5b1433f5befc1d0e230c5a253ae0120e5038a55eb82bcb814de8 -SIZE (cabal/http-types-0.7.3.0.1.tar.gz) = 11762 +SHA256 (cabal/http-types-0.8.0.tar.gz) = e544fa89d83f4c6fa9e2a23a5389df59ee6824ded0b04a47e7d346c8df7fa191 +SIZE (cabal/http-types-0.8.0.tar.gz) = 11520 diff --git a/www/hs-shakespeare-css/Makefile b/www/hs-shakespeare-css/Makefile index d693cd267a4b..5c8013a5302b 100644 --- a/www/hs-shakespeare-css/Makefile +++ b/www/hs-shakespeare-css/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= shakespeare-css -PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTVERSION= 1.0.3 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-shakespeare-css/distinfo b/www/hs-shakespeare-css/distinfo index b3a1a09b78eb..25694c0ff2fc 100644 --- a/www/hs-shakespeare-css/distinfo +++ b/www/hs-shakespeare-css/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/shakespeare-css-1.0.2.tar.gz) = 63b25d95bf33e95da4181e2eb5a253ed97d80cb0b213556090cb9f32284e530b -SIZE (cabal/shakespeare-css-1.0.2.tar.gz) = 14735 +SHA256 (cabal/shakespeare-css-1.0.3.tar.gz) = 7f81c6147f8eb2ef0a6a879ae36cc437f187afb30afff5e6dc04f4b4c9b2647e +SIZE (cabal/shakespeare-css-1.0.3.tar.gz) = 14769 diff --git a/www/hs-shakespeare-i18n/Makefile b/www/hs-shakespeare-i18n/Makefile index e16e2193c53b..f5a6b11147d7 100644 --- a/www/hs-shakespeare-i18n/Makefile +++ b/www/hs-shakespeare-i18n/Makefile @@ -2,7 +2,7 @@ PORTNAME= shakespeare-i18n PORTVERSION= 1.0.0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-shakespeare-js/Makefile b/www/hs-shakespeare-js/Makefile index 725c3ab1ea2e..48bceee10136 100644 --- a/www/hs-shakespeare-js/Makefile +++ b/www/hs-shakespeare-js/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= shakespeare-js -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -9,7 +9,7 @@ COMMENT= Stick your Haskell variables into JavaScript at compile time LICENSE= MIT -USE_CABAL= aeson>=0.5 shakespeare>=1.0.2 text>=0.7 +USE_CABAL= aeson>=0.5 shakespeare>=1.0.3 text>=0.7 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include <bsd.port.mk> diff --git a/www/hs-shakespeare-js/distinfo b/www/hs-shakespeare-js/distinfo index a79360648dca..d4c51b33abfb 100644 --- a/www/hs-shakespeare-js/distinfo +++ b/www/hs-shakespeare-js/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/shakespeare-js-1.1.1.tar.gz) = 2fab2e8c720d66a0db908cb2a5574a8090986e57b1c2104642447475e358f0f7 -SIZE (cabal/shakespeare-js-1.1.1.tar.gz) = 6750 +SHA256 (cabal/shakespeare-js-1.1.2.1.tar.gz) = 1ff94325635d2a7ba26efe1967732f061e26ec41304ea9aaa88b9b212eb03611 +SIZE (cabal/shakespeare-js-1.1.2.1.tar.gz) = 7857 diff --git a/www/hs-shakespeare-text/Makefile b/www/hs-shakespeare-text/Makefile index 69f3b1a2efca..e8d24934005f 100644 --- a/www/hs-shakespeare-text/Makefile +++ b/www/hs-shakespeare-text/Makefile @@ -2,7 +2,7 @@ PORTNAME= shakespeare-text PORTVERSION= 1.0.0.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-shakespeare/Makefile b/www/hs-shakespeare/Makefile index 0390f692e322..5ec3ff4b0e8e 100644 --- a/www/hs-shakespeare/Makefile +++ b/www/hs-shakespeare/Makefile @@ -1,12 +1,11 @@ # $FreeBSD$ PORTNAME= shakespeare -PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTVERSION= 1.0.3.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org -COMMENT= A toolkit for making compile-time interpolated templates +COMMENT= Toolkit for making compile-time interpolated templates LICENSE= MIT diff --git a/www/hs-shakespeare/distinfo b/www/hs-shakespeare/distinfo index 2c82ce5ff7e1..e5d47737d5ff 100644 --- a/www/hs-shakespeare/distinfo +++ b/www/hs-shakespeare/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/shakespeare-1.0.2.tar.gz) = f5b718aff05b7759950091d3250ab35867e42e2849c0f6435003396173f5f8d8 -SIZE (cabal/shakespeare-1.0.2.tar.gz) = 8817 +SHA256 (cabal/shakespeare-1.0.3.1.tar.gz) = dae1111a232d02e50b06e291a64060506ec4629b62c8427cdb2ded3453788123 +SIZE (cabal/shakespeare-1.0.3.1.tar.gz) = 9807 diff --git a/www/hs-snap-core/Makefile b/www/hs-snap-core/Makefile index 808dc53048ae..45c988de0523 100644 --- a/www/hs-snap-core/Makefile +++ b/www/hs-snap-core/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= snap-core -PORTVERSION= 0.9.2.2 -PORTREVISION= 1 +PORTVERSION= 0.9.3.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -16,9 +15,8 @@ USE_CABAL= attoparsec>=0.10 attoparsec-enumerator>=0.3 \ blaze-builder>=0.2.1.4 blaze-builder-enumerator>=0.2 \ case-insensitive>=0.3 enumerator>=0.4.15 HUnit>=1.2 \ MonadCatchIO-transformers>=0.2.1 mtl>=2.0 random>=1 \ - regex-posix>=0.95 text>=0.11 transformers>=0.2 \ - unix-compat>=0.2 unordered-containers>=0.1.4.3 vector>=0.6 \ - zlib-enum>=0.2.1 + regex-posix>=0.95 text>=0.11 unix-compat>=0.2 \ + unordered-containers>=0.1.4.3 vector>=0.6 zlib-enum>=0.2.1 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include <bsd.port.mk> diff --git a/www/hs-snap-core/distinfo b/www/hs-snap-core/distinfo index 958dd7999ecd..0cec282680b8 100644 --- a/www/hs-snap-core/distinfo +++ b/www/hs-snap-core/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/snap-core-0.9.2.2.tar.gz) = 8ed60802fc131998027a026616d3e7f5850031def269effa4152c52b60846a6b -SIZE (cabal/snap-core-0.9.2.2.tar.gz) = 91227 +SHA256 (cabal/snap-core-0.9.3.1.tar.gz) = f8aaf66a9796e8be996649eedf1e0211f835dd0a5459a9a7a1644240c19954e0 +SIZE (cabal/snap-core-0.9.3.1.tar.gz) = 91232 diff --git a/www/hs-snap-server/Makefile b/www/hs-snap-server/Makefile index 5c49cd5c8c86..d8deab311304 100644 --- a/www/hs-snap-server/Makefile +++ b/www/hs-snap-server/Makefile @@ -1,12 +1,11 @@ # $FreeBSD$ PORTNAME= snap-server -PORTVERSION= 0.9.2.4 -PORTREVISION= 1 +PORTVERSION= 0.9.3.3 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org -COMMENT= A fast, iteratee-based, epoll-enabled web server for the Snap Framework +COMMENT= Fast, iteratee-based, epoll-enabled web server for the Snap Framework LICENSE= BSD @@ -14,9 +13,9 @@ CABAL_SETUP= Setup.hs USE_CABAL= attoparsec>=0.10 attoparsec-enumerator>=0.3 \ blaze-builder>=0.2.1.4 blaze-builder-enumerator>=0.2.0 \ - case-insensitive>=0.3 directory-tree>=0.10 enumerator>=0.4.15 \ + case-insensitive>=0.3 enumerator>=0.4.15 \ MonadCatchIO-transformers>=0.2.1 mtl>=2 network>=2.3 \ - snap-core>=0.9.2 text>=0.11 transformers>=0.2 unix-compat>=0.2 + snap-core>=0.9.3 text>=0.11 unix-compat>=0.2 OPTIONS_DEFINE= OPENSSL diff --git a/www/hs-snap-server/distinfo b/www/hs-snap-server/distinfo index 78c4e20ef49b..67d0642c56c0 100644 --- a/www/hs-snap-server/distinfo +++ b/www/hs-snap-server/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/snap-server-0.9.2.4.tar.gz) = f4c356f1b74681ed6bf807e5dc292fdc721352b64e15800d1c03e49626cd95cf -SIZE (cabal/snap-server-0.9.2.4.tar.gz) = 56202 +SHA256 (cabal/snap-server-0.9.3.3.tar.gz) = 2fd23a4164334592dc2c37b973e341d800734e280281b35d3c6a67f2a0efa0d8 +SIZE (cabal/snap-server-0.9.3.3.tar.gz) = 55532 diff --git a/www/hs-snap/Makefile b/www/hs-snap/Makefile index 7a24325a456b..6d49a52f63e0 100644 --- a/www/hs-snap/Makefile +++ b/www/hs-snap/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= snap -PORTVERSION= 0.11.0 +PORTVERSION= 0.11.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -13,13 +13,12 @@ CABAL_SETUP= Setup.hs USE_CABAL= aeson>=0.6 attoparsec>=0.10 cereal>=0.3 clientsession>=0.8 \ comonad>=1.1 configurator>=0.1 directory-tree>=0.10 \ - dlist>=0.5 either>=3.1 errors>=1.3 hashable>=1.1 \ - heist>=0.11 lens>=3.7.0.1 logict>=0.4.2 \ - MonadCatchIO-transformers>=0.2 mtl>2.0 mwc-random>=0.8 \ - pwstore-fast>=2.3 regex-posix>=0.95 snap-core>=0.9 \ - snap-server>=0.9 stm>=2.2 syb>=0.1 text>=0.11 \ - transformers>=0.2 unordered-containers>=0.1.4 vector>=0.7.1 \ - vector-algorithms>=0.4 xmlhtml>=0.1 + dlist>=0.5 errors>=1.4 hashable>=1.2 heist>=0.11 \ + lens>=3.7.6 logict>=0.4.2 MonadCatchIO-transformers>=0.2 \ + mtl>2.0 mwc-random>=0.8 pwstore-fast>=2.3 regex-posix>=0.95 \ + snap-core>=0.9 snap-server>=0.9 stm>=2.2 syb>=0.1 \ + text>=0.11 transformers>=0.2 unordered-containers>=0.1.4 \ + vector>=0.7.1 vector-algorithms>=0.4 xmlhtml>=0.1 EXECUTABLE= snap diff --git a/www/hs-snap/distinfo b/www/hs-snap/distinfo index 3f3085f09d1b..eaa865f23df4 100644 --- a/www/hs-snap/distinfo +++ b/www/hs-snap/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/snap-0.11.0.tar.gz) = f65c9d56d48c36286675fd0544fc0aac12d5dd2e2cdb1ffe4a7f341965778157 -SIZE (cabal/snap-0.11.0.tar.gz) = 78524 +SHA256 (cabal/snap-0.11.2.tar.gz) = 2a143fe96e59a6e79c24ad9790c0f955f80e1bdc60c6c04e90e0f5055b0936fd +SIZE (cabal/snap-0.11.2.tar.gz) = 79858 diff --git a/www/hs-wai-app-static/Makefile b/www/hs-wai-app-static/Makefile index dc7e5da5e586..950d4fb3a0e8 100644 --- a/www/hs-wai-app-static/Makefile +++ b/www/hs-wai-app-static/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= wai-app-static -PORTVERSION= 1.3.1 -PORTREVISION= 1 +PORTVERSION= 1.3.1.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-wai-app-static/distinfo b/www/hs-wai-app-static/distinfo index fa6975ffc69e..40092ce2f707 100644 --- a/www/hs-wai-app-static/distinfo +++ b/www/hs-wai-app-static/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/wai-app-static-1.3.1.tar.gz) = 930a8d0eb8d2cbe56346ee1c90474af2297f0b2407a9ee91aef6406c47874f64 -SIZE (cabal/wai-app-static-1.3.1.tar.gz) = 14806 +SHA256 (cabal/wai-app-static-1.3.1.2.tar.gz) = 9d149e143aa0d6e8e9ffbc41469e8e6992265567635903de20f887cb801d12c4 +SIZE (cabal/wai-app-static-1.3.1.2.tar.gz) = 14916 diff --git a/www/hs-wai-extra/Makefile b/www/hs-wai-extra/Makefile index b0e4a73bddff..a4eda6827d2d 100644 --- a/www/hs-wai-extra/Makefile +++ b/www/hs-wai-extra/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= wai-extra -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.2.4 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-wai-extra/distinfo b/www/hs-wai-extra/distinfo index 1e4c846fcdad..911e2b246842 100644 --- a/www/hs-wai-extra/distinfo +++ b/www/hs-wai-extra/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/wai-extra-1.3.2.tar.gz) = 03945d7bff2f10fa29ffb28ccc95b720b1f54cf277476b783e217a4996d30981 -SIZE (cabal/wai-extra-1.3.2.tar.gz) = 31367 +SHA256 (cabal/wai-extra-1.3.2.4.tar.gz) = 69b56b36ee5434af030f8bcc481bb8363ddb8461b5545919b404cc4560790d8a +SIZE (cabal/wai-extra-1.3.2.4.tar.gz) = 31566 diff --git a/www/hs-wai-logger/Makefile b/www/hs-wai-logger/Makefile index 240ec7657301..0f3958b2b71f 100644 --- a/www/hs-wai-logger/Makefile +++ b/www/hs-wai-logger/Makefile @@ -2,7 +2,7 @@ PORTNAME= wai-logger PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-wai-test/Makefile b/www/hs-wai-test/Makefile index b6e6359835bb..f626c8d4dda7 100644 --- a/www/hs-wai-test/Makefile +++ b/www/hs-wai-test/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= wai-test -PORTVERSION= 1.3.0 -PORTREVISION= 1 +PORTVERSION= 1.3.0.4 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-wai-test/distinfo b/www/hs-wai-test/distinfo index 5ed97df95fe4..980bfb259cec 100644 --- a/www/hs-wai-test/distinfo +++ b/www/hs-wai-test/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/wai-test-1.3.0.tar.gz) = 80c8d48e37f40fd1d130b95483bd59a1e5ae39a069684db4ad016ac20a57c097 -SIZE (cabal/wai-test-1.3.0.tar.gz) = 3098 +SHA256 (cabal/wai-test-1.3.0.4.tar.gz) = c07b23c9a67ead44da427f6d260572572d9cc32930313c3dc84823abb32325ea +SIZE (cabal/wai-test-1.3.0.4.tar.gz) = 3165 diff --git a/www/hs-wai-test/pkg-descr b/www/hs-wai-test/pkg-descr index 8d6862278088..3de4eb028941 100644 --- a/www/hs-wai-test/pkg-descr +++ b/www/hs-wai-test/pkg-descr @@ -1,3 +1,3 @@ Unit test framework (built on HUnit) for WAI applications. -WWW: http://www.yesodweb.com/book/wai +WWW: http://www.yesodweb.com/book/web-application-interface diff --git a/www/hs-wai/Makefile b/www/hs-wai/Makefile index dc4d02f7430d..c11b48449e8b 100644 --- a/www/hs-wai/Makefile +++ b/www/hs-wai/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= wai -PORTVERSION= 1.3.0.1 -PORTREVISION= 1 +PORTVERSION= 1.4.0 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-wai/distinfo b/www/hs-wai/distinfo index a5893a25fcb8..0af33c7c58c0 100644 --- a/www/hs-wai/distinfo +++ b/www/hs-wai/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/wai-1.3.0.1.tar.gz) = d42709d9b2bcf804bfcb92e36462d859d3ffbdee317ce6dd591272154ef7cb7c -SIZE (cabal/wai-1.3.0.1.tar.gz) = 4380 +SHA256 (cabal/wai-1.4.0.tar.gz) = b87131aac9454e47ad4cbd19cf15000fa835df527d569bb3533d5c2c56d42388 +SIZE (cabal/wai-1.4.0.tar.gz) = 4508 diff --git a/www/hs-warp/Makefile b/www/hs-warp/Makefile index 57230ac48cf1..8d82bfdd8ad8 100644 --- a/www/hs-warp/Makefile +++ b/www/hs-warp/Makefile @@ -1,11 +1,11 @@ # $FreeBSD$ PORTNAME= warp -PORTVERSION= 1.3.7.1 +PORTVERSION= 1.3.7.4 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org -COMMENT= A fast, light-weight web server for WAI applications +COMMENT= Fast, light-weight web server for WAI applications LICENSE= MIT diff --git a/www/hs-warp/distinfo b/www/hs-warp/distinfo index a185fd758bcc..47ed54308209 100644 --- a/www/hs-warp/distinfo +++ b/www/hs-warp/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/warp-1.3.7.1.tar.gz) = 143ec36c8065e7bb3c69c41664001c738fda6d65c2d20ebd8a0619267f674b4d -SIZE (cabal/warp-1.3.7.1.tar.gz) = 17904 +SHA256 (cabal/warp-1.3.7.4.tar.gz) = 3daf8e0a0ed8c9b3f53bb8e3631c5f1f7315913cf74342ecdc8b2ee9c21e047c +SIZE (cabal/warp-1.3.7.4.tar.gz) = 17755 diff --git a/www/hs-xss-sanitize/Makefile b/www/hs-xss-sanitize/Makefile index 855a7b7cfbee..f8f52335fe40 100644 --- a/www/hs-xss-sanitize/Makefile +++ b/www/hs-xss-sanitize/Makefile @@ -2,6 +2,7 @@ PORTNAME= xss-sanitize PORTVERSION= 0.3.3 +PORTREVISION= 1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-auth/Makefile b/www/hs-yesod-auth/Makefile index 0847c78d473d..4a3052d080bc 100644 --- a/www/hs-yesod-auth/Makefile +++ b/www/hs-yesod-auth/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-auth -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.5.3 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -10,13 +10,14 @@ COMMENT= Authentication for Yesod LICENSE= MIT USE_CABAL= aeson>=0.5 authenticate>=1.3 blaze-html>=0.5 \ - blaze-markup>=0.5.1 hamlet>=1.1 http-conduit>=1.5 \ - lifted-base>=0.1 mime-mail>=0.3 network persistent>=1.0 \ - persistent-template>=1.0 pureMD5>=2.0 pwstore-fast>=2.2 \ - random>=1.0.0.2 SHA>=1.4.1.3 shakespeare-css>=1.0 \ - shakespeare-js>=1.0.2 text>=0.7 transformers>=0.2.2 \ - unordered-containers wai>=1.3 yesod-core>=1.1 yesod-form>=1.1 \ - yesod-json>=1.1 yesod-persistent>=1.1 + blaze-markup>=0.5.1 file-embed hamlet>=1.1 http-conduit>=1.5 \ + http-types lifted-base>=0.1 mime-mail>=0.3 network \ + persistent>=1.0 persistent-template>=1.0 pureMD5>=2.0 \ + pwstore-fast>=2.2 random>=1.0.0.2 SHA>=1.4.1.3 \ + shakespeare-css>=1.0 shakespeare-js>=1.0.2 text>=0.7 \ + transformers>=0.2.2 unordered-containers wai>=1.3 \ + yesod-core>=1.1 yesod-form>=1.1 yesod-json>=1.1 \ + yesod-persistent>=1.1 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include <bsd.port.mk> diff --git a/www/hs-yesod-auth/distinfo b/www/hs-yesod-auth/distinfo index fda7ec22b331..8d428aaf0669 100644 --- a/www/hs-yesod-auth/distinfo +++ b/www/hs-yesod-auth/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-auth-1.1.3.tar.gz) = 1f4c213371eb29a2ac8eee54ba51b871c1e263a2670d307ea89c81a5a5299766 -SIZE (cabal/yesod-auth-1.1.3.tar.gz) = 17918 +SHA256 (cabal/yesod-auth-1.1.5.3.tar.gz) = 02fdd42abcb77a18f84f01855281a3f7cd04ab891945de051a1cd9793ff9591f +SIZE (cabal/yesod-auth-1.1.5.3.tar.gz) = 23041 diff --git a/www/hs-yesod-core/Makefile b/www/hs-yesod-core/Makefile index cfecc2fc7894..4d49b8c18043 100644 --- a/www/hs-yesod-core/Makefile +++ b/www/hs-yesod-core/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-core -PORTVERSION= 1.1.7.1 +PORTVERSION= 1.1.8.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-core/distinfo b/www/hs-yesod-core/distinfo index 0b5fe3c65577..9523f4b96b91 100644 --- a/www/hs-yesod-core/distinfo +++ b/www/hs-yesod-core/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-core-1.1.7.1.tar.gz) = 79b8f52264bf664a040d0b23ad7859cc98506dacfb01f33b04c67c88bc37301f -SIZE (cabal/yesod-core-1.1.7.1.tar.gz) = 44613 +SHA256 (cabal/yesod-core-1.1.8.2.tar.gz) = 5fa74a4fa1bc66688509631ef7324e87f4e0d48cd6db3df22fabd11d64dc392f +SIZE (cabal/yesod-core-1.1.8.2.tar.gz) = 44289 diff --git a/www/hs-yesod-default/Makefile b/www/hs-yesod-default/Makefile index 0f7e43a3eeef..2f78d67ed1a8 100644 --- a/www/hs-yesod-default/Makefile +++ b/www/hs-yesod-default/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-default -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.3.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-default/distinfo b/www/hs-yesod-default/distinfo index 33cbddd01c92..09ac7191121b 100644 --- a/www/hs-yesod-default/distinfo +++ b/www/hs-yesod-default/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-default-1.1.3.tar.gz) = 3e3a1b934526477cdd3e1a01aac0103470be261c9e097e41c1e22e40a55910bc -SIZE (cabal/yesod-default-1.1.3.tar.gz) = 7089 +SHA256 (cabal/yesod-default-1.1.3.2.tar.gz) = 0fb35bf68a029a00492998417bb8330a6f8e7470edacea6ae3610846a44ef51d +SIZE (cabal/yesod-default-1.1.3.2.tar.gz) = 7082 diff --git a/www/hs-yesod-form/Makefile b/www/hs-yesod-form/Makefile index 01853c833fa8..a8b32056e242 100644 --- a/www/hs-yesod-form/Makefile +++ b/www/hs-yesod-form/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-form -PORTVERSION= 1.2.0.2 +PORTVERSION= 1.2.1.3 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-form/distinfo b/www/hs-yesod-form/distinfo index d6f058042abf..a85a2c4a0889 100644 --- a/www/hs-yesod-form/distinfo +++ b/www/hs-yesod-form/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-form-1.2.0.2.tar.gz) = 7e6c3bf1b9a9ae251a26300feda7144ae87902dd6f4294281044d5fdb2386128 -SIZE (cabal/yesod-form-1.2.0.2.tar.gz) = 19597 +SHA256 (cabal/yesod-form-1.2.1.3.tar.gz) = f87aec0ccbbedde53466b2e2a8b286a1211663e7a4419af60673c2ecaec938d7 +SIZE (cabal/yesod-form-1.2.1.3.tar.gz) = 19573 diff --git a/www/hs-yesod-json/Makefile b/www/hs-yesod-json/Makefile index 09ad16c57a57..05c67bcd96b0 100644 --- a/www/hs-yesod-json/Makefile +++ b/www/hs-yesod-json/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-json -PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTVERSION= 1.1.2.1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-json/distinfo b/www/hs-yesod-json/distinfo index 453f44cf20da..5f6f131aab3f 100644 --- a/www/hs-yesod-json/distinfo +++ b/www/hs-yesod-json/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-json-1.1.2.tar.gz) = 2e6f60510f87685b902073c647e6ffd4efd78311251f4e5469bcbd8d0678726d -SIZE (cabal/yesod-json-1.1.2.tar.gz) = 3185 +SHA256 (cabal/yesod-json-1.1.2.1.tar.gz) = 0db7f3981fd4365af8b1fe7d1cb7ed7e278057f418a6a41bc7ec6023f6b0306f +SIZE (cabal/yesod-json-1.1.2.1.tar.gz) = 3150 diff --git a/www/hs-yesod-persistent/Makefile b/www/hs-yesod-persistent/Makefile index 02a457f524a5..6a4610181c23 100644 --- a/www/hs-yesod-persistent/Makefile +++ b/www/hs-yesod-persistent/Makefile @@ -2,6 +2,7 @@ PORTNAME= yesod-persistent PORTVERSION= 1.1.0.1 +PORTREVISION= 1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-platform/Makefile b/www/hs-yesod-platform/Makefile index 4b428d75c4df..cd4bce5d236f 100644 --- a/www/hs-yesod-platform/Makefile +++ b/www/hs-yesod-platform/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-platform -PORTVERSION= 1.1.7.2 +PORTVERSION= 1.1.8 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org @@ -9,106 +9,104 @@ COMMENT= Meta package for Yesod LICENSE= MIT -USE_CABAL= aeson==0.6.1.0 \ - ansi-terminal==0.5.5.1 \ +USE_CABAL= aeson==0.6.1.0_1 \ + ansi-terminal==0.6 \ asn1-data==0.7.1_1 \ - attoparsec==0.10.3.0 \ - attoparsec-conduit==0.5.0.3_1 \ - authenticate==1.3.2_1 \ + attoparsec==0.10.4.0 \ + attoparsec-conduit==1.0.0 \ + authenticate==1.3.2.6 \ base-unicode-symbols==0.2.2.4_1 \ - base64-bytestring==1.0.0.0_1 \ - base64-conduit==0.5.1 \ - basic-prelude==0.3.2.0 \ + base64-bytestring==1.0.0.1 \ + base64-conduit==1.0.0 \ + basic-prelude==0.3.4.0 \ blaze-builder==0.3.1.0_4 \ - blaze-builder-conduit==0.5.0.3_1 \ - blaze-html==0.5.1.3 \ + blaze-builder-conduit==1.0.0 \ + blaze-html==0.6.0.0 \ blaze-markup==0.5.1.4 \ byteorder==1.0.3_4 \ - case-insensitive==0.4.0.4 \ + case-insensitive==1.0 \ cereal==0.3.5.2_2 \ - certificate==1.3.5 \ + certificate==1.3.5_1 \ cipher-aes==0.1.7 \ cipher-rc4==0.1.2 \ - classy-prelude==0.4.3 \ - classy-prelude-conduit==0.4.3 \ - clientsession==0.8.1 \ - conduit==0.5.6 \ + classy-prelude==0.5.3 \ + clientsession==0.8.1_1 \ + conduit==1.0.2 \ cookie==0.4.0.1_1 \ - cprng-aes==0.3.4 \ - crypto-api==0.10.2_3 \ - crypto-conduit==0.4.3 \ + cprng-aes==0.3.4_1 \ + crypto-api==0.11 \ + crypto-conduit==0.5.0 \ crypto-numbers==0.1.3 \ - crypto-pubkey==0.1.2 \ + crypto-pubkey==0.1.2_1 \ crypto-pubkey-types==0.2.0_1 \ crypto-random-api==0.2.0 \ - cryptohash==0.8.3 \ - css-text==0.1.1_4 \ + cryptohash==0.8.3_1 \ + css-text==0.1.1_5 \ data-default==0.5.0_1 \ date-cache==0.3.0_1 \ dlist==0.5_8 \ - email-validate==0.3.2_1 \ + email-validate==1.0.0 \ entropy==0.2.1_4 \ failure==0.2.0.1_3 \ - fast-logger==0.3.1_1 \ + fast-logger==0.3.1_2 \ file-embed==0.0.4.7 \ - filesystem-conduit==0.5.0.2_1 \ + filesystem-conduit==1.0.0 \ fsnotify==0.0.6 \ ghc-paths==0.1.0.9 \ - hamlet==1.1.3.1 \ + hamlet==1.1.6.3 \ hashable==1.2.0.5 \ - hjsmin==0.1.4 \ - hspec==1.4.3 \ + hjsmin==0.1.4.1 \ + hspec==1.4.4 \ hspec-expectations==0.3.0.3_1 \ - html-conduit==0.1.0.4_1 \ - http-conduit==1.8.7 \ - http-date==0.0.4 \ - http-reverse-proxy==0.1.1.1 \ - http-types==0.7.3.0.1_1 \ + html-conduit==1.1.0 \ + http-conduit==1.9.0 \ + http-date==0.0.4_1 \ + http-reverse-proxy==0.1.1.3 \ + http-types==0.8.0 \ language-javascript==0.5.7_1 \ - largeword==1.0.4 \ lifted-base==0.2.0.2 \ - mime-mail==0.4.1.2_1 \ - mime-types==0.1.0.2 \ + mime-mail==0.4.1.2_2 \ + mime-types==0.1.0.3 \ monad-control==0.3.1.4_1 \ - monad-logger==0.2.3.2 \ - network-conduit==0.6.2.2 \ + monad-logger==0.3.0.1 \ + network-conduit==1.0.0 \ optparse-applicative==0.5.2.1 \ path-pieces==0.1.2_1 \ - pem==0.1.2 \ - persistent==1.1.4 \ - persistent-template==1.1.2.1 \ - pool-conduit==0.1.1 \ + pem==0.1.2_1 \ + persistent==1.1.5.1 \ + persistent-template==1.1.2.4 \ + pool-conduit==0.1.1_1 \ primitive==0.5.0.1_1 \ - project-template==0.1.1 \ - pureMD5==2.1.2.1_1 \ - pwstore-fast==2.3_1 \ - ranges==0.2.4_4 \ + project-template==0.1.3 \ + publicsuffixlist==0.0.3 \ + pureMD5==2.1.2.1_2 \ + pwstore-fast==2.3_2 \ ReadArgs==1.2.1_1 \ resource-pool==0.2.1.1_1 \ - resourcet==0.4.4_1 \ + resourcet==0.4.5 \ safe==0.3.3_4 \ semigroups==0.9 \ setenv==0.1.0_1 \ SHA==1.6.1_1 \ - shakespeare==1.0.2_1 \ - shakespeare-css==1.0.2_1 \ - shakespeare-i18n==1.0.0.2_3 \ - shakespeare-js==1.1.1 \ - shakespeare-text==1.0.0.5_1 \ + shakespeare==1.0.3.1 \ + shakespeare-css==1.0.3 \ + shakespeare-i18n==1.0.0.2_4 \ + shakespeare-js==1.1.2.1 \ + shakespeare-text==1.0.0.5_2 \ silently==1.2.4.1 \ - simple-sendfile==0.2.10 \ - skein==0.1.0.11 \ - socks==0.4.2_1 \ + simple-sendfile==0.2.11 \ + skein==0.1.0.12 \ + socks==0.5.0 \ split==0.2.1.1_1 \ stringsearch==0.3.6.4_1 \ system-fileio==0.3.11 \ system-filepath==0.4.7_1 \ tagged==0.4.4_1 \ tagsoup==0.12.8_1 \ - tagstream-conduit==0.5.3_1 \ + tagstream-conduit==0.5.4 \ tar==0.4.0.1_1 \ - tls==1.1.1 \ - tls-extra==0.6.1 \ + tls==1.1.2 \ + tls-extra==0.6.1_1 \ transformers-base==0.4.1_4 \ unix-compat==0.4.1.0 \ unordered-containers==0.2.3.0 \ @@ -117,29 +115,29 @@ USE_CABAL= aeson==0.6.1.0 \ vault==0.2.0.4 \ vector==0.10.0.1_1 \ void==0.5.11 \ - wai==1.3.0.1_1 \ - wai-app-static==1.3.1_1 \ - wai-extra==1.3.2 \ - wai-logger==0.3.0_1 \ - wai-test==1.3.0_1 \ - warp==1.3.7.1 \ + wai==1.4.0 \ + wai-app-static==1.3.1.2 \ + wai-extra==1.3.2.4 \ + wai-logger==0.3.0_2 \ + wai-test==1.3.0.4 \ + warp==1.3.7.4 \ word8==0.0.3 \ - xml-conduit==1.0.3.3_1 \ + xml-conduit==1.1.0.3 \ xml-types==0.3.3_1 \ - xss-sanitize==0.3.3 \ - yaml==0.8.2 \ - yesod==1.1.7.2 \ - yesod-auth==1.1.3 \ - yesod-core==1.1.7.1 \ - yesod-default==1.1.3 \ - yesod-form==1.2.0.2 \ - yesod-json==1.1.2_1 \ - yesod-persistent==1.1.0.1 \ - yesod-routes==1.1.1.1_1 \ - yesod-static==1.1.1.2 \ - yesod-test==0.3.3 \ + xss-sanitize==0.3.3_1 \ + yaml==0.8.2.3 \ + yesod==1.1.9.2 \ + yesod-auth==1.1.5.3 \ + yesod-core==1.1.8.2 \ + yesod-default==1.1.3.2 \ + yesod-form==1.2.1.3 \ + yesod-json==1.1.2.1 \ + yesod-persistent==1.1.0.1_1 \ + yesod-routes==1.1.2 \ + yesod-static==1.1.2.2 \ + yesod-test==0.3.5 \ zlib-bindings==0.1.1.3 \ - zlib-conduit==0.5.0.3_1 + zlib-conduit==1.0.0 IGNORE_DYNAMIC= yes diff --git a/www/hs-yesod-platform/distinfo b/www/hs-yesod-platform/distinfo index 023cb4bceb16..66486c86b4b1 100644 --- a/www/hs-yesod-platform/distinfo +++ b/www/hs-yesod-platform/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-platform-1.1.7.2.tar.gz) = 15afde94e2e641a4be019933f63bfdd291ea16112057c35caaa92e5281c78b81 -SIZE (cabal/yesod-platform-1.1.7.2.tar.gz) = 2669 +SHA256 (cabal/yesod-platform-1.1.8.tar.gz) = 50a863685942745b530c77957ac75d0d5cd4af211a0e183eee58e74ed1941108 +SIZE (cabal/yesod-platform-1.1.8.tar.gz) = 2670 diff --git a/www/hs-yesod-platform/files/patch-yesod-platform.cabal b/www/hs-yesod-platform/files/patch-yesod-platform.cabal new file mode 100644 index 000000000000..2daf8095e1b9 --- /dev/null +++ b/www/hs-yesod-platform/files/patch-yesod-platform.cabal @@ -0,0 +1,11 @@ +--- ./yesod-platform.cabal.orig 2013-03-04 09:57:32.000000000 +0100 ++++ ./yesod-platform.cabal 2013-03-07 22:27:51.000000000 +0100 +@@ -102,7 +102,7 @@ + , simple-sendfile == 0.2.11 + , skein == 0.1.0.12 + , socks == 0.5.0 +- , split == 0.2.1.2 ++ , split == 0.2.1.1 + , stringsearch == 0.3.6.4 + , system-fileio == 0.3.11 + , system-filepath == 0.4.7 diff --git a/www/hs-yesod-routes/Makefile b/www/hs-yesod-routes/Makefile index 02ab46ac7b79..d0c47af2d7ac 100644 --- a/www/hs-yesod-routes/Makefile +++ b/www/hs-yesod-routes/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-routes -PORTVERSION= 1.1.1.1 -PORTREVISION= 1 +PORTVERSION= 1.1.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-routes/distinfo b/www/hs-yesod-routes/distinfo index 3f842663270f..855e875f15ce 100644 --- a/www/hs-yesod-routes/distinfo +++ b/www/hs-yesod-routes/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-routes-1.1.1.1.tar.gz) = 75e03bca8523ec2bb9e05c078ca99ab05efc9f011de0ab3d881c2e681b289e81 -SIZE (cabal/yesod-routes-1.1.1.1.tar.gz) = 17946 +SHA256 (cabal/yesod-routes-1.1.2.tar.gz) = 5b96189ab0e4ae07fd3904a9b8a7d53b5ecec0bc5c94627d4725e930cf17db9f +SIZE (cabal/yesod-routes-1.1.2.tar.gz) = 17709 diff --git a/www/hs-yesod-static/Makefile b/www/hs-yesod-static/Makefile index c4ef676f5b0f..7043a8602b95 100644 --- a/www/hs-yesod-static/Makefile +++ b/www/hs-yesod-static/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-static -PORTVERSION= 1.1.1.2 +PORTVERSION= 1.1.2.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-static/distinfo b/www/hs-yesod-static/distinfo index e7231f665915..f3f7af392133 100644 --- a/www/hs-yesod-static/distinfo +++ b/www/hs-yesod-static/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-static-1.1.1.2.tar.gz) = 5c836f2cb9d0db62bb93ae4864a02bcc56694cbcc5d71d577524b686f1cf7b74 -SIZE (cabal/yesod-static-1.1.1.2.tar.gz) = 6735 +SHA256 (cabal/yesod-static-1.1.2.2.tar.gz) = e198f1909fc47d872dc4b04303f2dec11cc48f3bda2fca35bf94ad9ef2752afc +SIZE (cabal/yesod-static-1.1.2.2.tar.gz) = 6304 diff --git a/www/hs-yesod-test/Makefile b/www/hs-yesod-test/Makefile index cd4786a50e01..f739f22c482b 100644 --- a/www/hs-yesod-test/Makefile +++ b/www/hs-yesod-test/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod-test -PORTVERSION= 0.3.3 +PORTVERSION= 0.3.5 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod-test/distinfo b/www/hs-yesod-test/distinfo index 465d58ed7245..754d62a5d41a 100644 --- a/www/hs-yesod-test/distinfo +++ b/www/hs-yesod-test/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-test-0.3.3.tar.gz) = a3178abdae5c25b36053c188efd84b6878bf6c2a330bc8b5118d1790320864c9 -SIZE (cabal/yesod-test-0.3.3.tar.gz) = 10952 +SHA256 (cabal/yesod-test-0.3.5.tar.gz) = 721c615066f4119591b580ce018c29800149231d1d19458f21b392da02e5b024 +SIZE (cabal/yesod-test-0.3.5.tar.gz) = 11113 diff --git a/www/hs-yesod/Makefile b/www/hs-yesod/Makefile index d7634fb2724d..675e0f18d841 100644 --- a/www/hs-yesod/Makefile +++ b/www/hs-yesod/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yesod -PORTVERSION= 1.1.7.2 +PORTVERSION= 1.1.9.2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-yesod/distinfo b/www/hs-yesod/distinfo index 154405ebd6be..79dbba1e995a 100644 --- a/www/hs-yesod/distinfo +++ b/www/hs-yesod/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/yesod-1.1.7.2.tar.gz) = a0ae89e16f4be18e2df3fdbec4a4622c0aa91b20974630deb14d0f732bfbbd57 -SIZE (cabal/yesod-1.1.7.2.tar.gz) = 282720 +SHA256 (cabal/yesod-1.1.9.2.tar.gz) = b2c1432de8e0e9d5c39300189088a159fcf28565c527aa7ee3382d41d0ac69e7 +SIZE (cabal/yesod-1.1.9.2.tar.gz) = 338371 |