From 23062384038a3bebb13cb009d256368a3a19eb4e Mon Sep 17 00:00:00 2001 From: Filippo Casarin Date: Sat, 5 Oct 2024 16:56:50 +0200 Subject: [PATCH] Change link --- Cargo.toml | 6 +++--- README.md | 6 +++--- bindings/ts/package.json | 4 ++-- src/main.rs | 4 ++-- task-maker-format/src/ioi/format/italian_yaml/mod.rs | 4 ++-- tools/aur/task-maker-rust-git/PKGBUILD | 4 ++-- tools/aur/task-maker-rust/PKGBUILD | 4 ++-- tools/aur/task-maker-rust/gen.sh | 2 +- tools/docker/Dockerfile | 4 ++-- tools/release/linux/Dockerfile | 4 ++-- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0144f26ab..962270a1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,8 +9,8 @@ description = "Tool for building tasks for informatics competitions, with suppor readme = "README.md" authors = ["Edoardo Morassutto "] 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" } diff --git a/README.md b/README.md index 756007f41..daf3ebee7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Workflow Status](https://github.com/edomora97/task-maker-rust/workflows/Rust/badge.svg)](https://github.com/edomora97/task-maker-rust/actions?query=workflow%3A%22Rust%22) +[![Workflow Status](https://github.com/olimpiadi-informatica/task-maker-rust/workflows/Rust/badge.svg)](https://github.com/olimpiadi-informatica/task-maker-rust/actions?query=workflow%3A%22Rust%22) # task-maker-rust @@ -7,7 +7,7 @@ The new cmsMake! [![asciicast](https://asciinema.org/a/301849.svg)](https://asciinema.org/a/301849) ## Installation -For **Ubuntu** and **Debian** users you can find the `.deb` file in the [Releases](https://github.com/edomora97/task-maker-rust/releases) page. +For **Ubuntu** and **Debian** users you can find the `.deb` file in the [Releases](https://github.com/olimpiadi-informatica/task-maker-rust/releases) page. Install the package using `sudo dpkg -i the_file.deb` and it's dependencies (if you need to) with `sudo apt install -f`. There is a good chance that you have already all the dependencies already installed. @@ -28,7 +28,7 @@ For the other operating systems the recommended way to use task-maker-rust is th - Install the latest stable rust version (and cargo). For example using [rustup](https://rustup.rs/) - Install the system dependencies: `libseccomp` or `libseccomp-dev` on Ubuntu -- Clone this repo: `git clone https://github.com/edomora97/task-maker-rust` +- Clone this repo: `git clone https://github.com/olimpiadi-informatica/task-maker-rust` - Build task-maker: `cargo build --release` The executable should be located at `target/release/task-maker`. diff --git a/bindings/ts/package.json b/bindings/ts/package.json index ea6a6db40..ed9cbb758 100644 --- a/bindings/ts/package.json +++ b/bindings/ts/package.json @@ -9,11 +9,11 @@ "prepublish": "tsc" }, "author": "Edoardo Morassutto ", - "homepage": "https://github.com/edomora97/task-maker-rust", + "homepage": "https://github.com/olimpiadi-informatica/task-maker-rust", "license": "MIT", "repository": { "type": "git", - "url": "ssh://git@github.com:edomora97/task-maker-rust.git", + "url": "ssh://git@github.com:olimpiadi-informatica/task-maker-rust.git", "directory": "bindings/ts" }, "devDependencies": { diff --git a/src/main.rs b/src/main.rs index 5ed4764c4..440aa65a3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,7 +3,7 @@ //! [![asciicast](https://asciinema.org/a/301849.svg)](https://asciinema.org/a/301849) //! //! # Installation -//! For **Ubuntu** and **Debian** users you can find the `.deb` file in the [Releases](https://github.com/edomora97/task-maker-rust/releases) page. +//! For **Ubuntu** and **Debian** users you can find the `.deb` file in the [Releases](https://github.com/olimpiadi-informatica/task-maker-rust/releases) page. //! Install the package using `sudo dpkg -i the_file.deb` and it's dependencies (if you need to) with `sudo apt install -f`. //! There is a good chance that you have already all the dependencies already installed. //! @@ -24,7 +24,7 @@ //! //! - Install the latest stable rust version (and cargo). For example using [rustup](https://rustup.rs/) //! - Install the system dependencies: `libseccomp` or `libseccomp-dev` on Ubuntu -//! - Clone this repo: `git clone https://github.com/edomora97/task-maker-rust` +//! - Clone this repo: `git clone https://github.com/olimpiadi-informatica/task-maker-rust` //! - Build task-maker: `cargo build --release` //! //! The executable should be located at `target/release/task-maker`. diff --git a/task-maker-format/src/ioi/format/italian_yaml/mod.rs b/task-maker-format/src/ioi/format/italian_yaml/mod.rs index 6dec057e6..8f3aac600 100644 --- a/task-maker-format/src/ioi/format/italian_yaml/mod.rs +++ b/task-maker-format/src/ioi/format/italian_yaml/mod.rs @@ -8,7 +8,7 @@ //! //! The `gen/GEN` file describes how the input files of the testcases should be generated and how //! the subtasks are composed. The formal definition of the format can be found looking at the -//! [parsing grammar](https://github.com/edomora97/task-maker-rust/blob/master/task-maker-format/src/ioi/format/italian_yaml/GEN.pest). +//! [parsing grammar](https://github.com/olimpiadi-informatica/task-maker-rust/blob/master/task-maker-format/src/ioi/format/italian_yaml/GEN.pest). //! The format is described here informally. //! //! Each line of that file can be of one of the following types: @@ -67,7 +67,7 @@ //! yet officially supported by `cms` (but workaround exists!), is here described. //! //! The formal definition of the format can be found in the -//! [parsing grammar](https://github.com/edomora97/task-maker-rust/blob/master/task-maker-format/src/ioi/format/italian_yaml/cases.gen.pest). +//! [parsing grammar](https://github.com/olimpiadi-informatica/task-maker-rust/blob/master/task-maker-format/src/ioi/format/italian_yaml/cases.gen.pest). //! An informal explanation is here provided. //! //! Similarly to `gen/GEN`, each line is independent and can be one of the following: diff --git a/tools/aur/task-maker-rust-git/PKGBUILD b/tools/aur/task-maker-rust-git/PKGBUILD index c191973fb..8d2d033ce 100644 --- a/tools/aur/task-maker-rust-git/PKGBUILD +++ b/tools/aur/task-maker-rust-git/PKGBUILD @@ -5,7 +5,7 @@ pkgver=r698.e162f1be pkgrel=1 pkgdesc="Tool for building tasks for informatics competitions, with support for cache, distributed computations and more" arch=('i686' 'x86_64' 'armv7h' 'aarch64') -url="https://github.com/edomora97/task-maker-rust" +url="https://github.com/olimpiadi-informatica/task-maker-rust" license=('MPL2') depends=() makedepends=('cargo') @@ -13,7 +13,7 @@ optdepends=('texlive-core: booklet compilations') options=() provides=('task-maker-rust') conflicts=('task-maker-rust') -source=("git+https://github.com/edomora97/task-maker-rust.git") +source=("git+https://github.com/olimpiadi-informatica/task-maker-rust.git") sha384sums=('SKIP') pkgver() { diff --git a/tools/aur/task-maker-rust/PKGBUILD b/tools/aur/task-maker-rust/PKGBUILD index a9a8f0892..4ad1fbbf0 100644 --- a/tools/aur/task-maker-rust/PKGBUILD +++ b/tools/aur/task-maker-rust/PKGBUILD @@ -5,11 +5,11 @@ pkgver=@@VERSION@@ pkgrel=1 pkgdesc="Tool for building tasks for informatics competitions, with support for cache, distributed computations and more" arch=('i686' 'x86_64' 'armv7h' 'aarch64') -url="https://github.com/edomora97/task-maker-rust" +url="https://github.com/olimpiadi-informatica/task-maker-rust" license=('MPL2') makedepends=('cargo') optdepends=('texlive-core: booklet compilations') -source=("https://github.com/edomora97/task-maker-rust/archive/v${pkgver}.tar.gz") +source=("https://github.com/olimpiadi-informatica/task-maker-rust/archive/v${pkgver}.tar.gz") sha256sums=('@@SHA256@@') build() { diff --git a/tools/aur/task-maker-rust/gen.sh b/tools/aur/task-maker-rust/gen.sh index ad0594bb5..904f5092b 100755 --- a/tools/aur/task-maker-rust/gen.sh +++ b/tools/aur/task-maker-rust/gen.sh @@ -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/" diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 18cb0d065..b5d9d5a2a 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -25,7 +25,7 @@ ARG TM_VERSION # install task-maker-rust RUN (test -n "$TM_VERSION" || (echo "Please use --build-arg TM_VERSION=0.3.X" >&2 && exit 1)) \ - && wget https://github.com/edomora97/task-maker-rust/releases/download/v${TM_VERSION}/task-maker-rust_${TM_VERSION}_amd64.deb \ + && wget https://github.com/olimpiadi-informatica/task-maker-rust/releases/download/v${TM_VERSION}/task-maker-rust_${TM_VERSION}_amd64.deb \ && dpkg -i task-maker-rust_${TM_VERSION}_amd64.deb \ && rm task-maker-rust_${TM_VERSION}_amd64.deb @@ -44,4 +44,4 @@ ADD entrypoint.sh healthcheck.sh / CMD /entrypoint.sh # check the status of the server and the workers -HEALTHCHECK --interval=5s CMD /healthcheck.sh \ No newline at end of file +HEALTHCHECK --interval=5s CMD /healthcheck.sh diff --git a/tools/release/linux/Dockerfile b/tools/release/linux/Dockerfile index e3fb43cb1..e72522e29 100644 --- a/tools/release/linux/Dockerfile +++ b/tools/release/linux/Dockerfile @@ -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 " # 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 \ No newline at end of file +CMD /build_release.sh