Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Mar 2017 18:02:58 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r435289 - in head: devel devel/hs-directory lang/ghc x11-wm/hs-xmonad x11-wm/hs-xmonad-contrib x11/hs-X11
Message-ID:  <201703021802.v22I2wWo015788@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Thu Mar  2 18:02:57 2017
New Revision: 435289
URL: https://svnweb.freebsd.org/changeset/ports/435289

Log:
  Update x11-wm/hs-xmonad and x11-wm/hs-xmonad-contirb to 0.13
  
  * Update xmonad to 0.13
  * New required ports devel/hs-directory
  * Required update of x11/hs-X11 to 0.13
  
  PR:             217012
  Reviewed by:    mat
  Approved by:    maintainer timeout (2 weeks), rakcuo (mentor)
  Differential Revision:  https://reviews.freebsd.org/D9548

Added:
  head/devel/hs-directory/
  head/devel/hs-directory/Makefile   (contents, props changed)
  head/devel/hs-directory/distinfo   (contents, props changed)
  head/devel/hs-directory/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile
  head/lang/ghc/bsd.hackage.mk
  head/x11-wm/hs-xmonad-contrib/Makefile
  head/x11-wm/hs-xmonad-contrib/distinfo
  head/x11-wm/hs-xmonad/Makefile
  head/x11-wm/hs-xmonad/distinfo
  head/x11/hs-X11/Makefile
  head/x11/hs-X11/distinfo

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/devel/Makefile	Thu Mar  2 18:02:57 2017	(r435289)
@@ -934,6 +934,7 @@
     SUBDIR += hs-date-cache
     SUBDIR += hs-datetime
     SUBDIR += hs-deepseq-generics
+    SUBDIR += hs-directory
     SUBDIR += hs-directory-tree
     SUBDIR += hs-dlist
     SUBDIR += hs-dlist-instances

Added: head/devel/hs-directory/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/hs-directory/Makefile	Thu Mar  2 18:02:57 2017	(r435289)
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTNAME=	directory
+PORTVERSION=	1.3.0.1
+CATEGORIES=	devel haskell
+
+MAINTAINER=	haskell@FreeBSD.org
+COMMENT=	Library for manipulating files and directories in a portable way
+
+LICENSE=	BSD3CLAUSE
+
+.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
+.include <bsd.port.mk>

Added: head/devel/hs-directory/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/hs-directory/distinfo	Thu Mar  2 18:02:57 2017	(r435289)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1486844627
+SHA256 (cabal/directory-1.3.0.1.tar.gz) = b2b444aea7faac750efa23c994d9a16f207f12b2009cf38ba39fc7334f373f3c
+SIZE (cabal/directory-1.3.0.1.tar.gz) = 69401

Added: head/devel/hs-directory/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/hs-directory/pkg-descr	Thu Mar  2 18:02:57 2017	(r435289)
@@ -0,0 +1,4 @@
+This library provides a basic set of operations for manipulating files 
+and directories in a portable way.
+
+WWW: https://github.com/haskell/directory

Modified: head/lang/ghc/bsd.hackage.mk
==============================================================================
--- head/lang/ghc/bsd.hackage.mk	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/lang/ghc/bsd.hackage.mk	Thu Mar  2 18:02:57 2017	(r435289)
@@ -141,6 +141,7 @@ dia-base_port=                          
 dia-functions_port=                             graphics/hs-dia-functions
 Diff_port=                                      textproc/hs-Diff
 digest_port=                                    security/hs-digest
+directory_port=                                 devel/hs-directory
 directory-tree_port=                            devel/hs-directory-tree
 distributive_port=                              math/hs-distributive
 dlist_port=                                     devel/hs-dlist

Modified: head/x11-wm/hs-xmonad-contrib/Makefile
==============================================================================
--- head/x11-wm/hs-xmonad-contrib/Makefile	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/x11-wm/hs-xmonad-contrib/Makefile	Thu Mar  2 18:02:57 2017	(r435289)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	xmonad-contrib
-PORTVERSION=	0.12
+PORTVERSION=	0.13
 CATEGORIES=	x11-wm haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -11,7 +11,7 @@ COMMENT=	Third-party extensions for xmon
 LICENSE=	BSD3CLAUSE
 
 USE_CABAL=	extensible-exceptions mtl>=1 old-time random utf8-string \
