Skip to content

Commit

Permalink
Update version to 2.7.1-cvs4
Browse files Browse the repository at this point in the history
  • Loading branch information
astrada committed Nov 28, 2016
1 parent b0552e7 commit 3e37f30
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 12 deletions.
10 changes: 9 additions & 1 deletion _oasis
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
Expand All @@ -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
Expand All @@ -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

7 changes: 7 additions & 0 deletions opam/descr
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.

2 changes: 1 addition & 1 deletion opam/opam
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 0 additions & 2 deletions opam/url

This file was deleted.

37 changes: 29 additions & 8 deletions setup.ml
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
Expand Down Expand Up @@ -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
Expand All @@ -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 = [];
Expand Down Expand Up @@ -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 = [];
Expand Down Expand Up @@ -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 *)
Expand Down

0 comments on commit 3e37f30

Please sign in to comment.