Skip to content
Merged
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
7 changes: 4 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
fail-fast: false
matrix:
cip:
- tag: "5.39"
- tag: "5.41"
- tag: "5.40"
- tag: "5.38"
- tag: "5.38-alpine3.16"
- tag: "5.38-fedora36"
Expand All @@ -41,7 +42,7 @@ jobs:
CIP_TAG: ${{ matrix.cip.tag }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Bootstrap CIP
run: |
Expand All @@ -54,7 +55,7 @@ jobs:
cip cache-key

- name: Cache CPAN modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cip
key: ${{ runner.os }}-build-${{ steps.cache-key.outputs.key }}
Expand Down
72 changes: 0 additions & 72 deletions .github/workflows/macos.yml

This file was deleted.

2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Alien-pkgconf

- Updated fetch script to account for new directory listing (gh#22)

0.20 2024-03-11 06:17:00 -0600
- JSON output is sorted to make build reproducable (ppisar++ gh#19)

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ my %args = (
'Test::Alien' => '0.08',
},
BUILD_REQUIRES => {
'HTTP::Tiny' => '0.044',
'HTTP::Tiny' => '0.055',
'Archive::Tar' => '2.24',
'JSON::PP' => '2.27400',
# as of 1.2.1 upstream provides .gz
Expand Down
2 changes: 1 addition & 1 deletion script/fetch.pl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ sub extcmp

my @list;

while($res->{content} =~ /\<a href=\"(pkgconf-([0-9\.]+)\.tar.*)\"/g)
while($res->{content} =~ /\>(pkgconf-([0-9\.]+)\.tar.*)\</g)
{
my $path = $1;
my @version = split /\./, $2;
Expand Down
Loading