Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Aug 2012 02:40:40 +0000 (UTC)
From:      Gabor Pali <pgj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r301883 - in head: textproc/hs-blaze-html textproc/hs-xml2html www/hs-yesod www/hs-yesod-auth www/hs-yesod-core www/hs-yesod-form
Message-ID:  <201208030240.q732eexW058679@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pgj
Date: Fri Aug  3 02:40:40 2012
New Revision: 301883
URL: http://svn.freebsd.org/changeset/ports/301883

Log:
  - Update textproc/hs-blaze-html to 0.5
  - Use the new options framework
  
  Obtained from:	FreeBSD Haskell

Modified:
  head/textproc/hs-blaze-html/Makefile
  head/textproc/hs-blaze-html/distinfo
  head/textproc/hs-xml2html/Makefile
  head/www/hs-yesod-auth/Makefile
  head/www/hs-yesod-core/Makefile
  head/www/hs-yesod-form/Makefile
  head/www/hs-yesod/Makefile

Modified: head/textproc/hs-blaze-html/Makefile
==============================================================================
--- head/textproc/hs-blaze-html/Makefile	Fri Aug  3 02:35:28 2012	(r301882)
+++ head/textproc/hs-blaze-html/Makefile	Fri Aug  3 02:40:40 2012	(r301883)
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	blaze-html
-PORTVERSION=	0.4.3.4
+PORTVERSION=	0.5.0.0
 CATEGORIES=	textproc haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -16,7 +16,7 @@ LICENSE=	BSD
 
 CABAL_SETUP=	Setup.hs
 
-USE_CABAL=	blaze-builder>=0.2 text>=0.10
+USE_CABAL=	blaze-builder>=0.2 blaze-markup>=0.5.1 text>=0.10
 
 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
 .include <bsd.port.mk>

Modified: head/textproc/hs-blaze-html/distinfo
==============================================================================
--- head/textproc/hs-blaze-html/distinfo	Fri Aug  3 02:35:28 2012	(r301882)
+++ head/textproc/hs-blaze-html/distinfo	Fri Aug  3 02:40:40 2012	(r301883)
@@ -1,2 +1,2 @@
-SHA256 (cabal/blaze-html-0.4.3.4.tar.gz) = 40d8e507ab32db390154ee2273f38af8cb39d27051d6d77f699fc59c91a0a8f5
-SIZE (cabal/blaze-html-0.4.3.4.tar.gz) = 74115
+SHA256 (cabal/blaze-html-0.5.0.0.tar.gz) = 924ffc5a5d0d8f5695c8e63217859d6f2e7b0a53c938798ee0a62e098a6bdb31
+SIZE (cabal/blaze-html-0.5.0.0.tar.gz) = 66175

Modified: head/textproc/hs-xml2html/Makefile
==============================================================================
--- head/textproc/hs-xml2html/Makefile	Fri Aug  3 02:35:28 2012	(r301882)
+++ head/textproc/hs-xml2html/Makefile	Fri Aug  3 02:40:40 2012	(r301883)
@@ -7,6 +7,7 @@
 
 PORTNAME=	xml2html
 PORTVERSION=	0.1.2.3
+PORTREVISION=	1
 CATEGORIES=	textproc haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -14,9 +15,7 @@ COMMENT=	blaze-html instances for xml-co
 
 LICENSE=	BSD
 
-USE_CABAL=	blaze-html>=0.4 blaze-markup>=0.5.1 text>=0.5 xml-conduit>=0.5
-
-CONFIGURE_ARGS+=	--flags="-blaze_html_0_5"
+USE_CABAL=	blaze-html>=0.5 blaze-markup>=0.5.1 text>=0.5 xml-conduit>=0.5
 
 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
 .include <bsd.port.mk>

Modified: head/www/hs-yesod-auth/Makefile
==============================================================================
--- head/www/hs-yesod-auth/Makefile	Fri Aug  3 02:35:28 2012	(r301882)
+++ head/www/hs-yesod-auth/Makefile	Fri Aug  3 02:40:40 2012	(r301883)
@@ -7,6 +7,7 @@
 
 PORTNAME=	yesod-auth
 PORTVERSION=	1.0.2.1
+PORTREVISION=	1
 CATEGORIES=	www haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -14,7 +15,7 @@ COMMENT=	Authentication for Yesod
 
 LICENSE=	MIT
 
-USE_CABAL=	aeson>=0.5 authenticate>=1.2 blaze-html>=0.4.1.3 \
+USE_CABAL=	aeson>=0.5 authenticate>=1.2 blaze-html>=0.5 blaze-markup>=0.5.1 \
 		hamlet>=1.0 http-conduit>=1.4.1.1 lifted-base>=0.1 \
 		mime-mail>=0.3 persistent>=0.9 persistent-template>=0.9 \
 		pureMD5>=2.0 pwstore-fast>=2.2 random>=1.0.0.2 SHA>=1.4.1.3 \
@@ -22,7 +23,5 @@ USE_CABAL=	aeson>=0.5 authenticate>=1.2 
 		unordered-containers wai>=1.2 yesod-core>=1.0 yesod-form>=1.0 \
 		yesod-json>=1.0 yesod-persistent>=1.0
 
-CONFIGURE_ARGS+=	--flags="-blaze_html_0_5"
-
 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
 .include <bsd.port.mk>

Modified: head/www/hs-yesod-core/Makefile
==============================================================================
--- head/www/hs-yesod-core/Makefile	Fri Aug  3 02:35:28 2012	(r301882)
+++ head/www/hs-yesod-core/Makefile	Fri Aug  3 02:40:40 2012	(r301883)
@@ -7,6 +7,7 @@
 
 PORTNAME=	yesod-core
 PORTVERSION=	1.0.1.2
