Skip to content

Commit 1dd8524

Browse files
committed
Add alire.toml
1 parent ca55075 commit 1dd8524

File tree

4 files changed

+37
-7
lines changed

4 files changed

+37
-7
lines changed

.github/workflows/main.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# SPDX-FileCopyrightText: 2020 Max Reznik <[email protected]>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
5+
on: [push]
6+
name: Build
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
name: Build code
11+
steps:
12+
- uses: actions/checkout@v2
13+
with:
14+
path: matreshka
15+
- uses: alire-project/setup-alire@v2
16+
- run: alr build

.gitignore

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
1-
# Object file
2-
*.o
3-
4-
# Ada Library Information
5-
*.ali
6-
71
.obj
2+
alire

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To build it:
1818
# Usage
1919

2020
git init /tmp/ada-auth/
21-
(cd /tmp/ada-auth && git config core.autocrlf true &&
21+
(cd /tmp/ada-auth && git config core.autocrlf input &&
2222
git config user.email "[email protected]" &&
2323
git config user.name "Your Name")
2424
.obj/cvsweb2git http://www.ada-auth.org/cgi-bin/cvsweb.cgi/arm/ /tmp/ada-auth/

alire.toml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name = "cvsweb2git"
2+
description = "A tool imports CVS repository shared on ada-auth.org"
3+
version = "0.1.0-dev"
4+
website = "https://github.com/reznikmm/cvsweb2git"
5+
licenses = "BSD-3-Clause"
6+
7+
authors = ["Max Reznik"]
8+
maintainers = ["Max Reznik <[email protected]>"]
9+
maintainers-logins = ["reznikmm"]
10+
11+
executables = ["cvsweb2git"]
12+
project-files = ["gnat/cvsweb2git.gpr"]
13+
14+
[configuration]
15+
disabled = true
16+
17+
[[depends-on]]
18+
matreshka_league = "*"
19+
aws = "any"

0 commit comments

Comments
 (0)