Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 18 additions & 15 deletions syslog-message.opam
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
opam-version: "1.2"
opam-version: "2.0"
maintainer: "Jochen Bartl <jochenbartl@mailbox.org>"
authors: [ "Jochen Bartl <jochenbartl@mailbox.org>" ]
license: "BSD2"
homepage: "https://github.com/verbosemode/syslog-message"
dev-repo: "https://github.com/verbosemode/syslog-message.git"
bug-reports: "https://github.com/verbosemode/syslog-message/issues"
doc: "https://verbosemode.github.io/syslog-message/doc"

build: [
[ "dune" "subst" ] {pinned}
[ "dune" "build" "-p" name "-j" jobs ]
]

build-test: [
[ "dune" "runtest" ]
]
dev-repo: "git+https://github.com/verbosemode/syslog-message.git"
bug-reports: "https://github.com/verbosemode/syslog-message/issues"
license: "BSD2"

depends: [
"ocaml-version" {>= "4.03.0"}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

only ocaml, no -version

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed. Thanks :-)

"dune" {>= "1.1.0" & build}
"astring"
"ptime"
"rresult"
"qcheck" {test}
"qcheck" {with-test}
]

build: [
[ "dune" "subst" ] {pinned}
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
]
available: [ ocaml-version >= "4.03.0" ]

synopsis: "Syslog message parser"
description: """
This is a library for parsing and generating [RFC3164](https://tools.ietf.org/html/rfc3164)
compatible Syslog messages.
"""