diff --git a/GT-bench.opam b/GT-bench.opam index 26de4cdd..1d6f1daa 100644 --- a/GT-bench.opam +++ b/GT-bench.opam @@ -3,6 +3,8 @@ opam-version: "2.0" version: "0.1" synopsis: "Some benchmarks. Should not be installed" maintainer: ["Kakadu@pm.me"] +authors: ["Dmitrii Kosarev a.k.a. Kakadu"] +license: "LGPL-2.1-or-later" homepage: "https://github.com/PLTools/GT" bug-reports: "https://github.com/PLTools/GT/issues" depends: [ diff --git a/GT.opam b/GT.opam index 43f892f7..db534f9b 100644 --- a/GT.opam +++ b/GT.opam @@ -22,7 +22,7 @@ license: "LGPL-2.1-or-later" homepage: "https://github.com/PLTools/GT" bug-reports: "https://github.com/PLTools/GT/issues" depends: [ - "ppxlib" {<= "0.28.0"} + "ppxlib" {<= "0.32.1"} "ocaml" {>= "4.13"} "camlp5" {>= "8.00.05"} "dune" {>= "2.8"} diff --git a/dune-project b/dune-project index e3aaff17..973caf5c 100644 --- a/dune-project +++ b/dune-project @@ -6,23 +6,26 @@ (name GT) +(license LGPL-2.1-or-later) + +(bug_reports "https://github.com/PLTools/GT/issues") + +(homepage "https://github.com/PLTools/GT") + (source (github PLTools/GT)) (package (name GT) (synopsis "Generic programming with extensible transformations") - (license LGPL-2.1-or-later) (description - "Yet another library for generic programming. Provides syntax extensions\nboth for camlp5 and PPX which allow decoration of type declarations with\nfollowing compile-time code generation. Provides the way for creating\nplugins (compiled separately from the library) for enchancing supported\ntype transformations.\n\nStrongly reminds the `visitors` library from Fran\195\167ois Pottier.\nDuring desing of a library of these kind there many possible\ndesign decision and in many cases we decided to implement\nthe decision opposite to the one used in `visitors`.\n\n\nP.S. Since 2023 development team is no longer associated with JetBrains Research") + "Yet another library for generic programming. Provides syntax extensions\nboth for camlp5 and PPX which allow decoration of type declarations with\nfollowing compile-time code generation. Provides the way for creating\nplugins (compiled separately from the library) for enchancing supported\ntype transformations.\n\nStrongly reminds the `visitors` library from François Pottier.\nDuring desing of a library of these kind there many possible\ndesign decision and in many cases we decided to implement\nthe decision opposite to the one used in `visitors`.\n\n\nP.S. Since 2023 development team is no longer associated with JetBrains Research") (authors "https://github.com/dboulytchev" "https://github.com/Kakadu") (maintainers "Kakadu@pm.me") - (homepage "https://github.com/PLTools/GT") - (bug_reports "https://github.com/PLTools/GT/issues") (version 0.5.2) (depends (ppxlib - (<= "0.28.0")) + (<= "0.32.1")) (ocaml (>= "4.13")) (camlp5 @@ -41,5 +44,6 @@ (name GT-bench) (synopsis "Some benchmarks. Should not be installed") (version 0.1) + (authors "Dmitrii Kosarev a.k.a. Kakadu") (maintainers "Kakadu@pm.me") (depends dune benchmark))