[Pkg-ocaml-maint-commits] r1786 - trunk/packages/equeue/trunk/debian
Samuel Mimram
smimram-guest at costa.debian.org
Wed Sep 21 16:49:56 UTC 2005
Author: smimram-guest
Date: 2005-09-21 16:49:55 +0000 (Wed, 21 Sep 2005)
New Revision: 1786
Added:
trunk/packages/equeue/trunk/debian/libequeue-gtk2-ocaml-dev.install
Modified:
trunk/packages/equeue/trunk/debian/changelog
trunk/packages/equeue/trunk/debian/control
trunk/packages/equeue/trunk/debian/libequeue-ocaml-dev.docs
trunk/packages/equeue/trunk/debian/rules
Log:
Added gtk2 support to equeue.
Modified: trunk/packages/equeue/trunk/debian/changelog
===================================================================
--- trunk/packages/equeue/trunk/debian/changelog 2005-09-20 22:32:39 UTC (rev 1785)
+++ trunk/packages/equeue/trunk/debian/changelog 2005-09-21 16:49:55 UTC (rev 1786)
@@ -1,3 +1,10 @@
+equeue (2.1.3-2) unstable; urgency=low
+
+ * Added the libequeue-gtk2-ocaml-dev package for the version of equeue
+ compatible with lablgtk2's event queue.
+
+ -- Samuel Mimram <smimram at debian.org> Wed, 7 Sep 2005 20:22:54 +0200
+
equeue (2.1.3-1) unstable; urgency=low
* New upstream release.
Modified: trunk/packages/equeue/trunk/debian/control
===================================================================
--- trunk/packages/equeue/trunk/debian/control 2005-09-20 22:32:39 UTC (rev 1785)
+++ trunk/packages/equeue/trunk/debian/control 2005-09-21 16:49:55 UTC (rev 1786)
@@ -2,7 +2,7 @@
Section: devel
Priority: optional
Maintainer: Samuel Mimram <smimram at debian.org>
-Build-Depends: debhelper (>= 4.0.0), ocaml-findlib, ocaml-nox-3.08.3
+Build-Depends: debhelper (>= 4.0.0), ocaml-findlib, ocaml-nox-3.08.3, liblablgtk2-ocaml-dev
Standards-Version: 3.6.2
Package: libequeue-ocaml
@@ -62,3 +62,30 @@
.
This package contains all the development stuff you need to use
the equeue OCaml library in your programs.
+
+Package: libequeue-gtk2-ocaml-dev
+Section: libdevel
+Architecture: any
+Depends: ocaml-nox-3.08.3, libequeue-ocaml-dev (= ${Source-Version}), liblablgtk2-ocaml-dev
+Suggests: ocaml-findlib
+Description: Event queues OCaml library
+ Equeue is an Objective Caml (OCaml) library containing a generic
+ implementation of queues of events of any type, and a specific
+ implementation of queues of file descriptor events.
+ .
+ The generic module allows to associate an event queue with an event
+ source, and one or several event handlers. The event source generates
+ new events that are triggered from the outer world. The handlers
+ consume events, but it is allowed that handlers also generate events.
+ .
+ The module for file descriptor events already defines an event source;
+ this source watches registered file descriptors and produces events if
+ a descriptor wants to deliver data, or if a descriptor is ready to
+ accept data. As in the generic module, the handlers consume the
+ events.
+ .
+ The main application of these modules are implementations of protocol
+ stacks which can cooperate with each other.
+ .
+ This package contains all the development stuff you need to use
+ the equeue OCaml library in your programs which use lablgtk2.
Added: trunk/packages/equeue/trunk/debian/libequeue-gtk2-ocaml-dev.install
===================================================================
--- trunk/packages/equeue/trunk/debian/libequeue-gtk2-ocaml-dev.install 2005-09-20 22:32:39 UTC (rev 1785)
+++ trunk/packages/equeue/trunk/debian/libequeue-gtk2-ocaml-dev.install 2005-09-21 16:49:55 UTC (rev 1786)
@@ -0,0 +1,5 @@
+usr/lib/ocaml/3.08.3/equeue-gtk2/META
+usr/lib/ocaml/3.08.3/equeue-gtk2/*.a
+usr/lib/ocaml/3.08.3/equeue-gtk2/*.o
+usr/lib/ocaml/3.08.3/equeue-gtk2/*.cm*
+usr/lib/ocaml/3.08.3/equeue-gtk2/*.ml*
Modified: trunk/packages/equeue/trunk/debian/libequeue-ocaml-dev.docs
===================================================================
--- trunk/packages/equeue/trunk/debian/libequeue-ocaml-dev.docs 2005-09-20 22:32:39 UTC (rev 1785)
+++ trunk/packages/equeue/trunk/debian/libequeue-ocaml-dev.docs 2005-09-21 16:49:55 UTC (rev 1786)
@@ -1,3 +1,5 @@
doc/refman-equeue
doc/refman-shell
doc/users-guide
+doc/README
+doc/SHELL
Modified: trunk/packages/equeue/trunk/debian/rules
===================================================================
--- trunk/packages/equeue/trunk/debian/rules 2005-09-20 22:32:39 UTC (rev 1785)
+++ trunk/packages/equeue/trunk/debian/rules 2005-09-21 16:49:55 UTC (rev 1786)
@@ -11,7 +11,7 @@
config.status: configure
dh_testdir
- ./configure
+ ./configure -with-equeue-gtk2
build: build-stamp
build-stamp: config.status
@@ -28,6 +28,7 @@
rm -f build-stamp
-$(MAKE) distclean
+ rm -rf tmp src/equeue-gtk2/Makefile src/equeue-gtk2/uq_gtk.ml src/equeue-gtk2/uq_gtk.mli
dh_clean
More information about the Pkg-ocaml-maint-commits
mailing list