this repo has no description

merge descr and url files into opam files

Some descr and url files have been merged in the
days after the merge to opam2. This PR is to
make it right and include them in the opam file
instead.

A forthcoming PR will add a synopsis or description
to the packages that are currently missing one
when it is possible to get it.

Signed-off-by: Marcello Seri <marcello.seri@gmail.com>

Changed files
+99 -46
packages
base-bigarray
base-bigarray.base
base-threads
base-threads.base
base-unix
base-unix.base
color
color.0.2.0
jingoo
jingoo.1.2.19
jingoo.1.2.20
json_decoder
json_decoder.0.1.1
ocaml-migrate-parsetree
ocaml-migrate-parsetree.1.1.0
ppxlib
ppxlib.0.3.1
zeit
zeit.0.1.0
-1
packages/base-bigarray/base-bigarray.base/descr
···
-
Bigarray library distributed with the OCaml compiler
+4
packages/base-bigarray/base-bigarray.base/opam
···
opam-version: "1"
maintainer: "https://github.com/ocaml/opam-repository/issues"
+
description: """
+
Bigarray library distributed with the OCaml compiler
+
"""
+
-1
packages/base-threads/base-threads.base/descr
···
-
Threads library distributed with the OCaml compiler
+4
packages/base-threads/base-threads.base/opam
···
opam-version: "1"
maintainer: "https://github.com/ocaml/opam-repository/issues"
+
description: """
+
Threads library distributed with the OCaml compiler
+
"""
+
-1
packages/base-unix/base-unix.base/descr
···
-
Unix library distributed with the OCaml compiler
+4
packages/base-unix/base-unix.base/opam
···
opam-version: "1"
maintainer: "https://github.com/ocaml/opam-repository/issues"
+
description: """
+
Unix library distributed with the OCaml compiler
+
"""
+
-7
packages/color/color.0.2.0/descr
···
-
Converts between different color formats
-
-
Library that converts between different color formats. Right now it deals with
-
HSL, HSLA, RGB and RGBA formats.
-
-
The goal for this library is to provide easy handling of colors on the web, when working
-
with `js_of_ocaml`.
+16
packages/color/color.0.2.0/opam
···
"alcotest" {with-test}
"gg"
]
+
+
description: """
+
Converts between different color formats
+
+
Library that converts between different color formats. Right now it deals with
+
HSL, HSLA, RGB and RGBA formats.
+
+
The goal for this library is to provide easy handling of colors on the web, when working
+
with `js_of_ocaml`.
+
"""
+
+
url {
+
src: "https://github.com/anuragsoni/color/releases/download/0.2.0/color-0.2.0.tbz"
+
checksum: ["md5=36a5d45385a02f96d07d40d1b0fbcf8a"]
+
}
+
-2
packages/color/color.0.2.0/url
···
-
archive: "https://github.com/anuragsoni/color/releases/download/0.2.0/color-0.2.0.tbz"
-
checksum: "36a5d45385a02f96d07d40d1b0fbcf8a"
-1
packages/jingoo/jingoo.1.2.19/descr
···
-
Template engine almost compatible with Jinja2(python template engine)
+6
packages/jingoo/jingoo.1.2.19/opam
···
"uucp"
"ounit" {test}
]
+
+
description: """
+
Template engine almost compatible with Jinja2 (python template engine)
+
"""
+
url {
src: "https://github.com/tategakibunko/jingoo/archive/v1.2.19.tar.gz"
checksum: "md5=97fbeb07f5a3424b3ae65e2c2dedecda"
}
+
-1
packages/jingoo/jingoo.1.2.20/descr
···
-
Template engine almost compatible with Jinja2(python template engine)
+6
packages/jingoo/jingoo.1.2.20/opam
···
"uucp"
"ounit" {test}
]
+
+
description: """
+
Template engine almost compatible with Jinja2 (python template engine)
+
"""
+
url {
src: "https://github.com/tategakibunko/jingoo/archive/v1.2.20.tar.gz"
checksum: "md5=a738c9737e6941429bf65cb2b4ede4cb"
}
+
-10
packages/json_decoder/json_decoder.0.1.1/descr
···
-
JSON Decoder is an OCaml module that enables flexible decoding of JSON values.
-
It is based on Elm's Json.Decode module with a few tweaks.
-
-
This module allows you to do things like decode a field based on the type or
-
content of some other field, or even the failure to decode some other field.
-
It allows you to shape the results of a decode into a structure of your choice.
-
-
Rather than unpacking a JSON value directly into an analogous OCaml structure;
-
this module helps you to massage data into the shape you want by describing
-
the transformations that need to take place.
+19
packages/json_decoder/json_decoder.0.1.1/opam
···
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
+
+
description: """
+
JSON Decoder is an OCaml module that enables flexible decoding of JSON values.
+
It is based on Elm's Json.Decode module with a few tweaks.
+
+
This module allows you to do things like decode a field based on the type or
+
content of some other field, or even the failure to decode some other field.
+
It allows you to shape the results of a decode into a structure of your choice.
+
+
Rather than unpacking a JSON value directly into an analogous OCaml structure;
+
this module helps you to massage data into the shape you want by describing
+
the transformations that need to take place.
+
"""
+
+
url {
+
src: "https://github.com/dagoof/ocaml-json-decoder/releases/download/v0.1.1/json_decoder-0.1.1.tbz"
+
checksum: ["md5=04d5c7b9b55ec973bb88ac55789addef"]
+
}
+
-2
packages/json_decoder/json_decoder.0.1.1/url
···
-
src: "https://github.com/dagoof/ocaml-json-decoder/releases/download/v0.1.1/json_decoder-0.1.1.tbz"
-
checksum: ["md5=04d5c7b9b55ec973bb88ac55789addef"]
-4
packages/ocaml-migrate-parsetree/ocaml-migrate-parsetree.1.1.0/descr
···
-
Convert OCaml parsetrees between different versions
-
-
This library converts parsetrees, outcometree and ast mappers between different OCaml versions.
-
High-level functions help making PPX rewriters independent of a compiler version.
+13
packages/ocaml-migrate-parsetree/ocaml-migrate-parsetree.1.1.0/opam
···
"dune" {build}
"ocaml" {>= "4.02.0"}
]
+
+
description: """
+
Convert OCaml parsetrees between different versions
+
+
This library converts parsetrees, outcometree and ast mappers between different OCaml versions.
+
High-level functions help making PPX rewriters independent of a compiler version.
+
"""
+
+
url {
+
src: "https://github.com/ocaml-ppx/ocaml-migrate-parsetree/releases/download/v1.1.0/ocaml-migrate-parsetree-1.1.0.tbz"
+
checksum: ["md5=7dd4808e27af98065f63604c9658d311"]
+
}
+
-2
packages/ocaml-migrate-parsetree/ocaml-migrate-parsetree.1.1.0/url
···
-
archive: "https://github.com/ocaml-ppx/ocaml-migrate-parsetree/releases/download/v1.1.0/ocaml-migrate-parsetree-1.1.0.tbz"
-
checksum: "7dd4808e27af98065f63604c9658d311"
-9
packages/ppxlib/ppxlib.0.3.1/descr
···
-
A comprehensive toolbox for ppx development. It features:
-
- a OCaml AST / parser / pretty-printer snapshot,to create a full
-
frontend independent of the version of OCaml;
-
- a library for library for ppx rewriters in general, and type-driven
-
code generators in particular;
-
- a feature-full driver for OCaml AST transformers;
-
- a quotation mechanism allowing to write values representing the
-
OCaml AST in the OCaml syntax;
-
- a generator of open recursion classes from type definitions.
+17
packages/ppxlib/ppxlib.0.3.1/opam
···
"stdio" {>= "v0.11.0"}
"ocaml" {>= "4.04.1"}
]
+
+
description: """
+
A comprehensive toolbox for ppx development. It features:
+
- a OCaml AST / parser / pretty-printer snapshot,to create a full
+
frontend independent of the version of OCaml;
+
- a library for library for ppx rewriters in general, and type-driven
+
code generators in particular;
+
- a feature-full driver for OCaml AST transformers;
+
- a quotation mechanism allowing to write values representing the
+
OCaml AST in the OCaml syntax;
+
- a generator of open recursion classes from type definitions.
+
"""
+
+
url {
+
src: "https://github.com/ocaml-ppx/ppxlib/releases/download/0.3.1/ppxlib-0.3.1.tbz"
+
checksum: ["md5=d83dd03bc744651d4642b84063bffcf9"]
+
}
-2
packages/ppxlib/ppxlib.0.3.1/url
···
-
archive: "https://github.com/ocaml-ppx/ppxlib/releases/download/0.3.1/ppxlib-0.3.1.tbz"
-
checksum: "d83dd03bc744651d4642b84063bffcf9"
-1
packages/zeit/zeit.0.1.0/descr
···
-
Client for the Zeit API and now.sh
+10
packages/zeit/zeit.0.1.0/opam
···
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/emillon/ocaml-zeit.git"
+
+
description: """
+
Client for the Zeit API and now.sh
+
"""
+
+
url {
+
src: "https://github.com/emillon/ocaml-zeit/releases/download/v0.1.0/zeit-0.1.0.tbz"
+
checksum: [ "md5=5da8524b892f5e37c296766e81f7d418" ]
+
}
+
-2
packages/zeit/zeit.0.1.0/url
···
-
src: "https://github.com/emillon/ocaml-zeit/releases/download/v0.1.0/zeit-0.1.0.tbz"
-
checksum: [ "md5=5da8524b892f5e37c296766e81f7d418" ]