Skip to content

Commit bd523ae

Browse files
committed
update: chess_com_api, lichess_api, pgn_parser 1.0.1
1 parent 4c972ba commit bd523ae

File tree

3 files changed

+144
-0
lines changed
  • packages
    • chess_com_api/chess_com_api.1.0.1
    • lichess_api/lichess_api.1.0.1
    • pgn_parser/pgn_parser.1.0.1

3 files changed

+144
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "Chess.com API client for chess games"
4+
description:
5+
"A client library for the Chess.com API that provides easy access to chess games, player data, tournament information, and daily puzzles. Supports fetching games in PGN format and extracting metadata."
6+
maintainer: ["ckaf [email protected]"]
7+
authors: ["ckaf [email protected]"]
8+
license: "MIT"
9+
tags: ["chess" "chess.com" "api" "http" "client" "games" "pgn"]
10+
homepage: "https://github.com/ckaf/pgn_parser"
11+
doc: "https://github.com/ckaf/pgn_parser"
12+
bug-reports: "https://github.com/ckaf/pgn_parser/issues"
13+
depends: [
14+
"ocaml" {>= "4.14"}
15+
"dune" {>= "3.19" & >= "3.0"}
16+
"cohttp-lwt-unix" {>= "5.0"}
17+
"yojson" {>= "1.7"}
18+
"lwt" {>= "5.6"}
19+
"lwt_ppx" {>= "2.0"}
20+
"qcheck" {>= "0.21"}
21+
"odoc" {with-doc}
22+
]
23+
build: [
24+
["dune" "subst"] {dev}
25+
[
26+
"dune"
27+
"build"
28+
"-p"
29+
name
30+
"-j"
31+
jobs
32+
"@install"
33+
"@runtest" {with-test}
34+
"@doc" {with-doc}
35+
]
36+
]
37+
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
38+
x-maintenance-intent: ["(latest)"]
39+
available: arch != "arm32" & arch != "x86_32"
40+
41+
url {
42+
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz"
43+
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0"
44+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "Lichess API client for chess games"
4+
description:
5+
"A client library for the Lichess API that provides easy access to chess games, player data, and tournament information. Supports fetching games in PGN format and extracting metadata."
6+
maintainer: ["ckaf [email protected]"]
7+
authors: ["ckaf [email protected]"]
8+
license: "MIT"
9+
tags: ["chess" "lichess" "api" "http" "client" "games" "pgn"]
10+
homepage: "https://github.com/ckaf/pgn_parser"
11+
doc: "https://github.com/ckaf/pgn_parser"
12+
bug-reports: "https://github.com/ckaf/pgn_parser/issues"
13+
depends: [
14+
"ocaml" {>= "4.14"}
15+
"dune" {>= "3.19" & >= "3.0"}
16+
"cohttp-lwt-unix" {>= "5.0"}
17+
"yojson" {>= "1.7"}
18+
"lwt" {>= "5.6"}
19+
"lwt_ppx" {>= "2.0"}
20+
"qcheck" {>= "0.21"}
21+
"odoc" {with-doc}
22+
]
23+
build: [
24+
["dune" "subst"] {dev}
25+
[
26+
"dune"
27+
"build"
28+
"-p"
29+
name
30+
"-j"
31+
jobs
32+
"@install"
33+
"@runtest" {with-test}
34+
"@doc" {with-doc}
35+
]
36+
]
37+
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
38+
x-maintenance-intent: ["(latest)"]
39+
available: arch != "arm32" & arch != "x86_32"
40+
41+
url {
42+
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz"
43+
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0"
44+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "PGN (Portable Game Notation) parser for chess games"
4+
description:
5+
"A comprehensive PGN parser written in OCaml that supports parsing chess games from various sources including Lichess and Chess.com APIs. Features include board tracking, Zobrist hashing, property-based testing, and unfinished games support."
6+
maintainer: ["ckaf [email protected]"]
7+
authors: ["ckaf [email protected]"]
8+
license: "MIT"
9+
tags: [
10+
"chess"
11+
"pgn"
12+
"parser"
13+
"lichess"
14+
"chess.com"
15+
"api"
16+
"testing"
17+
"zobrist"
18+
"board-tracking"
19+
"unfinished-games"
20+
]
21+
homepage: "https://github.com/ckaf/pgn_parser"
22+
doc: "https://github.com/ckaf/pgn_parser"
23+
bug-reports: "https://github.com/ckaf/pgn_parser/issues"
24+
depends: [
25+
"ocaml" {>= "4.14"}
26+
"dune" {>= "3.19" & >= "3.0"}
27+
"qcheck" {>= "0.21"}
28+
"cohttp-lwt-unix" {>= "5.0"}
29+
"yojson" {>= "1.7"}
30+
"lwt" {>= "5.6"}
31+
"lwt_ppx" {>= "2.0"}
32+
"qcheck" {>= "0.21"}
33+
"odoc" {with-doc}
34+
]
35+
build: [
36+
["dune" "subst"] {dev}
37+
[
38+
"dune"
39+
"build"
40+
"-p"
41+
name
42+
"-j"
43+
jobs
44+
"@install"
45+
"@runtest" {with-test}
46+
"@doc" {with-doc}
47+
]
48+
]
49+
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
50+
x-maintenance-intent: ["(latest)"]
51+
available: arch != "arm32" & arch != "x86_32"
52+
53+
url {
54+
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz"
55+
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0"
56+
}

0 commit comments

Comments
 (0)