-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 changed files
with
37 additions
and
7 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 |
---|---|---|
@@ -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 |
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,2 @@ | ||
# Object file | ||
*.o | ||
|
||
# Ada Library Information | ||
*.ali | ||
|
||
.obj | ||
alire |
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 |
---|---|---|
|
@@ -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/ | ||
|
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 |
---|---|---|
@@ -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" |