Skip to content

Commit 1eb8485

Browse files
committed
Initial adaptation to Raku Community Modules
1 parent 45067c7 commit 1eb8485

28 files changed

+764
-582
lines changed

.appveyor.yml

-68
This file was deleted.

.appveyor_clear_cache.txt

-1
This file was deleted.

.gitattributes

-3
This file was deleted.

.github/workflows/linux.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Linux
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- ubuntu-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Run Special Tests
26+
run: raku run-tests -i

.github/workflows/macos.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: MacOS
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- macos-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Run Special Tests
26+
run: raku run-tests -i

.github/workflows/windows.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Windows
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- windows-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Run Special Tests
26+
run: raku run-tests -i

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
lib/.precomp
2-
CONTRIBUTORS~
1+
.precomp/
2+
/Chemistry-Elements-*

Changes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Revision history for Chemistry::Elements
2+
3+
{{$NEXT}}
4+
- Initial version

META6.json

+31-21
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,33 @@
11
{
2-
"authors": [
3-
"brian d foy"
4-
],
5-
"depends": [],
6-
"description": "Raku extension for working with the Periodic Table of Elements",
7-
"name": "Chemistry::Elements",
8-
"perl": "6.c",
9-
"license": "Artistic-2.0",
10-
"provides": {
11-
"Chemistry::Elements": "lib/Chemistry/Elements.pm6"
12-
},
13-
"support": {
14-
"source": "https://github.com/briandfoy/raku-chemistry-elements.git"
15-
},
16-
"test-depends": [
17-
"Test",
18-
"Test::META"
19-
],
20-
"version": "0.001003",
21-
"tags": [ "chemistry", "Z", "atomic number" ],
22-
"source-url" : "https://github.com/briandfoy/raku-chemistry-elements.git"
2+
"auth": "zef:raku-community-modules",
3+
"authors": [
4+
"brian d foy",
5+
"Raku Community"
6+
],
7+
"build-depends": [
8+
],
9+
"depends": [
10+
],
11+
"description": "do things with the Periodic Table",
12+
"license": "Artistic-2.0",
13+
"name": "Chemistry::Elements",
14+
"perl": "6.c",
15+
"provides": {
16+
"Chemistry::Elements": "lib/Chemistry/Elements.rakumod"
17+
},
18+
"resources": [
19+
],
20+
"source-url": "https://github.com/raku-community-modules/Chemistry-Elements.git",
21+
"support": {
22+
"source": "https://github.com/raku-community-modules/Chemistry-Elements"
23+
},
24+
"tags": [
25+
"chemistry",
26+
"Z",
27+
"atomic number"
28+
],
29+
"test-depends": [
30+
"Test::META"
31+
],
32+
"version": "0.001004"
2333
}

Makefile

-14
This file was deleted.

0 commit comments

Comments
 (0)