public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/perl-Mozilla-CA] rawhide: 20260813 bump
@ 2026-08-17 8:56
0 siblings, 0 replies; only message in thread
From: @ 2026-08-17 8:56 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/perl-Mozilla-CA
Branch : rawhide
Commit : 7a4a402c067348b973ad035f4a630ebc47b9b61b
Author : Michal Josef Špaček <mspacek@redhat.com>
Date : 2026-08-17T10:42:56+02:00
Stats : +73/-69 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/perl-Mozilla-CA/c/7a4a402c067348b973ad035f4a630ebc47b9b61b?branch=rawhide
Log:
20260813 bump
---
diff --git a/.gitignore b/.gitignore
index 1cd2cb8..f1c2dee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,3 +24,4 @@
/Mozilla-CA-20240924.tar.gz
/Mozilla-CA-20250202.tar.gz
/Mozilla-CA-20250602.tar.gz
+/Mozilla-CA-20260813.tar.gz
diff --git a/Mozilla-CA-20250602-Redirect-to-ca-certificates-bundle.patch b/Mozilla-CA-20250602-Redirect-to-ca-certificates-bundle.patch
deleted file mode 100644
index 4bdf068..0000000
--- a/Mozilla-CA-20250602-Redirect-to-ca-certificates-bundle.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From ab01996d4d539cada0013b837b782f27db6b96ff Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
-Date: Fri, 16 Sep 2011 10:33:54 +0200
-Subject: [PATCH] Redirect to ca-certificates bundle
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This patch replaces Mozilla-CA certificate bundle with a bundle
-delivered by ca-certificates RPM package used as a single source of
-the Mozilla certificate bundle.
-
-See <https://bugzilla.redhat.com/show_bug.cgi?id=738383> for more
-details.
-
-Signed-off-by: Petr Písař <ppisar@redhat.com>
-
-diff --git a/MANIFEST b/MANIFEST
-index a88847b..6577ede 100644
---- a/MANIFEST
-+++ b/MANIFEST
-@@ -1,7 +1,6 @@
- .editorconfig
- Changes
- lib/Mozilla/CA.pm
--lib/Mozilla/CA/cacert.pem
- maint/cacert-diff
- maint/get-tarball-name
- maint/make-tarball
-diff --git a/Makefile.PL b/Makefile.PL
-index 9faf720..a491813 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -90,3 +90,11 @@
-
- ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS);
- ## END BOILERPLATE ###########################################################
-+
-+package MY;
-+sub MY::libscan {
-+ my $name = shift->SUPER::libscan(@_);
-+ # Remove private certificate bundle
-+ if ($name =~ /cacert.pem\z/) { $name = '' };
-+ return $name;
-+}
-diff --git a/lib/Mozilla/CA.pm b/lib/Mozilla/CA.pm
-index e4a6c56..fdb3c75 100644
---- a/lib/Mozilla/CA.pm
-+++ b/lib/Mozilla/CA.pm
-@@ -5,11 +5,9 @@
- our $VERSION = '20250602';
-
- use File::Spec ();
--use File::Basename qw(dirname);
-
- sub SSL_ca_file {
-- my $file = File::Spec->catfile(dirname(__FILE__), "CA", "cacert.pem");
-- return File::Spec->rel2abs($file);
-+ return File::Spec->catfile('/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem');
- }
-
- 1;
---
-2.25.4
-
diff --git a/Mozilla-CA-20260813-Redirect-to-ca-certificates-bundle.patch b/Mozilla-CA-20260813-Redirect-to-ca-certificates-bundle.patch
new file mode 100644
index 0000000..815c98d
--- /dev/null
+++ b/Mozilla-CA-20260813-Redirect-to-ca-certificates-bundle.patch
@@ -0,0 +1,65 @@
+From ab01996d4d539cada0013b837b782f27db6b96ff Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
+Date: Fri, 16 Sep 2011 10:33:54 +0200
+Subject: [PATCH] Redirect to ca-certificates bundle
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+This patch replaces Mozilla-CA certificate bundle with a bundle
+delivered by ca-certificates RPM package used as a single source of
+the Mozilla certificate bundle.
+
+See <https://bugzilla.redhat.com/show_bug.cgi?id=738383> for more
+details.
+
+Signed-off-by: Petr Písař <ppisar@redhat.com>
+
+diff --git a/MANIFEST b/MANIFEST
+index a88847b..6577ede 100644
+--- a/MANIFEST
++++ b/MANIFEST
+@@ -1,7 +1,6 @@
+ .editorconfig
+ Changes
+ lib/Mozilla/CA.pm
+-lib/Mozilla/CA/cacert.pem
+ maint/cacert-diff
+ maint/get-tarball-name
+ maint/make-tarball
+diff --git a/Makefile.PL b/Makefile.PL
+index 9faf720..a491813 100644
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -90,3 +90,11 @@
+
+ ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS);
+ ## END BOILERPLATE ###########################################################
++
++package MY;
++sub MY::libscan {
++ my $name = shift->SUPER::libscan(@_);
++ # Remove private certificate bundle
++ if ($name =~ /cacert.pem\z/) { $name = '' };
++ return $name;
++}
+diff --git a/lib/Mozilla/CA.pm b/lib/Mozilla/CA.pm
+index e4a6c56..fdb3c75 100644
+--- a/lib/Mozilla/CA.pm
++++ b/lib/Mozilla/CA.pm
+@@ -5,11 +5,9 @@
+ our $VERSION = '20260813';
+
+ use File::Spec ();
+-use File::Basename qw(dirname);
+
+ sub SSL_ca_file {
+- my $file = File::Spec->catfile(dirname(__FILE__), "CA", "cacert.pem");
+- return File::Spec->rel2abs($file);
++ return File::Spec->catfile('/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem');
+ }
+
+ 1;
+--
+2.25.4
+
diff --git a/perl-Mozilla-CA.spec b/perl-Mozilla-CA.spec
index 8423408..50864e0 100644
--- a/perl-Mozilla-CA.spec
+++ b/perl-Mozilla-CA.spec
@@ -2,8 +2,8 @@ Name: perl-Mozilla-CA
# You do not need to back-port a new version for updating a list of the
# certificates. They are taken from ca-certificates package instead
# per bug #738383.
-Version: 20250602
-Release: 4%{?dist}
+Version: 20260813
+Release: 1%{?dist}
Summary: Mozilla's CA certificate bundle in PEM format
# README: MPL-2.0
## Unbundled
@@ -13,7 +13,7 @@ License: MPL-2.0
URL: https://metacpan.org/release/Mozilla-CA
Source0: https://cpan.metacpan.org/authors/id/A/AB/ABH/Mozilla-CA-%{version}.tar.gz
# Use a CA bundle from ca-certificates package, bug #738383
-Patch0: Mozilla-CA-20250602-Redirect-to-ca-certificates-bundle.patch
+Patch0: Mozilla-CA-20260813-Redirect-to-ca-certificates-bundle.patch
BuildArch: noarch
BuildRequires: coreutils
BuildRequires: make
@@ -81,6 +81,9 @@ make test
%{_libexecdir}/%{name}
%changelog
+* Mon Aug 17 2026 Michal Josef Špaček <mspacek@redhat.com> - 20260813-1
+- 20260813 bump
+
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 20250602-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
diff --git a/sources b/sources
index db5fb89..9983dc8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (Mozilla-CA-20250602.tar.gz) = efaf13838c4e5d41d2b9923d82f9bbe58758871b91fa5d64910f4ba8bb96476c9a8365dfb62da2f2087ef393ca8aa8a0092bd953f90c3b4eea52686008ad5763
+SHA512 (Mozilla-CA-20260813.tar.gz) = c8b3461197cf88f08532babdf5a9cf97bb609ad352ca3303a6a79e0d0124edeaed61c64ee2a9a2edbce78311b2685720e35fc0a72117ac22deae067b16c21710
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-17 8:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-17 8:56 [rpms/perl-Mozilla-CA] rawhide: 20260813 bump
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox