-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ description = "Tool for building tasks for informatics competitions, with suppor | |
readme = "README.md" | ||
authors = ["Edoardo Morassutto <[email protected]>"] | ||
edition = "2021" | ||
documentation = "https://edomora97.github.io/task-maker-rust/" | ||
repository = "https://github.com/edomora97/task-maker-rust" | ||
documentation = "https://olimpiadi-informatica.github.io/task-maker-rust/" | ||
repository = "https://github.com/olimpiadi-informatica/task-maker-rust" | ||
license = "MPL-2.0" | ||
default-run = "task-maker" | ||
|
||
|
@@ -35,7 +35,7 @@ assets = [ | |
] | ||
|
||
[badges] | ||
github = { repository = "edomora97/task-maker-rust", workflow = "Rust" } | ||
github = { repository = "olimpiadi-informatica/task-maker-rust", workflow = "Rust" } | ||
|
||
[dependencies] | ||
task-maker-dag = { path = "./task-maker-dag" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ | |
"prepublish": "tsc" | ||
}, | ||
"author": "Edoardo Morassutto <[email protected]>", | ||
"homepage": "https://github.com/edomora97/task-maker-rust", | ||
"homepage": "https://github.com/olimpiadi-informatica/task-maker-rust", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "ssh://[email protected]:edomora97/task-maker-rust.git", | ||
"url": "ssh://[email protected]:olimpiadi-informatica/task-maker-rust.git", | ||
"directory": "bindings/ts" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
version="$(grep '^version' ../../../Cargo.toml | cut -d'"' -f 2)" | ||
hash=$(curl -L "https://github.com/edomora97/task-maker-rust/archive/v${version}.tar.gz" | sha256sum | cut -d' ' -f 1) | ||
hash=$(curl -L "https://github.com/olimpiadi-informatica/task-maker-rust/archive/v${version}.tar.gz" | sha256sum | cut -d' ' -f 1) | ||
sed "s/@@VERSION@@/$version/g" < PKGBUILD | sed "s/@@SHA256@@/$hash/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Ubuntu 16.04 to keep the library versions backward-compatible | ||
FROM ubuntu:16.04 | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/edomora97/task-maker-rust" | ||
LABEL org.opencontainers.image.source="https://github.com/olimpiadi-informatica/task-maker-rust" | ||
LABEL maintainer="Edoardo Morassutto <[email protected]>" | ||
|
||
# we want to use bash, not sh | ||
|
@@ -24,4 +24,4 @@ ADD build_release.sh / | |
VOLUME /source | ||
|
||
# build the release on `docker run` | ||
CMD /build_release.sh | ||
CMD /build_release.sh |