Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.pm linguist-language=Perl
*.t linguist-language=Perl
*.h linguist-language=C
alienfile linguist-language=Perl
12 changes: 10 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,17 @@ jobs:
fail-fast: false
matrix:
cip:
- tag: "5.37"
- tag: "5.41"
install_type: system
- tag: "5.37"
- tag: "5.41"
install_type: share
- tag: "5.40"
install_type: system
- tag: "5.40"
install_type: share
- tag: "5.38"
install_type: system
- tag: "5.38"
install_type: share
- tag: "5.36"
install_type: system
Expand Down
93 changes: 0 additions & 93 deletions .github/workflows/msys2-mingw.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/Alien-FFI-*
/.build
*.old
*.orig
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"pls.perlcritic.perlcriticrc": "perlcriticrc",
"pls.inc": [
"$ROOT_PATH/lib"
]
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Alien::FFI ![static](https://github.com/PerlFFI/Alien-FFI/workflows/static/badge.svg) ![linux](https://github.com/PerlFFI/Alien-FFI/workflows/linux/badge.svg) ![windows](https://github.com/PerlFFI/Alien-FFI/workflows/windows/badge.svg) ![macos](https://github.com/PerlFFI/Alien-FFI/workflows/macos/badge.svg) ![msys2-mingw](https://github.com/PerlFFI/Alien-FFI/workflows/msys2-mingw/badge.svg)
# Alien::FFI ![static](https://github.com/PerlFFI/Alien-FFI/workflows/static/badge.svg) ![linux](https://github.com/PerlFFI/Alien-FFI/workflows/linux/badge.svg) ![windows](https://github.com/PerlFFI/Alien-FFI/workflows/windows/badge.svg) ![macos](https://github.com/PerlFFI/Alien-FFI/workflows/macos/badge.svg)

Build and make available libffi

Expand Down Expand Up @@ -65,7 +65,7 @@ Petr Písař (ppisar)

# COPYRIGHT AND LICENSE

This software is copyright (c) 2014-2022 by Graham Ollis.
This software is copyright (c) 2014-2024 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
5 changes: 2 additions & 3 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name = Alien-FFI
author = Graham Ollis <[email protected]>
license = Perl_5
copyright_holder = Graham Ollis
copyright_year = 2014-2022
copyright_year = 2014-2024
version = 0.27

[AlienBase::Doc]
:version = 0.30
name = libffi

[@Author::Plicease]
:version = 2.69
:version = 2.79
release_tests = 1
irc = irc://irc.perl.org/#native
test2_v0 = 1
Expand All @@ -21,7 +21,6 @@ workflow = static
workflow = linux
workflow = windows
workflow = macos
workflow = msys2-mingw

diag_preamble = | $post_diag = sub {
diag_preamble = | require Alien::FFI;
Expand Down
Loading