forked from dagurval/perl6-gd-raw
-
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
71 changed files
with
707 additions
and
482 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,30 @@ | ||
name: Linux | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Update apt-get | ||
run: sudo apt-get update -qq | ||
- name: Install GD | ||
run: sudo apt-get install -y libgd3 | ||
- name: Run Special Tests | ||
run: raku run-tests -i |
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,3 +1,2 @@ | ||
# vim swp files | ||
*.swp | ||
.precomp | ||
.precomp/ | ||
/GD-Raw-* |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
Revision history for GD::Raw | ||
|
||
{{$NEXT}} | ||
- Initial version in the zef ecosystem |
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,13 +1,26 @@ | ||
{ | ||
"perl" : "6.*", | ||
"name" : "GD::Raw", | ||
"license" : "Artistic-2.0", | ||
"version" : "0.2", | ||
"description" : "Low level language bindings to GD Graphics Library", | ||
"provides" : { | ||
"GD::Raw" : "lib/GD/Raw.pm" | ||
}, | ||
"author" : "Dagur Valberg Johannsson", | ||
"depends" : [ ], | ||
"source-url" : "git://github.com/dagurval/perl6-gd-raw.git" | ||
"auth": "zef:raku-community-modules", | ||
"authors": [ | ||
"Dagur Valberg Johannsson", | ||
"Raku Community" | ||
], | ||
"build-depends": [ | ||
], | ||
"depends": [ | ||
], | ||
"description": "Low level language bindings to GD Graphics Library", | ||
"license": "Artistic-2.0", | ||
"name": "GD::Raw", | ||
"perl": "6.*", | ||
"provides": { | ||
"GD::Raw": "lib/GD/Raw.rakumod" | ||
}, | ||
"resources": [ | ||
], | ||
"source-url": "https://github.com/raku-community-modules/GD-Raw.git", | ||
"tags": [ "GD", "IMAGE" | ||
], | ||
"test-depends": [ | ||
], | ||
"version": "0.3" | ||
} |
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
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
name = GD::Raw | ||
|
||
[ReadmeFromPod] | ||
filename = lib/GD/Raw.rakumod | ||
|
||
[UploadToZef] | ||
|
||
[Badges] | ||
provider = github-actions/linux.yml |
Oops, something went wrong.