-		X11>=1.6.1 X11-xft>=0.2 xmonad==0.12
+		X11>=1.6.1 X11-xft>=0.2 xmonad==0.13
 USE_XORG=	x11
 
 RUN_DEPENDS+=	bash:shells/bash

Modified: head/x11-wm/hs-xmonad-contrib/distinfo
==============================================================================
--- head/x11-wm/hs-xmonad-contrib/distinfo	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/x11-wm/hs-xmonad-contrib/distinfo	Thu Mar  2 18:02:57 2017	(r435289)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1475870490
-SHA256 (cabal/xmonad-contrib-0.12.tar.gz) = 131d31c471ac02ece9c7e920497b4839a45df786a2096f56adb1f2de1221f311
-SIZE (cabal/xmonad-contrib-0.12.tar.gz) = 464978
+TIMESTAMP = 1486836834
+SHA256 (cabal/xmonad-contrib-0.13.tar.gz) = a760827fe5b1f99d783f52ccbb72b272d02d53daa26757363cde3ceba014476e
+SIZE (cabal/xmonad-contrib-0.13.tar.gz) = 485351

Modified: head/x11-wm/hs-xmonad/Makefile
==============================================================================
--- head/x11-wm/hs-xmonad/Makefile	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/x11-wm/hs-xmonad/Makefile	Thu Mar  2 18:02:57 2017	(r435289)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	xmonad
-PORTVERSION=	0.12
+PORTVERSION=	0.13
 CATEGORIES=	x11-wm haskell
 
 MAINTAINER=	haskell@FreeBSD.org
@@ -10,7 +10,7 @@ COMMENT=	Tiling window manager
 
 LICENSE=	BSD3CLAUSE
 
-USE_CABAL=	extensible-exceptions mtl setlocale utf8-string>=0.3 X11>=1.5
+USE_CABAL=	extensible-exceptions mtl setlocale utf8-string>=0.3 X11>=1.8 directory>=1.2.3
 USE_XORG=	x11
 
 MAN1PAGES=	xmonad.1

Modified: head/x11-wm/hs-xmonad/distinfo
==============================================================================
--- head/x11-wm/hs-xmonad/distinfo	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/x11-wm/hs-xmonad/distinfo	Thu Mar  2 18:02:57 2017	(r435289)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1475869373
-SHA256 (cabal/xmonad-0.12.tar.gz) = e8f649dbd4a8d5f75fdac9ceb5ee38b64fd351910ade81c188f5dd7bc21dfdd7
-SIZE (cabal/xmonad-0.12.tar.gz) = 61436
+TIMESTAMP = 1486836802
+SHA256 (cabal/xmonad-0.13.tar.gz) = f9f81b63569f18c777a939741024ec3ae34e4ec84015e5cc50f6622034a303ca
+SIZE (cabal/xmonad-0.13.tar.gz) = 72034

Modified: head/x11/hs-X11/Makefile
==============================================================================
--- head/x11/hs-X11/Makefile	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/x11/hs-X11/Makefile	Thu Mar  2 18:02:57 2017	(r435289)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	X11
-PORTVERSION=	1.6.1.2
-PORTREVISION=	2
+PORTVERSION=	1.8
 CATEGORIES=	x11 haskell
 
 MAINTAINER=	haskell@FreeBSD.org

Modified: head/x11/hs-X11/distinfo
==============================================================================
--- head/x11/hs-X11/distinfo	Thu Mar  2 18:01:42 2017	(r435288)
+++ head/x11/hs-X11/distinfo	Thu Mar  2 18:02:57 2017	(r435289)
@@ -1,2 +1,3 @@
-SHA256 (cabal/X11-1.6.1.2.tar.gz) = 5216d485f807bd53bf34fba170896a8930290a6ac28b8e611c28e751ad67f2cf
-SIZE (cabal/X11-1.6.1.2.tar.gz) = 188612
+TIMESTAMP = 1486838578
+SHA256 (cabal/X11-1.8.tar.gz) = 541b166aab1e05a92dc8f42a511d827e7aad373af12ae283b9df9982ccc09d8e
+SIZE (cabal/X11-1.8.tar.gz) = 191331



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