Skip to content

Commit d524ea6

Browse files
committed
update: chess_com_api, lichess_api, pgn_parser 1.0.2
1 parent 1c9b441 commit d524ea6

File tree

3 files changed

+145
-0
lines changed
  • packages
    • chess_com_api/chess_com_api.1.0.2
    • lichess_api/lichess_api.1.0.2
    • pgn_parser/pgn_parser.1.0.2

3 files changed

+145
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 borisnovoselov602@gmail.com"]
7+
authors: ["ckaf borisnovoselov602@gmail.com"]
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"}
16+
"cohttp-lwt-unix" {>= "5.0"}
17+
"yojson" {>= "1.7"}
18+
"lwt" {>= "5.6"}
19+
"lwt_ppx" {>= "2.0"}
20+
"pgn_parser"
21+
"qcheck" {>= "0.21" & with-test}
22+
"odoc" {with-doc}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@runtest" {with-test}
35+
"@doc" {with-doc}
36+
]
37+
]
38+
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
39+
x-maintenance-intent: ["(latest)"]
40+
available: arch != "arm32" & arch != "x86_32"
41+
42+
url {
43+
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.2.tar.gz"
44+
checksum: "sha256=d84c375f6acec42c8c3a64a05f6942e9c0289a8fd367a52f11099c866d9b1e22"
45+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 borisnovoselov602@gmail.com"]
7+
authors: ["ckaf borisnovoselov602@gmail.com"]
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"}
16+
"cohttp-lwt-unix" {>= "5.0"}
17+
"yojson" {>= "1.7"}
18+
"lwt" {>= "5.6"}
19+
"lwt_ppx" {>= "2.0"}
20+
"pgn_parser"
21+
"qcheck" {>= "0.21" & with-test}
22+
"odoc" {with-doc}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@runtest" {with-test}
35+
"@doc" {with-doc}
36+
]
37+
]
38+
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
39+
x-maintenance-intent: ["(latest)"]
40+
available: arch != "arm32" & arch != "x86_32"
41+
42+
url {
43+
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.2.tar.gz"
44+
checksum: "sha256=d84c375f6acec42c8c3a64a05f6942e9c0289a8fd367a52f11099c866d9b1e22"
45+
}
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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 borisnovoselov602@gmail.com"]
7+
authors: ["ckaf borisnovoselov602@gmail.com"]
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"}
27+
"cohttp-lwt-unix" {>= "5.0"}
28+
"yojson" {>= "1.7"}
29+
"lwt" {>= "5.6"}
30+
"lwt_ppx" {>= "2.0"}
31+
"qcheck" {>= "0.21" & with-test}
32+
"odoc" {with-doc}
33+
]
34+
build: [
35+
["dune" "subst"] {dev}
36+
[
37+
"dune"
38+
"build"
39+
"-p"
40+
name
41+
"-j"
42+
jobs
43+
"@install"
44+
"@runtest" {with-test}
45+
"@doc" {with-doc}
46+
]
47+
]
48+
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
49+
x-maintenance-intent: ["(latest)"]
50+
available: arch != "arm32" & arch != "x86_32"
51+
52+
url {
53+
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.2.tar.gz"
54+
checksum: "sha256=d84c375f6acec42c8c3a64a05f6942e9c0289a8fd367a52f11099c866d9b1e22"
55+
}

0 commit comments

Comments
 (0)