diff options
author | pgj <pgj@FreeBSD.org> | 2012-02-18 11:11:31 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2012-02-18 11:11:31 +0800 |
commit | 7614a21ff320b7903a7a5fdb8b9fb337a24052ad (patch) | |
tree | d4b288272d1b1cbfc416270a438d026c18516b4a /devel | |
parent | 4249c341a0e5c3da01c0f0794be8d8b22b89cdea (diff) | |
download | freebsd-ports-gnome-7614a21ff320b7903a7a5fdb8b9fb337a24052ad.tar.gz freebsd-ports-gnome-7614a21ff320b7903a7a5fdb8b9fb337a24052ad.tar.zst freebsd-ports-gnome-7614a21ff320b7903a7a5fdb8b9fb337a24052ad.zip |
The filestore library provides an abstract interface for a versioning
file store, and modules that instatiate this interface. Currently Git,
Darcs, and Mercurial modules are provided, and other VCSs or databases
could be added.
WWW: http://johnmacfarlane.net/repos/filestore
Obtained from: FreeBSD Haskell
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/hs-filestore/Makefile | 20 | ||||
-rw-r--r-- | devel/hs-filestore/distinfo | 2 | ||||
-rw-r--r-- | devel/hs-filestore/pkg-descr | 6 |
4 files changed, 29 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 388e830d60e6..3d588dce9955 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -614,6 +614,7 @@ SUBDIR += hs-enumerator SUBDIR += hs-fgl SUBDIR += hs-filemanip + SUBDIR += hs-filestore SUBDIR += hs-gconf SUBDIR += hs-ghc-mtl SUBDIR += hs-ghc-paths diff --git a/devel/hs-filestore/Makefile b/devel/hs-filestore/Makefile new file mode 100644 index 000000000000..f75e788431f6 --- /dev/null +++ b/devel/hs-filestore/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-filestore +# Date created: December 2, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= filestore +PORTVERSION= 0.4.0.4 +CATEGORIES= devel haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Interface for versioning file stores + +LICENSE= BSD + +USE_CABAL= Diff>=0.1.0.2 parsec split>=0.1 utf8-string>=0.3 xml>=1.3 + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/devel/hs-filestore/distinfo b/devel/hs-filestore/distinfo new file mode 100644 index 000000000000..dc5d430afcbe --- /dev/null +++ b/devel/hs-filestore/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/filestore-0.4.0.4.tar.gz) = 7de9868e3d5e50d29f69828931e3daeeb138f0a8647731f14dd3ca9790113793 +SIZE (cabal/filestore-0.4.0.4.tar.gz) = 25853 diff --git a/devel/hs-filestore/pkg-descr b/devel/hs-filestore/pkg-descr new file mode 100644 index 000000000000..79422de3d564 --- /dev/null +++ b/devel/hs-filestore/pkg-descr @@ -0,0 +1,6 @@ +The filestore library provides an abstract interface for a versioning +file store, and modules that instatiate this interface. Currently Git, +Darcs, and Mercurial modules are provided, and other VCSs or databases +could be added. + +WWW: http://johnmacfarlane.net/repos/filestore |