Skip to content

Commit

Permalink
Add alire.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
reznikmm committed Nov 11, 2023
1 parent ca55075 commit ccf6a5f
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 7 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2020 Max Reznik <[email protected]>
#
# 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
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
# Object file
*.o

# Ada Library Information
*.ali

.obj
alire
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 "[email protected]" &&
git config user.name "Your Name")
.obj/cvsweb2git http://www.ada-auth.org/cgi-bin/cvsweb.cgi/arm/ /tmp/ada-auth/
Expand Down
19 changes: 19 additions & 0 deletions alire.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
maintainers-logins = ["reznikmm"]

executables = ["cvsweb2git"]
project-files = ["gnat/cvsweb2git.gpr"]

[configuration]
disabled = true

[[depends-on]]
matreshka_league = "*"
aws = "any"

0 comments on commit ccf6a5f

Please sign in to comment.