Update URIs following initial push
I changed the name of the repository in gitea so the URIs in the README, dune-project, and partridge.opam files need updating.
This commit is contained in:
10
README.md
10
README.md
@@ -1,4 +1,4 @@
|
|||||||
# Triangle Square Cubes
|
# Partridge
|
||||||
|
|
||||||
Following Matt Parker's Video on Squares of Triangle Numbers being sum of cubes,
|
Following Matt Parker's Video on Squares of Triangle Numbers being sum of cubes,
|
||||||
and the Partridge Problem: https://youtu.be/eqyuQZHfNPQ?si=hbOQdVKBC-jwvysk.
|
and the Partridge Problem: https://youtu.be/eqyuQZHfNPQ?si=hbOQdVKBC-jwvysk.
|
||||||
@@ -12,13 +12,15 @@ Apache-2.0 license.
|
|||||||
|
|
||||||
## Running the code
|
## Running the code
|
||||||
|
|
||||||
### Initial setup
|
### Prerequisites
|
||||||
|
|
||||||
Prerequisite is to have `git` and `opam` installed on the path.
|
Prerequisite is to have `git` and `opam` installed on the path.
|
||||||
|
|
||||||
|
### Code checkout and setup.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git clone ...
|
git clone https://gitea.gretton-dann.org.uk/mgrettondann/partridge.git
|
||||||
cd triangle-square-cubes
|
cd partridge
|
||||||
opam switch create .
|
opam switch create .
|
||||||
opam update
|
opam update
|
||||||
opam install . --deps-only
|
opam install . --deps-only
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
(generate_opam_files true)
|
(generate_opam_files true)
|
||||||
|
|
||||||
(source
|
(source
|
||||||
(uri git+https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes.git))
|
(uri git+https://gitea.gretton-dann.org.uk/mgrettondann/partridge.git))
|
||||||
|
|
||||||
(authors "Matthew Gretton-Dann <matt@gretton-dann.org.uk>")
|
(authors "Matthew Gretton-Dann <matt@gretton-dann.org.uk>")
|
||||||
|
|
||||||
@@ -13,9 +13,9 @@
|
|||||||
|
|
||||||
(license Apache-2.0)
|
(license Apache-2.0)
|
||||||
|
|
||||||
(homepage https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes)
|
(homepage https://gitea.gretton-dann.org.uk/mgrettondann/partridge)
|
||||||
(bug_reports https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes/issues)
|
(bug_reports https://gitea.gretton-dann.org.uk/mgrettondann/partridge/issues)
|
||||||
(documentation https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes)
|
(documentation https://gitea.gretton-dann.org.uk/mgrettondann/partridge)
|
||||||
|
|
||||||
(package
|
(package
|
||||||
(name partridge)
|
(name partridge)
|
||||||
|
|||||||
@@ -7,11 +7,10 @@ maintainer: ["Matthew Gretton-Dann <matt@gretton-dann.org.uk>"]
|
|||||||
authors: ["Matthew Gretton-Dann <matt@gretton-dann.org.uk>"]
|
authors: ["Matthew Gretton-Dann <matt@gretton-dann.org.uk>"]
|
||||||
license: "Apache-2.0"
|
license: "Apache-2.0"
|
||||||
tags: ["partridge-problem" "triangular-numbers"]
|
tags: ["partridge-problem" "triangular-numbers"]
|
||||||
homepage:
|
homepage: "https://gitea.gretton-dann.org.uk/mgrettondann/partridge"
|
||||||
"https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes"
|
doc: "https://gitea.gretton-dann.org.uk/mgrettondann/partridge"
|
||||||
doc: "https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes"
|
|
||||||
bug-reports:
|
bug-reports:
|
||||||
"https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes/issues"
|
"https://gitea.gretton-dann.org.uk/mgrettondann/partridge/issues"
|
||||||
depends: [
|
depends: [
|
||||||
"ocaml" {>= "5.3"}
|
"ocaml" {>= "5.3"}
|
||||||
"ocaml-lsp-server" {dev}
|
"ocaml-lsp-server" {dev}
|
||||||
@@ -37,6 +36,5 @@ build: [
|
|||||||
"@doc" {with-doc}
|
"@doc" {with-doc}
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
dev-repo:
|
dev-repo: "git+https://gitea.gretton-dann.org.uk/mgrettondann/partridge.git"
|
||||||
"git+https://gitea.gretton-dann.org.uk/mgrettondann/triangle-square-cubes.git"
|
|
||||||
x-maintenance-intent: ["(latest)"]
|
x-maintenance-intent: ["(latest)"]
|
||||||
|
|||||||
Reference in New Issue
Block a user