Skip to content

Commit

Permalink
Add opam descriptions. These fields seem to be required.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanlong committed May 8, 2020
1 parent 3d911f8 commit 5030b24
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 4 deletions.
11 changes: 9 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
(name pgx_unix)
(synopsis
"PGX using the standard library's Unix module for IO (synchronous)")
(description
"PGX using the standard library's Unix module for IO (synchronous)")
(depends
(ocaml
(>= 4.08))
Expand All @@ -66,6 +68,7 @@
(package
(name pgx_async)
(synopsis "Pgx using Async for IO")
(description "Pgx using Async for IO")
(depends
(alcotest-async
(and
Expand All @@ -85,6 +88,7 @@
(package
(name pgx_lwt)
(synopsis "Pgx using Lwt for IO")
(description "Pgx using Lwt for IO")
(depends
(alcotest-lwt
(and
Expand All @@ -99,7 +103,8 @@

(package
(name pgx_lwt_unix)
(synopsis "Pgx using Lwt for IO")
(synopsis "Pgx using Lwt and Unix libraries for IO")
(description "Pgx using Lwt and Unix libraries for IO")
(depends
(alcotest-lwt
(and
Expand All @@ -116,6 +121,7 @@
(package
(name pgx_value_core)
(synopsis "Pgx_value converters for Core types like Date and Time")
(description "Pgx_value converters for Core types like Date and Time")
(depends
(core_kernel
(>= "v0.13.0"))
Expand All @@ -126,7 +132,8 @@

(package
(name pgx_lwt_mirage)
(synopsis "Pgx using Lwt for IO")
(synopsis "Pgx using Lwt on Mirage for IO")
(description "Pgx using Lwt on Mirage for IO")
(depends
lwt
(ocaml
Expand Down
1 change: 1 addition & 0 deletions pgx_async.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pgx using Async for IO"
description: "Pgx using Async for IO"
maintainer: ["Arena Developers <silver-snakes@arena.io>"]
authors: ["Arena Developers <silver-snakes@arena.io>"]
license: "LGPL-2 with OCaml linking exception"
Expand Down
1 change: 1 addition & 0 deletions pgx_lwt.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pgx using Lwt for IO"
description: "Pgx using Lwt for IO"
maintainer: ["Arena Developers <silver-snakes@arena.io>"]
authors: ["Arena Developers <silver-snakes@arena.io>"]
license: "LGPL-2 with OCaml linking exception"
Expand Down
3 changes: 2 additions & 1 deletion pgx_lwt_mirage.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pgx using Lwt for IO"
synopsis: "Pgx using Lwt on Mirage for IO"
description: "Pgx using Lwt on Mirage for IO"
maintainer: ["Arena Developers <silver-snakes@arena.io>"]
authors: ["Arena Developers <silver-snakes@arena.io>"]
license: "LGPL-2 with OCaml linking exception"
Expand Down
3 changes: 2 additions & 1 deletion pgx_lwt_unix.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pgx using Lwt for IO"
synopsis: "Pgx using Lwt and Unix libraries for IO"
description: "Pgx using Lwt and Unix libraries for IO"
maintainer: ["Arena Developers <silver-snakes@arena.io>"]
authors: ["Arena Developers <silver-snakes@arena.io>"]
license: "LGPL-2 with OCaml linking exception"
Expand Down
2 changes: 2 additions & 0 deletions pgx_unix.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "PGX using the standard library's Unix module for IO (synchronous)"
description:
"PGX using the standard library's Unix module for IO (synchronous)"
maintainer: ["Arena Developers <silver-snakes@arena.io>"]
authors: ["Arena Developers <silver-snakes@arena.io>"]
license: "LGPL-2 with OCaml linking exception"
Expand Down
1 change: 1 addition & 0 deletions pgx_value_core.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pgx_value converters for Core types like Date and Time"
description: "Pgx_value converters for Core types like Date and Time"
maintainer: ["Arena Developers <silver-snakes@arena.io>"]
authors: ["Arena Developers <silver-snakes@arena.io>"]
license: "LGPL-2 with OCaml linking exception"
Expand Down

0 comments on commit 5030b24

Please sign in to comment.