Skip to content

Commit ae05f68

Browse files
committed
Upgraded to Oasis 0.4
1 parent a5f65fd commit ae05f68

File tree

9 files changed

+1481
-435
lines changed

9 files changed

+1481
-435
lines changed

INSTALL.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(* OASIS_START *)
2-
(* DO NOT EDIT (digest: da66a27ffeed64edb08069c7a973785c) *)
2+
(* DO NOT EDIT (digest: 5cd2d4ec584f25e55d5c8bc833957508) *)
33
This is the INSTALL file for the postgresql-ocaml distribution.
44

55
This package uses OASIS to generate its build system. See section OASIS for
@@ -24,7 +24,7 @@ Installing
2424
Uninstalling
2525
============
2626

27-
1. Go to the root of the package
27+
1. Go to the root of the package
2828
2. Run 'ocaml setup.ml -uninstall'
2929

3030
OASIS

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: bc1e05bfc8b39b664f29dae8dbd3ebbb)
2+
# DO NOT EDIT (digest: 7b2408909643717852b95f994b273fee)
33

44
SETUP = ocaml setup.ml
55

@@ -12,7 +12,7 @@ doc: setup.data build
1212
test: setup.data build
1313
$(SETUP) -test $(TESTFLAGS)
1414

15-
all:
15+
all:
1616
$(SETUP) -all $(ALLFLAGS)
1717

1818
install: setup.data
@@ -24,10 +24,10 @@ uninstall: setup.data
2424
reinstall: setup.data
2525
$(SETUP) -reinstall $(REINSTALLFLAGS)
2626

27-
clean:
27+
clean:
2828
$(SETUP) -clean $(CLEANFLAGS)
2929

30-
distclean:
30+
distclean:
3131
$(SETUP) -distclean $(DISTCLEANFLAGS)
3232

3333
setup.data:

_oasis

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
OASISFormat: 0.3
1+
OASISFormat: 0.4
22
Name: postgresql-ocaml
3-
Version: 2.0.4
3+
Version: 2.0.5
44
Synopsis: postgresql-ocaml - bindings to the PostgreSQL library
55
Description: postgresql-ocaml offers library functions for accessing PostgreSQL databases
66
Authors: Alain Frisch <[email protected]>,
@@ -17,7 +17,7 @@ Homepage: https://bitbucket.org/mmottl/postgresql-ocaml
1717
#Categories:
1818
#FilesAB:
1919

20-
Plugins: META (0.3), StdFiles (0.3), DevFiles (0.3)
20+
Plugins: META (0.4), StdFiles (0.4), DevFiles (0.4)
2121
XStdFilesREADME: false
2222

2323
BuildTools: ocamldoc, ocamlbuild
@@ -100,7 +100,7 @@ Executable test_lo
100100

101101
Document API
102102
Title: API reference for PCRE-OCaml
103-
Type: OCamlbuild (0.3)
103+
Type: OCamlbuild (0.4)
104104
InstallDir: $docdir/api
105105
XOCamlbuildPath: .
106106
XOCamlbuildLibraries: postgresql

_tags

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: 43df01d3de74c562c3e79142c075ea8b)
3-
# Ignore VCS directories, you can use the same kind of rule outside
4-
# OASIS_START/STOP if you want to exclude directories that contains
2+
# DO NOT EDIT (digest: 6130d565a6b8b66ced080f5471d86dbf)
3+
# Ignore VCS directories, you can use the same kind of rule outside
4+
# OASIS_START/STOP if you want to exclude directories that contains
55
# useless stuff for the build process
66
<**/.svn>: -traverse
77
<**/.svn>: not_hygienic
@@ -57,4 +57,9 @@
5757
<examples/*.ml{,i}>: pkg_threads
5858
<examples/*.ml{,i}>: pkg_bigarray
5959
# OASIS_STOP
60-
<**/*.ml{,i}>: warn_A, warn_e, warn_r, annot
60+
61+
true: -traverse
62+
<{lib,examples}/**>: traverse
63+
64+
<**/*.ml{,i}>: warn(Aer-44), strict_sequence, annot
65+
"lib/postgresql.cmxs": use_libpostgresql_stubs

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/sh
22

33
# OASIS_START
4-
# DO NOT EDIT (digest: 425187ed8bfdbdd207fd76392dd243a7)
4+
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499)
55
set -e
66

77
FST=true
8-
for i in "$@"; do
8+
for i in "$@"; do
99
if $FST; then
1010
set --
1111
FST=false

lib/META

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: ac3a9ed2ffccd5dac2907536b9ec9c12)
3-
version = "2.0.4"
2+
# DO NOT EDIT (digest: c31bdca2e2a0e283c7e021158379d1c2)
3+
version = "2.0.5"
44
description = "postgresql-ocaml - bindings to the PostgreSQL library"
55
requires = "threads bigarray"
66
archive(byte) = "postgresql.cma"

lib/postgresql.mldylib

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Postgresql

0 commit comments

Comments
 (0)