Skip to content

Commit f520185

Browse files
committed
[new release] plist-xml (0.5.0)
CHANGES: - Rename `of_channel` to `from_channel` and `of_string` to `from_string`. The new names reflect the naming convention across multiple popular OCaml file format libraries.
1 parent 25bba47 commit f520185

File tree

1 file changed

+49
-0
lines changed
  • packages/plist-xml/plist-xml.0.5.0

1 file changed

+49
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Reading and writing of plist files in the XML format in pure OCaml"
4+
description: """
5+
Reading and writing of plist files in the XML format in pure OCaml.
6+
7+
Implementation of https://www.apple.com/DTDs/PropertyList-1.0.dtd."""
8+
maintainer: ["Alan Hu <[email protected]>"]
9+
authors: ["Alan Hu <[email protected]>"]
10+
license: "MIT"
11+
homepage: "https://github.com/alan-j-hu/ocaml-plist-xml"
12+
doc: "https://alan-j-hu.github.io/ocaml-plist-xml/"
13+
bug-reports: "https://github.com/alan-j-hu/ocaml-plist-xml/issues"
14+
depends: [
15+
"dune" {>= "2.7"}
16+
"base64" {>= "3.4"}
17+
"cstruct" {>= "6.1"}
18+
"ISO8601" {>= "0.2.6"}
19+
"menhir" {>= "20220210"}
20+
"ocaml" {>= "4.13"}
21+
"xmlm" {>= "1.4"}
22+
"eio" {>= "0.7" & with-test}
23+
"eio_main" {>= "0.7" & with-test}
24+
"odoc" {with-doc}
25+
]
26+
build: [
27+
["dune" "subst"] {dev}
28+
[
29+
"dune"
30+
"build"
31+
"-p"
32+
name
33+
"-j"
34+
jobs
35+
"@install"
36+
"@runtest" {with-test}
37+
"@doc" {with-doc}
38+
]
39+
]
40+
dev-repo: "git+https://github.com/alan-j-hu/ocaml-plist-xml.git"
41+
url {
42+
src:
43+
"https://github.com/alan-j-hu/ocaml-plist-xml/releases/download/0.5.0/plist-xml-0.5.0.tbz"
44+
checksum: [
45+
"sha256=b185065b626477ef5cdcbef598b350ed54199bc99e08f875b4a6dc8830a283c3"
46+
"sha512=e24da7f6dc433a4fdfa2c66934f11c43eb23134b7630936793d0df72dc21ec8b24f5f4d40d021356af5ba88debd0329a2dc07e802468909f5937cb125ef31a3b"
47+
]
48+
}
49+
x-commit-hash: "db81fc05765a3a6f7b7f95a8780c72e07efd46e3"

0 commit comments

Comments
 (0)