Skip to content

Commit

Permalink
Fix donor links
Browse files Browse the repository at this point in the history
Many were dead and gone, so find new ones or remove the links.

Also drop support for Perl 5.12, which is no longer supported by some
dependencies, and upgrade the actions/checkout workflow action.
  • Loading branch information
theory committed Feb 1, 2024
1 parent 41e7118 commit a33aa74
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 48 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
perl: [ '5.36', '5.34', '5.32', '5.30', '5.28', '5.26', '5.24', '5.22', '5.20', '5.18', '5.16', '5.14', '5.12' ]
perl: [ '5.36', '5.34', '5.32', '5.30', '5.28', '5.26', '5.24', '5.22', '5.20', '5.18', '5.16', '5.14' ]
name: 🐪 Perl ${{ matrix.perl }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Perl
uses: shogo82148/actions-setup-perl@v1
- name: Install Release Dependencies
Expand Down
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ my $build = $class->new(
'List::Util' => '1.20',
'List::MoreUtils' => '0.28',
'namespace::autoclean' => '0.11',
'perl' => 5.010,
'perl' => 5.014,
'Plack' => '0.9956',
'Plack::App::File' => 0,
'Plack::Builder' => 0,
Expand Down
61 changes: 17 additions & 44 deletions lib/PGXN/Site/Templates.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1161,30 +1161,21 @@ template donors => sub {
h2 { T 'Sponsors' };
ul {
li { 'Richard Broersma' };
li {a{
href is 'https://tigerlead.com/';
'TigerLead';
}};
li { 'TigerLead' };
li { 'Thom Brown' };
li { 'Hitoshi Harada' };
li {a{
href is 'https://www.25th-floor.com/';
'25th-floor - de Pretis & Helmberger KG';
}};
li { '25th-floor - de Pretis & Helmberger KG' };
};
};

div {
class is 'width50 floatRight';
h2 { T 'Advocates' };
ul {
li {a{
href is 'https://www.hubbellgrp.com/';
'Hubbell Group Inc.';
}};
li { 'Hubbell Group Inc.' };
li { 'John S. Gage' };
li {a{
href is 'https://www.2ndquadrant.us/';
href is 'https://www.crunchydata.com/blog/author/greg-smith';
'Greg Smith';
}};
li {a{
Expand All @@ -1196,7 +1187,7 @@ template donors => sub {
'depesz';
}};
li {a{
href is 'https://jim.nasby.net/';
href is 'https://www.linkedin.com/in/decibel';
'Jim Nasby';
}};
li {a{
Expand All @@ -1219,17 +1210,14 @@ template donors => sub {
'David Golden';
}};
li {a{
href is 'https://thoughts.j-davis.com/';
href is 'http://thoughts.davisjeff.com/';
'Jeff Davis';
}};
li {a{
href is 'https://www.estately.com/';
'Estately';
}};
li {a{
href is 'https://www.full-table-scan.com/';
'Chris Spotts';
}};
li { 'Chris Spotts' };
};
};

Expand All @@ -1238,30 +1226,18 @@ template donors => sub {

h2 { T 'Boosters' };
ul {
li {'Kineticode, Inc.' };
li {'CxNet (Chile)' };
li {a{
href is 'https://www.kineticode.com/';
'Kineticode, Inc.';
}};
li {a{
href is 'https://www.cxnet.cl/';
'CxNet (Chile)';
}};
li {a{
href is 'https://www.schemaverse.com/';
href is 'https://github.com/Abstrct/Schemaverse';
'Schemaverse';
}};
li {a{
href is 'https://github.com/fabiotr/';
'Fábio Telles Rodriguez';
}};
li {a{
href is 'https://www.nextbio.com/b/search/author/Wenjian%20Yang';
'Wenjian Yang';
}};
li {a{
href is 'https://pgdba.net/blog/';
'Michael Nacos';
}};
li { 'Wenjian Yang' };
li { 'Michael Nacos' };
li { 'August Zajonc' };
};
};
Expand Down Expand Up @@ -1519,7 +1495,7 @@ template founders => sub {
};
};
a {
href is 'https://www.dalibo.org/en/';
href is 'https://www.dalibo.org/';
title is 'Dalibo';
img {
src is '/ui/img/dalibo.png';
Expand All @@ -1533,15 +1509,12 @@ template patrons => sub {
div {
id is 'patrons';
h3 {
a {
href is 'https://www.enovafinancial.com/';
img {
src is '/ui/img/enova.png';
alt is 'e';
title is 'Enova Financial';
img {
src is '/ui/img/enova.png';
alt is 'e';
};
outs ' Enova Financial';
};
outs ' Enova Financial';
};
};
};
Expand Down

0 comments on commit a33aa74

Please sign in to comment.