From ccf6a5f2058e292c135e9bc938d216f442ec32bc Mon Sep 17 00:00:00 2001 From: Maxim Reznik Date: Sat, 11 Nov 2023 15:24:55 +0200 Subject: [PATCH] Add alire.toml --- .github/workflows/main.yml | 16 ++++++++++++++++ .gitignore | 7 +------ README.md | 2 +- alire.toml | 19 +++++++++++++++++++ 4 files changed, 37 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/main.yml create mode 100644 alire.toml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..bc99701 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +# SPDX-FileCopyrightText: 2020 Max Reznik +# +# SPDX-License-Identifier: MIT + +on: [push] +name: Build +jobs: + build: + runs-on: ubuntu-latest + name: Build code + steps: + - uses: actions/checkout@v2 + with: + path: matreshka + - uses: alire-project/setup-alire@v2 + - run: alr build diff --git a/.gitignore b/.gitignore index 1eec092..dd714bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,2 @@ -# Object file -*.o - -# Ada Library Information -*.ali - .obj +alire \ No newline at end of file diff --git a/README.md b/README.md index bc3354c..aeea83a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To build it: # Usage git init /tmp/ada-auth/ - (cd /tmp/ada-auth && git config core.autocrlf true && + (cd /tmp/ada-auth && git config core.autocrlf input && git config user.email "you@example.com" && git config user.name "Your Name") .obj/cvsweb2git http://www.ada-auth.org/cgi-bin/cvsweb.cgi/arm/ /tmp/ada-auth/ diff --git a/alire.toml b/alire.toml new file mode 100644 index 0000000..c266748 --- /dev/null +++ b/alire.toml @@ -0,0 +1,19 @@ +name = "cvsweb2git" +description = "A tool imports CVS repository shared on ada-auth.org" +version = "0.1.0-dev" +website = "https://github.com/reznikmm/cvsweb2git" +licenses = "BSD-3-Clause" + +authors = ["Max Reznik"] +maintainers = ["Max Reznik "] +maintainers-logins = ["reznikmm"] + +executables = ["cvsweb2git"] +project-files = ["gnat/cvsweb2git.gpr"] + +[configuration] +disabled = true + +[[depends-on]] +matreshka_league = "*" +aws = "any"