- Update to 1.1

Submitted by:	Thomas Crimi <tcrimi@gmail.com> (maintainer)
This commit is contained in:
Pav Lucistnik 2009-03-02 00:22:36 +00:00
parent 546896e436
commit 0c92b10962
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=229310
5 changed files with 26 additions and 20 deletions

View file

@ -6,10 +6,9 @@
#
PORTNAME= pgocaml
PORTVERSION= 1.0
PORTREVISION= 1
PORTVERSION= 1.1
CATEGORIES= databases
MASTER_SITES= http://merjis.com/_file/
MASTER_SITES= BERLIOS
PKGNAMEPREFIX= ocaml-
MAINTAINER= tcrimi@gmail.com

View file

@ -1,3 +1,3 @@
MD5 (pgocaml-1.0.tar.gz) = 4f12ab37e75cc863560600e458e202d5
SHA256 (pgocaml-1.0.tar.gz) = 57116434f10d50a72e62425e78619091162e7458005ab3301b60e16138873ad8
SIZE (pgocaml-1.0.tar.gz) = 36288
MD5 (pgocaml-1.1.tar.gz) = e52d0f88b4ce850aa592a033c7e7b64d
SHA256 (pgocaml-1.1.tar.gz) = 9ab3808bb9f2f29bf12a80aac8ca722524b7d6e0e75a1f1a9be5058322be665a
SIZE (pgocaml-1.1.tar.gz) = 37039

View file

@ -20,17 +20,3 @@
ifeq ($(wildcard .depend),.depend)
include .depend
@@ -109,11 +109,11 @@
# Install.
findlib_install:
- ocamlfind install pgocaml META pgocaml.{,cm{,x}}a pGOCaml.cm[ix] pa_pgsql.cmo
+ ocamlfind install pgocaml META pgocaml.*a pGOCaml.cm[ix] pa_pgsql.cmo
reinstall:
ocamlfind remove pgocaml
- ocamlfind install pgocaml META pgocaml.{,cm{,x}}a pGOCaml.cm[ix] pa_pgsql.cmo
+ ocamlfind install pgocaml META pgocaml.*a pGOCaml.cm[ix] pa_pgsql.cmo
install:
rm -rf $(DESTDIR)$(OCAMLLIBDIR)/pgocaml

View file

@ -0,0 +1,10 @@
--- pGOCaml.ml.orig 2009-03-01 09:59:13.864728737 -0500
+++ pGOCaml.ml 2009-03-01 09:59:53.353002107 -0500
@@ -22,6 +22,7 @@
open Printf
open ExtString
+open CalendarLib
type 'a t = {
ichan : in_channel; (* In_channel wrapping socket. *)

View file

@ -0,0 +1,11 @@
--- pGOCaml.mli.orig 2009-03-01 09:59:09.188523102 -0500
+++ pGOCaml.mli 2009-03-01 09:59:43.562605632 -0500
@@ -20,6 +20,8 @@
* Boston, MA 02111-1307, USA.
*)
+open CalendarLib
+
type 'a t (** Database handle. *)
exception Error of string