Skip to content

Commit

Permalink
Fixed issues with opam package
Browse files Browse the repository at this point in the history
  • Loading branch information
pdonadeo committed Jun 29, 2015
1 parent 91c0cde commit 7e929f4
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 6 deletions.
4 changes: 2 additions & 2 deletions META
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OASIS_START
# DO NOT EDIT (digest: 7110d18b69c7e1be3e06de9015a49fe6)
version = "1.0.0"
# DO NOT EDIT (digest: 4069a55bd3b6fca80ea3067861b2ff47)
version = "1.0.2"
description = "Functional lenses"
archive(byte) = "lens.cma"
archive(byte, plugin) = "lens.cma"
Expand Down
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Description:
see http://www.youtube.com/watch?v=efv0SQNde5Q - Functional lenses for Scala by Edward Kmett on YouTube
see http://patternsinfp.wordpress.com/2011/01/31/lenses-are-the-coalgebras-for-the-costate-comonad - Lenses are the coalgebras for the costate comonad by Jeremy Gibbons
Homepage: https://github.com/avsm/ocaml-lens
Version: 1.0.0
Version: 1.0.2
Synopsis: Functional lenses
Authors: Alessandro Strada <[email protected]>
Maintainers: Paolo Donadeo <[email protected]>
Expand Down
8 changes: 8 additions & 0 deletions opam/lens.1.0.2/descr
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Functional lenses
Based on F# implementation in https://github.com/fsharp/fsharpx
see https://github.com/fsharp/fsharpx/blob/master/src/FSharpx.Core/Lens.fs for the original implementation
see http://bugsquash.blogspot.com/2011/11/lenses-in-f.html - Lenses in F#
see http://stackoverflow.com/questions/8179485/updating-nested-immutable-data-structures - Stackoverflow question about Updating nested immutable data structures
see http://stackoverflow.com/questions/5767129/lenses-fclabels-data-accessor-which-library-for-structure-access-and-mutatio - Haskell libraries for structure access and mutation
see http://www.youtube.com/watch?v=efv0SQNde5Q - Functional lenses for Scala by Edward Kmett on YouTube
see http://patternsinfp.wordpress.com/2011/01/31/lenses-are-the-coalgebras-for-the-costate-comonad - Lenses are the coalgebras for the costate comonad by Jeremy Gibbons
1 change: 1 addition & 0 deletions opam/lens.1.0.2/findlib
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lens
19 changes: 19 additions & 0 deletions opam/lens.1.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
opam-version: "1.2"
available: [ ocaml-version >= "4.01.0" ]
maintainer: "Paolo Donadeo <[email protected]>"
authors: [ "Alessandro Strada <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/pdonadeo/ocaml-lens"
dev-repo: "https://github.com/pdonadeo/ocaml-lens.git"
bug-reports: "https://github.com/pdonadeo/ocaml-lens/issues"
build: [
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
["ocaml" "setup.ml" "-build"]
]
install: ["ocaml" "setup.ml" "-install"]
remove: [
["ocamlfind" "remove" "lens"]
]
depends: [
"ocamlfind" { build }
]
2 changes: 2 additions & 0 deletions opam/lens.1.0.2/url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
archive: "https://github.com/pdonadeo/ocaml-lens/archive/v1.0.1.tar.gz"
checksum: "5907e5d883976be6c1b5b5ba7e00d1c3"
6 changes: 3 additions & 3 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: a174322cadd817e958715b31def1721a) *)
(* DO NOT EDIT (digest: defeb238516b156a9442b6a8559f8561) *)
(*
Regenerated by OASIS v0.4.5
Visit http://oasis.forge.ocamlcore.org for more information and
Expand Down Expand Up @@ -6673,7 +6673,7 @@ let setup_t =
alpha_features = [];
beta_features = [];
name = "lens";
version = "1.0.0";
version = "1.0.2";
license =
OASISLicense.DEP5License
(OASISLicense.DEP5Unit
Expand Down Expand Up @@ -6770,7 +6770,7 @@ let setup_t =
};
oasis_fn = Some "_oasis";
oasis_version = "0.4.5";
oasis_digest = Some "iA+\019\191\156@g\160\240\225x\140\150\155\249";
oasis_digest = Some "{~\199\020W\197\252~3%Q8!\2037\191";
oasis_exec = None;
oasis_setup_args = [];
setup_update = false
Expand Down

0 comments on commit 7e929f4

Please sign in to comment.