this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #24222 from AltGr/opam-publish-ocp-browser-ocp-index.1.3.5

2 packages from OCamlPro/ocp-index at 1.3.5

authored by

Kate and committed by
GitHub
5c7305f2 1a2b8960

+82
+34
packages/ocp-browser/ocp-browser.1.3.5/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "louis.gesbert@ocamlpro.com" 3 + synopsis: "Console browser for the documentation of installed OCaml libraries" 4 + description: """ 5 + ocp-browser is a ncurses-like interface that allows to easily browse the 6 + interfaces and documentation of all installed OCaml modules. 7 + """ 8 + authors: [ 9 + "Louis Gesbert" 10 + "Gabriel Radanne" 11 + ] 12 + homepage: "http://www.typerex.org/ocp-index.html" 13 + bug-reports: "https://github.com/OCamlPro/ocp-index/issues" 14 + license: "GPL-3.0-only" 15 + tags: [ "org:ocamlpro" "org:typerex" ] 16 + dev-repo: "git+https://github.com/OCamlPro/ocp-index.git" 17 + build: ["dune" "build" "-p" name "-j" jobs] 18 + depends: [ 19 + "ocaml" {>= "4.08.0"} 20 + "cppo" {build & >= "1.1.0"} 21 + "dune" {>= "1.0"} 22 + "ocp-index" {= version} 23 + "cmdliner" {>= "1.1.0"} 24 + "lambda-term" {>= "3.3.0"} 25 + "zed" {>= "2.0.0"} 26 + "odoc" {with-test} 27 + ] 28 + url { 29 + src: "https://github.com/OCamlPro/ocp-index/archive/1.3.5.tar.gz" 30 + checksum: [ 31 + "md5=0bc13dfb30c5dece280fd2496ca57cea" 32 + "sha512=19f564a98cba92c26ebb32d46b7eb9eb60374977760c97b62c1ffa4f568d0a8e563df4a6bbc3ad7ca7760548c7c57465d1eb30ab5f3138c6fb1084d68c0cc0b0" 33 + ] 34 + }
+48
packages/ocp-index/ocp-index.1.3.5/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "louis.gesbert@ocamlpro.com" 3 + synopsis: 4 + "Lightweight completion and documentation browsing for OCaml libraries" 5 + description: """ 6 + This package includes 7 + * The `ocp-index` library and command-line tool 8 + * `ocp-grep`, a tool that finds uses of a given (qualified) identifier in a source tree 9 + * bindings for emacs and vim (sublime text also [available](https://github.com/whitequark/sublime-ocp-index/)) 10 + 11 + To automatically configure your editors, install this with package `user-setup`. 12 + """ 13 + authors: [ 14 + "Louis Gesbert" 15 + "Gabriel Radanne" 16 + ] 17 + homepage: "http://www.typerex.org/ocp-index.html" 18 + bug-reports: "https://github.com/OCamlPro/ocp-index/issues" 19 + license: ["LGPL-2.1-only WITH OCaml-LGPL-linking-exception" "GPL-3.0-only"] 20 + tags: [ "org:ocamlpro" "org:typerex" ] 21 + dev-repo: "git+https://github.com/OCamlPro/ocp-index.git" 22 + build: ["dune" "build" "-p" name "-j" jobs] 23 + depends: [ 24 + "ocaml" {>= "4.08.0"} 25 + "cppo" {build & >= "1.1.0"} 26 + "dune" {>= "1.0"} 27 + "ocp-indent" {>= "1.4.2"} 28 + "re" {>= "1.9.0"} 29 + "cmdliner" {>= "1.1.0"} 30 + "odoc" {with-doc} 31 + ] 32 + post-messages: 33 + "This package requires additional configuration for use in editors. Either install package 'user-setup', or manually: 34 + 35 + * for Emacs, add these lines to ~/.emacs: 36 + (add-to-list 'load-path \"%{prefix}%/share/emacs/site-lisp\") 37 + (require 'ocp-index) 38 + 39 + * for Vim, add the following line to ~/.vimrc: 40 + set rtp+=%{share}%/ocp-index/vim 41 + " {success & !user-setup:installed} 42 + url { 43 + src: "https://github.com/OCamlPro/ocp-index/archive/1.3.5.tar.gz" 44 + checksum: [ 45 + "md5=0bc13dfb30c5dece280fd2496ca57cea" 46 + "sha512=19f564a98cba92c26ebb32d46b7eb9eb60374977760c97b62c1ffa4f568d0a8e563df4a6bbc3ad7ca7760548c7c57465d1eb30ab5f3138c6fb1084d68c0cc0b0" 47 + ] 48 + }