Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package: perl-mozilla-ca #37470

Merged
merged 1 commit into from
Dec 23, 2024
Merged
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
68 changes: 68 additions & 0 deletions perl-mozilla-ca.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
package:
name: perl-mozilla-ca
version: "20240924"
epoch: 0
description: Mozilla's CA cert bundle in PEM format
copyright:
- license: MPL-2.0

environment:
contents:
packages:
- autoconf
- automake
- build-base
- ca-certificates-bundle
- openssf-compiler-options
- perl

pipeline:
- uses: fetch
with:
expected-sha256: c4b1412bbc37dff8cf29af6f92cb47defbe90eebcbc29e407a98638f7a31bcd0
uri: https://cpan.metacpan.org/authors/id/L/LW/LWP/Mozilla-CA-${{package.version}}.tar.gz

- uses: perl/make

- uses: autoconf/make

- uses: autoconf/make-install

- uses: perl/cleanup

- uses: strip

subpackages:
- name: perl-mozilla-ca-doc
pipeline:
- uses: split/manpages
description: perl-mozilla-ca manpages

test:
environment:
contents:
packages:
- perl
pipeline:
- name: Test
runs: |
cat <<EOF > mozilla-ca.pl
use strict;
use warnings;

eval {
require Mozilla::CA;
Mozilla::CA->import();
};
if (\$@) {
print "Failed to load Mozilla::CA\n";
exit 1;
}
EOF

perl mozilla-ca.pl

update:
enabled: true
release-monitor:
identifier: 3136
Loading