angel is a daemon that runs and monitors other processes. It is similar

to djb's `daemontools` or the Ruby project `god`. It's goals are to keep
a set of services running, and to facilitate the easy configuration and
restart of those services.

WWW:	http://github.com/jamwt/Angel

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-24 10:46:24 +00:00
parent c6d33b41b3
commit 7e609f9805
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=299866
5 changed files with 35 additions and 0 deletions

View file

@ -18,6 +18,7 @@ Agda_port= math/hs-Agda # executable
Agda-executable_port= math/hs-Agda-executable # executable
alex_port= devel/hs-alex # executable
ALUT_port= audio/hs-ALUT
angel_port= sysutils/hs-angel
ansi-terminal_port= devel/hs-ansi-terminal
ansi-wl-pprint_port= devel/hs-ansi-wl-pprint
arrows_port= devel/hs-arrows

View file

@ -380,6 +380,7 @@
SUBDIR += hoz
SUBDIR += hpacucli
SUBDIR += hploscripts
SUBDIR += hs-angel
SUBDIR += hs-cpu
SUBDIR += htop
SUBDIR += httplog

View file

@ -0,0 +1,25 @@
# New ports collection makefile for: hs-angel
# Date created: June 10, 2012
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= angel
PORTVERSION= 0.3.2
CATEGORIES= sysutils haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Process management and supervision daemon
LICENSE= BSD
CABAL_SETUP= Setup.hs
USE_CABAL= configurator>=0.1 MissingH mtl stm>=2.0 text>=0.11 \
unordered-containers>=0.1.4
STANDALONE= yes
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (cabal/angel-0.3.2.tar.gz) = e6ae7fb12294dd9c7839edc4eddf37a565b81afdf058ee939fba054f162b5c5e
SIZE (cabal/angel-0.3.2.tar.gz) = 7008

View file

@ -0,0 +1,6 @@
angel is a daemon that runs and monitors other processes. It is similar
to djb's `daemontools` or the Ruby project `god`. It's goals are to keep
a set of services running, and to facilitate the easy configuration and
restart of those services.
WWW: http://github.com/jamwt/Angel