+PORTREVISION=	1
 CATEGORIES=	www haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -14,17 +15,15 @@ COMMENT=	Creation of type-safe, RESTful 
 
 LICENSE=	MIT
 
-USE_CABAL=	aeson>=0.5 blaze-builder>=0.2.1.4 blaze-html>=0.4 \
-		case-insensitive>=0.2 cereal>=0.3 clientsession>=0.7.3.1 \
-		conduit>=0.4 cookie>=0.4 failure>=0.2 fast-logger>=0.0.2 \
-		hamlet>=1.0 http-types>=0.6.5 lifted-base>=0.1 \
+USE_CABAL=	aeson>=0.5 blaze-builder>=0.2.1.4 blaze-html>=0.5 \
+		blaze-markup>=0.5.1 case-insensitive>=0.2 cereal>=0.3 \
+		clientsession>=0.7.3.1 conduit>=0.4 cookie>=0.4 failure>=0.2 \
+		fast-logger>=0.0.2 hamlet>=1.0 http-types>=0.6.5 lifted-base>=0.1 \
 		monad-control>=0.3 parsec>=2 path-pieces>=0.1 random>=1.0.0.2 \
 		resourcet>=0.3 shakespeare>=1.0 shakespeare-css>=1.0 \
 		shakespeare-i18n>=1.0 shakespeare-js>=1.0 text>=0.7 \
 		transformers>=0.2.2 transformers-base>=0.4 vector>=0.9 wai>=1.2 \
 		wai-extra>=1.2 wai-logger>=0.0.1 yesod-routes>=1.0
 
-CONFIGURE_ARGS+=	--flags="-blaze_html_0_5"
-
 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
 .include <bsd.port.mk>

Modified: head/www/hs-yesod-form/Makefile
==============================================================================
--- head/www/hs-yesod-form/Makefile	Fri Aug  3 02:35:28 2012	(r301882)
+++ head/www/hs-yesod-form/Makefile	Fri Aug  3 02:40:40 2012	(r301883)
@@ -7,6 +7,7 @@
 
 PORTNAME=	yesod-form
 PORTVERSION=	1.0.0.4
+PORTREVISION=	1
 CATEGORIES=	www haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -14,13 +15,11 @@ COMMENT=	Form handling support for Yesod
 
 LICENSE=	MIT
 
-USE_CABAL=	blaze-builder>=0.2.1.4 blaze-html>=0.4.1.3 data-default>=0.3 \
-		email-validate>=0.2.6 hamlet>=1.0 network>=2.2 \
+USE_CABAL=	blaze-builder>=0.2.1.4 blaze-html>=0.5 blaze-markup>=0.5.1 \
+		data-default>=0.3 email-validate>=0.2.6 hamlet>=1.0 network>=2.2 \
 		persistent>=0.9 shakespeare-css>=1.0 shakespeare-js>=1.0 \
 		text>=0.9 transformers>=0.2.2 wai>=1.2 xss-sanitize>=0.3.0.1 \
 		yesod-core>=1.0 yesod-persistent>=1.0
 
-CONFIGURE_ARGS+=	--flags="-blaze_html_0_5"
-
 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
 .include <bsd.port.mk>

Modified: head/www/hs-yesod/Makefile
==============================================================================
--- head/www/hs-yesod/Makefile	Fri Aug  3 02:35:28 2012	(r301882)
+++ head/www/hs-yesod/Makefile	Fri Aug  3 02:40:40 2012	(r301883)
@@ -7,6 +7,7 @@
 
 PORTNAME=	yesod
 PORTVERSION=	1.0.1.6
+PORTREVISION=	1
 CATEGORIES=	www haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -14,17 +15,16 @@ COMMENT=	Creation of type-safe, RESTful 
 
 LICENSE=	MIT
 
-USE_CABAL=	attoparsec>=0.10 blaze-builder>=0.2.1.4 blaze-html>=0.4 \
-		fast-logger>=0.0.2 hamlet>=1.0 http-types>=0.6.1 \
-		monad-control>=0.3 parsec>=2.1 shakespeare-css>=1.0 \
-		shakespeare-js>=1.0 shakespeare-text>=1.0 text>=0.11 \
-		transformers>=0.2.2 unix-compat>=0.2 wai>=1.2 wai-extra>=1.2 \
-		wai-logger>=0.1.2 warp>=1.2 yesod-auth>=1.0 yesod-core>=1.0 \
-		yesod-form>=1.0 yesod-json>=1.0 yesod-persistent>=1.0
+USE_CABAL=	attoparsec>=0.10 blaze-builder>=0.2.1.4 blaze-html>=0.5 \
+		blaze-markup>=0.5.1 fast-logger>=0.0.2 hamlet>=1.0 \
+		http-types>=0.6.1 monad-control>=0.3 parsec>=2.1 \
+		shakespeare-css>=1.0 shakespeare-js>=1.0 shakespeare-text>=1.0 \
+		text>=0.11 transformers>=0.2.2 unix-compat>=0.2 wai>=1.2 \
+		wai-extra>=1.2 wai-logger>=0.1.2 warp>=1.2 yesod-auth>=1.0 \
+		yesod-core>=1.0 yesod-form>=1.0 yesod-json>=1.0 \
+		yesod-persistent>=1.0
 
 EXECUTABLE=	yesod
 
-CONFIGURE_ARGS+=	--flags="-blaze_html_0_5"
-
 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208030240.q732eexW058679>