From 6e203929f4ccd5da684c2d49e25286cef044ca0a Mon Sep 17 00:00:00 2001 From: Shakthi Kannan Date: Thu, 14 Jan 2021 19:22:07 +0530 Subject: [PATCH 1/2] Added meta files for dune-release lint --- CHANGES | 6 ++++++ LICENSE | 20 ++++++++++++++++++++ README.md | 1 + orun.opam | 7 +++++++ 4 files changed, 34 insertions(+) create mode 100644 CHANGES create mode 100644 LICENSE create mode 100644 README.md diff --git a/CHANGES b/CHANGES new file mode 100644 index 0000000..d475a87 --- /dev/null +++ b/CHANGES @@ -0,0 +1,6 @@ +# Changelog +=========== + +## [0.1] - January 14, 2021 +### Added +- Meta files for dune release diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a56c4b5 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +The MIT License + +Copyright 2021 Stephen Dolan + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..9974f5f --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# orun diff --git a/orun.opam b/orun.opam index c876d38..f987858 100644 --- a/orun.opam +++ b/orun.opam @@ -5,8 +5,15 @@ synopsis: "Run benchmarks and measure performance" maintainer: "Stephen Dolan " authors: "Stephen Dolan " license: "MIT" +homepage: "https://github.com/ocaml-bench/orun" +bug-reports: "https://github.com/ocaml-bench/orun/issues" depends: [ "ocaml" "re" "cmdliner" "yojson" ] build: [ ["ocaml-update-c" "wait4.c"] {ocaml:update-c} ["dune" "build" "-p" name] ] +description: """ +The orun utility executes the benchmarks for +[Sandmark](https://github.com/ocaml-bench/sandmark) and reports the performance +results. +""" From 5e7a6a35d9c5900f3ec6553dfdaada095a5bc6d3 Mon Sep 17 00:00:00 2001 From: Shakthi Kannan Date: Thu, 28 Jan 2021 17:29:27 +0530 Subject: [PATCH 2/2] Update orun.opam Added Shakthi Kannan as maintainer and credited Stephen Dolan as author. --- orun.opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orun.opam b/orun.opam index f987858..dd6b0f9 100644 --- a/orun.opam +++ b/orun.opam @@ -2,7 +2,7 @@ opam-version: "2.0" name: "orun" version: "0.1" synopsis: "Run benchmarks and measure performance" -maintainer: "Stephen Dolan " +maintainer: "Shakthi Kannan " authors: "Stephen Dolan " license: "MIT" homepage: "https://github.com/ocaml-bench/orun"