1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Haskell 98 pointed and copointed data.

WWW:	http://github.com/ekmett/copointed/

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2011-08-14 11:45:37 +00:00
parent f1f3359643
commit 55c7cc395e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=279695
6 changed files with 40 additions and 0 deletions

View File

@ -137,6 +137,7 @@ parsec_port= textproc/hs-parsec
pcap_port= net/hs-pcap
pcre-light_port= devel/hs-pcre-light # lib_depends
polyparse_port= textproc/hs-polyparse
pointed_port= math/hs-pointed
porte_port= ports-mgmt/hs-porte # executable
primitive_port= devel/hs-primitive
probability_port= math/hs-probability

View File

@ -131,6 +131,7 @@
SUBDIR += hs-distributive
SUBDIR += hs-erf
SUBDIR += hs-mwc-random
SUBDIR += hs-pointed
SUBDIR += hs-probability
SUBDIR += hs-semigroupoids
SUBDIR += hs-semigroups

22
math/hs-pointed/Makefile Normal file
View File

@ -0,0 +1,22 @@
# New ports collection makefile for: hs-pointed
# Date created: July 16, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= pointed
PORTVERSION= 2.0
CATEGORIES= math haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Haskell 98 pointed and copointed data
LICENSE= BSD
USE_CABAL= comonad>=1.1.1 comonad-transformers>=2.0 data-default>=0.2.0.1 \
semigroupoids>=1.2.4 semigroups>=0.7.1 stm>=2.1.2.1 \
transformers>=0.2.0
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

2
math/hs-pointed/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (cabal/pointed-2.0.tar.gz) = 446f9096185e9b110caf9bdcfae738a2c43b28ee1cfc872c363a9ef67b36382e
SIZE (cabal/pointed-2.0.tar.gz) = 2953

View File

@ -0,0 +1,11 @@
--- ./pointed.cabal.orig 2011-08-04 22:03:15.000000000 +0200
+++ ./pointed.cabal 2011-08-13 12:29:45.000000000 +0200
@@ -22,7 +22,7 @@
base >= 4 && < 5,
transformers >= 0.2.0 && < 0.3,
containers >= 0.4.0.0 && < 0.5,
- data-default >= 0.2.0.1 && < 0.3,
+ data-default >= 0.2.0.1,
comonad >= 1.1.1 && < 1.2,
semigroups >= 0.7.1 && < 0.8,
semigroupoids >= 1.2.4 && < 1.3,

View File

@ -0,0 +1,3 @@
Haskell 98 pointed and copointed data.
WWW: http://github.com/ekmett/copointed/