Skip to content

Commit e8632e1

Browse files
committed
Preparing GitHub transition
1 parent 40fd675 commit e8632e1

10 files changed

+452
-291
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
_build
2+
API.docdir
3+
*.bak
4+
.*.swp
5+
setup.data
6+
setup.log
7+
*.byte
8+
*.native

.hgignore

-5
This file was deleted.

AUTHORS.txt

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
(* OASIS_START *)
2-
(* DO NOT EDIT (digest: 0648f925adedbb4c0bdc6c4093b3ea31) *)
3-
Authors of sqlite3-ocaml
4-
Markus Mottl <[email protected]>
5-
Christian Szegedy <[email protected]>
6-
7-
Current maintainers of sqlite3-ocaml
8-
Markus Mottl <[email protected]>
9-
Christian Szegedy <[email protected]>
2+
(* DO NOT EDIT (digest: 9c87a06631b868754f08c4717a3cc39e) *)
3+
4+
Authors of sqlite3-ocaml:
5+
6+
* Markus Mottl <[email protected]>
7+
* Christian Szegedy <[email protected]>
8+
9+
Current maintainers of sqlite3-ocaml:
10+
11+
* Markus Mottl <[email protected]>
12+
* Christian Szegedy <[email protected]>
13+
1014
(* OASIS_STOP *)

INSTALL.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
(* OASIS_START *)
2-
(* DO NOT EDIT (digest: 704ae4be7b33e10c4d412e1626b8d8b5) *)
2+
(* DO NOT EDIT (digest: 9d8899a6f6c4cdc71a7a30bd6ed44bdb) *)
3+
34
This is the INSTALL file for the sqlite3-ocaml distribution.
45

56
This package uses OASIS to generate its build system. See section OASIS for
6-
full information.
7+
full information.
78

89
Dependencies
910
============
1011

1112
In order to compile this package, you will need:
13+
1214
* ocaml (>= 3.12) for all, test test_agg, test test_db, test test_exec,
1315
test test_fun, test test_stmt, doc API
1416
* findlib (>= 1.3.1)

Makefile

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

44
SETUP = ocaml setup.ml
55

@@ -33,6 +33,9 @@ distclean:
3333
setup.data:
3434
$(SETUP) -configure $(CONFIGUREFLAGS)
3535

36+
configure:
37+
$(SETUP) -configure $(CONFIGUREFLAGS)
38+
3639
.PHONY: build doc test all install uninstall reinstall clean distclean configure
3740

3841
# OASIS_STOP

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ the old (version 2) SQLite and its OCaml wrapper `ocaml-sqlite`.
1717
Usage
1818
-----
1919

20-
The API in file `lib/sqlite3.mli` is fully documented,
21-
and HTML-documentation can be built using `make doc` and
22-
installed with this distribution. It can also be found
23-
[online](http://mmottl.bitbucket.org/projects/sqlite3-ocaml/api/).
20+
The API in file `lib/sqlite3.mli` is fully documented, and HTML-documentation
21+
can be built using `make doc` and installed with this distribution. It can
22+
also be found [online](http://mmottl.github.io/sqlite3-ocaml/api).
2423

2524
SQLite3 has its own [online documentation](http://www.sqlite.org/docs.html).
2625

@@ -56,8 +55,8 @@ contact the maintainers:
5655
* Christian Szegedy <[email protected]>
5756

5857
Up-to-date information should be available at:
59-
<https://bitbucket.org/mmottl/sqlite3-ocaml>
58+
<http://mmottl.github.io/sqlite3-ocaml>
6059

6160
Enjoy!
6261

63-
Markus Mottl in Rutherford, NJ on July 10, 2012
62+
Markus Mottl on July 10, 2012

_oasis

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ LicenseFile: COPYING.txt
1414
License: LGPL-2.1+ with OCaml linking exception
1515
OCamlVersion: >= 3.12
1616
FindlibVersion: >= 1.3.1
17-
Homepage: https://bitbucket.org/mmottl/sqlite3-ocaml
17+
Homepage: http://mmottl.github.io/sqlite3-ocaml
1818
#Categories:
1919
#FilesAB:
2020

@@ -115,8 +115,8 @@ Document API
115115
XOCamlbuildPath: .
116116
XOCamlbuildLibraries: sqlite3
117117

118-
SourceRepository trunk
119-
Type: hg
120-
Location: ssh://[email protected]/mmottl/sqlite3-ocaml
121-
Browser: https://bitbucket.org/mmottl/sqlite3-ocaml
122-
Tag: release-$(pkg_version)
118+
SourceRepository head
119+
Type: Git
120+
Location: https://github.com/mmottl/sqlite3-ocaml.git
121+
Browser: https://github.com/mmottl/sqlite3-ocaml
122+
Tag: v$(pkg_version)

_tags

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: 4ea316e333012fd4d6e656443c3dba8b)
2+
# DO NOT EDIT (digest: 4229fa2a44dd62be7c4c4e5e8015a6d2)
33
# Ignore VCS directories, you can use the same kind of rule outside
44
# OASIS_START/STOP if you want to exclude directories that contains
55
# useless stuff for the build process
@@ -30,8 +30,8 @@
3030
# Executable test_exec
3131
<test/test_exec.{native,byte}>: use_sqlite3
3232
# Executable test_fun
33-
<test/test_fun.{native,byte}>: use_sqlite3
3433
<test/test_fun.{native,byte}>: pkg_str
34+
<test/test_fun.{native,byte}>: use_sqlite3
3535
<test/*.ml{,i}>: pkg_str
3636
# Executable test_stmt
3737
<test/test_stmt.{native,byte}>: use_sqlite3

0 commit comments

Comments
 (0)