pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/equeue Initial import of equeue-2.1.3:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8bbf068873cc
branches:  trunk
changeset: 517467:8bbf068873cc
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Fri Aug 11 15:42:30 2006 +0000

description:
Initial import of equeue-2.1.3:

Equeue is a library for OCaml, providing a generic event queue
module and a specific module for file descriptor events. Furthermore,
this library has been merged with the Shell library implementing
the invocation of external commands including pipelines and
redirections.

diffstat:

 devel/equeue/DESCR     |   5 +++++
 devel/equeue/Makefile  |  21 +++++++++++++++++++++
 devel/equeue/PLIST     |  33 +++++++++++++++++++++++++++++++++
 devel/equeue/PLIST.opt |   7 +++++++
 devel/equeue/distinfo  |   5 +++++
 5 files changed, 71 insertions(+), 0 deletions(-)

diffs (91 lines):

diff -r 7ba59be1614c -r 8bbf068873cc devel/equeue/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/equeue/DESCR        Fri Aug 11 15:42:30 2006 +0000
@@ -0,0 +1,5 @@
+Equeue is a library for OCaml, providing a generic event queue
+module and a specific module for file descriptor events. Furthermore,
+this library has been merged with the Shell library implementing
+the invocation of external commands including pipelines and
+redirections.
diff -r 7ba59be1614c -r 8bbf068873cc devel/equeue/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/equeue/Makefile     Fri Aug 11 15:42:30 2006 +0000
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/08/11 15:42:30 wiz Exp $
+#
+
+DISTNAME=              equeue-2.1.3
+CATEGORIES=            devel
+MASTER_SITES=          http://www.ocaml-programming.de/packages/
+
+MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=              http://www.ocaml-programming.de/packages/
+COMMENT=               Queues for file events (OCaml)
+
+DEPENDS+=              ocaml-findlib-[0-9]*:../../devel/ocaml-findlib
+
+USE_PKGLOCALEDIR=      yes
+HAS_CONFIGURE=         yes
+USE_TOOLS+=            gmake
+BUILD_TARGET=          all opt
+PLIST_SRC=             PLIST.opt PLIST
+
+.include "../../lang/ocaml/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 7ba59be1614c -r 8bbf068873cc devel/equeue/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/equeue/PLIST        Fri Aug 11 15:42:30 2006 +0000
@@ -0,0 +1,33 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2006/08/11 15:42:30 wiz Exp $
+@unexec %D/libexec/ocaml-findlib-register del %D/lib/ocaml/site-lib/shell
+@unexec %D/libexec/ocaml-findlib-register del %D/lib/ocaml/site-lib/equeue
+lib/ocaml/site-lib/equeue/META
+lib/ocaml/site-lib/equeue/equeue.cma
+lib/ocaml/site-lib/equeue/equeue.cmi
+lib/ocaml/site-lib/equeue/equeue.mli
+lib/ocaml/site-lib/equeue/unixqueue.cmi
+lib/ocaml/site-lib/equeue/unixqueue.mli
+lib/ocaml/site-lib/equeue/unixqueue_mt.cmi
+lib/ocaml/site-lib/equeue/unixqueue_mt.cmo
+lib/ocaml/site-lib/equeue/unixqueue_mt.mli
+lib/ocaml/site-lib/equeue/uq_engines.cmi
+lib/ocaml/site-lib/equeue/uq_engines.mli
+lib/ocaml/site-lib/equeue/uq_socks5.cmi
+lib/ocaml/site-lib/equeue/uq_socks5.mli
+lib/ocaml/site-lib/shell/META
+lib/ocaml/site-lib/shell/dllshell.so
+lib/ocaml/site-lib/shell/libshell.a
+lib/ocaml/site-lib/shell/shell.cma
+lib/ocaml/site-lib/shell/shell.cmi
+lib/ocaml/site-lib/shell/shell.mli
+lib/ocaml/site-lib/shell/shell_mt.mli
+lib/ocaml/site-lib/shell/shell_sys.cmi
+lib/ocaml/site-lib/shell/shell_sys.mli
+lib/ocaml/site-lib/shell/shell_uq.cmi
+lib/ocaml/site-lib/shell/shell_uq.mli
+lib/ocaml/site-lib/shell/unix_exts.cmi
+lib/ocaml/site-lib/shell/unix_exts.mli
+@exec %D/libexec/ocaml-findlib-register add %D/lib/ocaml/site-lib/equeue
+@exec %D/libexec/ocaml-findlib-register add %D/lib/ocaml/site-lib/shell
+@dirrm lib/ocaml/site-lib/shell
+@dirrm lib/ocaml/site-lib/equeue
diff -r 7ba59be1614c -r 8bbf068873cc devel/equeue/PLIST.opt
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/equeue/PLIST.opt    Fri Aug 11 15:42:30 2006 +0000
@@ -0,0 +1,7 @@
+@comment $NetBSD: PLIST.opt,v 1.1.1.1 2006/08/11 15:42:30 wiz Exp $
+lib/ocaml/site-lib/equeue/equeue.a
+lib/ocaml/site-lib/equeue/equeue.cmxa
+lib/ocaml/site-lib/equeue/unixqueue_mt.cmx
+lib/ocaml/site-lib/equeue/unixqueue_mt.o
+lib/ocaml/site-lib/shell/shell.a
+lib/ocaml/site-lib/shell/shell.cmxa
diff -r 7ba59be1614c -r 8bbf068873cc devel/equeue/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/equeue/distinfo     Fri Aug 11 15:42:30 2006 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2006/08/11 15:42:30 wiz Exp $
+
+SHA1 (equeue-2.1.3.tar.gz) = e573ecc94b58eadf0baad07bf35b0e34fddd77fb
+RMD160 (equeue-2.1.3.tar.gz) = 61845789c2eec88325f0a2bbfa222576754c858d
+Size (equeue-2.1.3.tar.gz) = 249374 bytes



Home | Main Index | Thread Index | Old Index