-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
46 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
OASISFormat: 0.4 | ||
OCamlVersion: >= 3.08.0 | ||
Name: ocamlfuse | ||
Version: 2.7.1-cvs3 | ||
Version: 2.7.1-cvs4 | ||
Authors: Vincenzo Ciancia | ||
Maintainers: Alessandro Strada <[email protected]> | ||
License: GPL | ||
|
@@ -10,6 +10,7 @@ BuildType: custom (0.4) | |
InstallType: custom (0.4) | ||
BuildTools: make | ||
Homepage: http://sourceforge.net/apps/mediawiki/ocamlfuse | ||
BugReports: https://github.com/astrada/ocamlfuse/issues | ||
Synopsis: OCaml bindings for FUSE (Filesystem in UserSpacE) | ||
Description: This is a binding to FUSE for the OCaml programming language, | ||
enabling you to write multithreaded filesystems in the OCaml language. It | ||
|
@@ -26,3 +27,10 @@ Library Fuse | |
Path: lib | ||
BuildDepends: unix, threads, bigarray, camlidl | ||
|
||
# VCS | ||
SourceRepository head | ||
Type: git | ||
Location: https://github.com/astrada/ocamlfuse.git | ||
Browser: https://github.com/astrada/ocamlfuse | ||
Branch: master | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
OCaml bindings for FUSE (Filesystem in UserSpacE) | ||
This is a binding to FUSE for the OCaml programming language, enabling | ||
you to write multithreaded filesystems in the OCaml language. It has | ||
been designed with simplicity as a goal, as you can see by looking at | ||
example/fusexmp.ml. Efficiency has also been a separate goal. The | ||
Bigarray library is used for read and writes, allowing the library to | ||
do zero-copy in OCaml land. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ maintainer: "Alessandro Strada <[email protected]>" | |
authors: [ "Vincenzo Ciancia" ] | ||
license: "GPL" | ||
homepage: "http://sourceforge.net/apps/mediawiki/ocamlfuse" | ||
bug-reports: "https://github.com/astrada/ocamlfuse/issues" | ||
dev-repo: "https://github.com/astrada/ocamlfuse.git" | ||
bug-reports: "https://github.com/astrada/ocamlfuse/issues" | ||
build: [ | ||
["ocaml" "setup.ml" "-configure" "--prefix" prefix] | ||
["ocaml" "setup.ml" "-build"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
(* setup.ml generated for the first time by OASIS v0.3.0 *) | ||
|
||
(* OASIS_START *) | ||
(* DO NOT EDIT (digest: 6379af9895d116bdee52932daa390a5e) *) | ||
(* DO NOT EDIT (digest: e880ecdd6f55bfac9313080f782ed82b) *) | ||
(* | ||
Regenerated by OASIS v0.4.7 | ||
Visit http://oasis.forge.ocamlcore.org for more information and | ||
|
@@ -6704,7 +6704,7 @@ let setup_t = | |
{ | ||
oasis_version = "0.4"; | ||
ocaml_version = Some (OASISVersion.VGreaterEqual "3.08.0"); | ||
version = "2.7.1-cvs3"; | ||
version = "2.7.1-cvs4"; | ||
license = | ||
OASISLicense.DEP5License | ||
(OASISLicense.DEP5Unit | ||
|
@@ -6719,12 +6719,17 @@ let setup_t = | |
name = "ocamlfuse"; | ||
license_file = Some "LICENSE"; | ||
copyrights = []; | ||
maintainers = []; | ||
maintainers = ["Alessandro Strada <[email protected]>"]; | ||
authors = ["Vincenzo Ciancia"]; | ||
homepage = Some "http://sourceforge.net/apps/mediawiki/ocamlfuse"; | ||
bugreports = None; | ||
bugreports = Some "https://github.com/astrada/ocamlfuse/issues"; | ||
synopsis = "OCaml bindings for FUSE (Filesystem in UserSpacE)"; | ||
description = None; | ||
description = | ||
Some | ||
[ | ||
OASISText.Para | ||
"This is a binding to FUSE for the OCaml programming language, enabling you to write multithreaded filesystems in the OCaml language. It has been designed with simplicity as a goal, as you can see by looking at example/fusexmp.ml. Efficiency has also been a separate goal. The Bigarray library is used for read and writes, allowing the library to do zero-copy in OCaml land." | ||
]; | ||
tags = []; | ||
categories = []; | ||
files_ab = []; | ||
|
@@ -6877,6 +6882,23 @@ let setup_t = | |
lib_findlib_name = None; | ||
lib_findlib_directory = None; | ||
lib_findlib_containers = [] | ||
}); | ||
SrcRepo | ||
({ | ||
cs_name = "head"; | ||
cs_data = PropList.Data.create (); | ||
cs_plugin_data = [] | ||
}, | ||
{ | ||
src_repo_type = Git; | ||
src_repo_location = | ||
"https://github.com/astrada/ocamlfuse.git"; | ||
src_repo_browser = | ||
Some "https://github.com/astrada/ocamlfuse"; | ||
src_repo_module = None; | ||
src_repo_branch = Some "master"; | ||
src_repo_tag = None; | ||
src_repo_subdir = None | ||
}) | ||
]; | ||
disable_oasis_section = []; | ||
|
@@ -6919,16 +6941,15 @@ let setup_t = | |
}; | ||
oasis_fn = Some "_oasis"; | ||
oasis_version = "0.4.7"; | ||
oasis_digest = | ||
Some "\227\225\230\163#\229\252\243\020L\006\140\175\005\145\135"; | ||
oasis_digest = Some "xF\130\1391\016\253k\254m\216\1520\237b}"; | ||
oasis_exec = None; | ||
oasis_setup_args = []; | ||
setup_update = false | ||
};; | ||
|
||
let setup () = BaseSetup.setup setup_t;; | ||
|
||
# 6932 "setup.ml" | ||
# 6953 "setup.ml" | ||
let setup_t = BaseCompat.Compat_0_4.adapt_setup_t setup_t | ||
open BaseCompat.Compat_0_4 | ||
(* OASIS_STOP *) | ||
|