1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Unplug your machine and restart and have your app recover to exactly

where it left off.  Happstack-State spares you the need to deal with all
the marshalling, consistency, and configuration headache that you would
have if you used an external DBMS for this purpose.  Its component model
makes it easy to compose big applications from smaller reliable parts.
Use event subscription to trigger IO actions and support comet-style or
irc-bot applications.

WWW:	http://happstack.com/

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-02-17 17:11:56 +00:00
parent 2a25d98ac1
commit 658662474f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291600
5 changed files with 36 additions and 0 deletions

View File

@ -100,6 +100,7 @@ haddock_port= devel/hs-haddock # executable
happstack-data_port= www/hs-happstack-data
happstack-ixset_port= www/hs-happstack-ixset
happstack-server_port= www/hs-happstack-server
happstack-state_port= www/hs-happstack-state
happstack-util_port= www/hs-happstack-util
happy_port= devel/hs-happy # executable
hashable_port= devel/hs-hashable

View File

@ -284,6 +284,7 @@
SUBDIR += hs-happstack-data
SUBDIR += hs-happstack-ixset
SUBDIR += hs-happstack-server
SUBDIR += hs-happstack-state
SUBDIR += hs-happstack-util
SUBDIR += hs-heist
SUBDIR += hs-fastcgi

View File

@ -0,0 +1,23 @@
# New ports collection makefile for: hs-happstack-state
# Date created: December 2, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= happstack-state
PORTVERSION= 6.1.2
CATEGORIES= www haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Event-based distributed state
LICENSE= BSD
FILE_LICENSE= COPYING
CABAL_SETUP= Setup.hs
USE_CABAL= binary happstack-data>=6.0 happstack-util>=6.0 hslogger>=1.0.2 \
mtl>=1.1 stm>=2.1.2.2 syb
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/happstack-state-6.1.2.tar.gz) = 1d8e684fdbea79bc9cb87055d2c783412f74e87be3eb857793b1695bcec8388d
SIZE (cabal/happstack-state-6.1.2.tar.gz) = 34207

View File

@ -0,0 +1,9 @@
Unplug your machine and restart and have your app recover to exactly
where it left off. Happstack-State spares you the need to deal with all
the marshalling, consistency, and configuration headache that you would
have if you used an external DBMS for this purpose. Its component model
makes it easy to compose big applications from smaller reliable parts.
Use event subscription to trigger IO actions and support comet-style or
irc-bot applications.
WWW: http://happstack.com/