public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jitka Plesnikova <jplesnik@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/perlbrew] rawhide: 1.02 bump (rhbz#2382331)
Date: Tue, 04 Aug 2026 11:08:47 GMT [thread overview]
Message-ID: <178584172764.1.5055287166961441597.rpms-perlbrew-c002dae1b7a5@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/perlbrew
Branch : rawhide
Commit : c002dae1b7a532927ab23e6e3aac6819256d7337
Author : Jitka Plesnikova <jplesnik@redhat.com>
Date : 2026-08-04T12:52:19+02:00
Stats : +35/-26 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/perlbrew/c/c002dae1b7a532927ab23e6e3aac6819256d7337?branch=rawhide
Log:
1.02 bump (rhbz#2382331)
---
diff --git a/.gitignore b/.gitignore
index bf21f8c..87886f1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -53,3 +53,4 @@
/App-perlbrew-0.99.tar.gz
/App-perlbrew-1.00.tar.gz
/App-perlbrew-1.01.tar.gz
+/App-perlbrew-1.02.tar.gz
diff --git a/gating.yaml b/gating.yaml
index 282e16b..5ba5a72 100644
--- a/gating.yaml
+++ b/gating.yaml
@@ -1,7 +1,11 @@
+# Fedora
--- !Policy
+id: fedora_policy
product_versions:
- fedora-*
-decision_context: bodhi_update_push_stable
+decision_contexts:
+ - bodhi_update_push_testing
+ - bodhi_update_push_stable
subject_type: koji_build
rules:
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
diff --git a/perlbrew.spec b/perlbrew.spec
index e1f501f..6743ead 100644
--- a/perlbrew.spec
+++ b/perlbrew.spec
@@ -1,6 +1,6 @@
Name: perlbrew
-Version: 1.01
-Release: 5%{?dist}
+Version: 1.02
+Release: 1%{?dist}
Summary: Manage perl installations in your $HOME
License: MIT
URL: https://metacpan.org/release/App-perlbrew
@@ -9,11 +9,11 @@ BuildArch: noarch
BuildRequires: coreutils
BuildRequires: perl-generators
BuildRequires: perl-interpreter
-BuildRequires: perl(Module::Build::Tiny) >= 0.039
+BuildRequires: perl(Module::Build::Tiny) >= 0.044
# Run-time
BuildRequires: perl(Capture::Tiny) >= 0.48
BuildRequires: perl(Config)
-BuildRequires: perl(CPAN::Perl::Releases) >= 5.20230720
+BuildRequires: perl(CPAN::Perl::Releases) >= 5.20240920
BuildRequires: perl(Cwd)
BuildRequires: perl(Devel::PatchPerl) >= 2.08
BuildRequires: perl(Exporter)
@@ -37,37 +37,30 @@ BuildRequires: perl(warnings)
BuildRequires: perl(Data::Dumper)
BuildRequires: perl(English)
BuildRequires: perl(File::Spec::Functions)
-BuildRequires: perl(File::Which)
+BuildRequires: perl(File::Which) >= 1.21
BuildRequires: perl(lib)
BuildRequires: perl(ok)
BuildRequires: perl(Path::Class) >= 0.33
-BuildRequires: perl(Test2::Plugin::IOEvents)
-BuildRequires: perl(Test2::Plugin::NoWarnings)
+BuildRequires: perl(Test2::Plugin::IOEvents) >= 0.001001
+BuildRequires: perl(Test2::Plugin::NoWarnings) >= 0.10
BuildRequires: perl(Test2::Tools::Basic)
BuildRequires: perl(Test2::Tools::ClassicCompare)
BuildRequires: perl(Test2::Tools::Compare)
BuildRequires: perl(Test2::Tools::Mock)
BuildRequires: perl(Test2::Tools::Spec)
-BuildRequires: perl(Test2::V0)
-BuildRequires: perl(Test::Deep)
-BuildRequires: perl(Test::Exception) >= 0.32
-BuildRequires: perl(Test::More) >= 1.001002
-BuildRequires: perl(Test::NoWarnings) >= 1.04
-BuildRequires: perl(Test::Output) >= 1.03
-BuildRequires: perl(Test::Spec) >= 0.47
-#BuildRequires: perl(Test::TempDir::Tiny) >= 0.016
+BuildRequires: perl(Test2::V0) >= 0.000163
BuildRequires: wget
Requires: perl(Capture::Tiny) >= 0.48
-Requires: perl(CPAN::Perl::Releases) >= 5.20230720
+Requires: perl(CPAN::Perl::Releases) >= 5.20240920
Requires: perl(Cwd)
Requires: perl(Data::Dumper)
-Requires: perl(Devel::PatchPerl) >= 2.00
+Requires: perl(Devel::PatchPerl) >= 2.08
Requires: perl(ExtUtils::MakeMaker) >= 7.22
Requires: perl(File::Spec)
-Requires: perl(File::Temp)
+Requires: perl(File::Temp) >= 0.2304
Requires: perl(FindBin)
Requires: perl(local::lib) >= 2.000014
-Requires: perl(Pod::Usage) >= 1.68
+Requires: perl(Pod::Usage) >= 1.69
Requires: curl
# maybe someone expects to find
@@ -78,6 +71,8 @@ Provides: perl-App-perlbrew = %{version}-%{release}
%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_libexecdir}
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}perl\\(test2_helpers.pl\\)
%global __requires_exclude %{__requires_exclude}|^perl\\(PerlbrewTestHelpers\\)
+%global __requires_exclude %{__requires_exclude}|^perl\\(Capture::Tiny\\)\s*$
+%global __requires_exclude %{__requires_exclude}|^perl\\(CPAN::Perl::Releases\\)\s*$
%description
@@ -100,6 +95,10 @@ with "%{_libexecdir}/%{name}/test".
%prep
%setup -q -n App-perlbrew-%{version}
+# Fix t/20.patchperl.t failing since 1.02
+# https://github.com/gugod/App-perlbrew/issues/852
+perl -i -pe 's|\$ENV{PATH} = "/bin";|\$ENV{PATH} = "";|g' t/20.patchperl.t
+
# Help file to recognise the Perl scripts
for F in t/*.t t/*.pl; do
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
@@ -112,8 +111,8 @@ perl Build.PL --installdirs=vendor
%install
perl -V
-./Build install --destdir=$RPM_BUILD_ROOT --create_packlist=0
-%{_fixperms} $RPM_BUILD_ROOT/*
+./Build install --destdir=%{buildroot} --create_packlist=0
+%{_fixperms} %{buildroot}/*
# Install tests
mkdir -p %{buildroot}%{_libexecdir}/%{name}
@@ -134,15 +133,20 @@ chmod +x %{buildroot}%{_libexecdir}/%{name}/test
%files
%license LICENSE
%doc Changes README
-%{perl_vendorlib}/*
+%dir %{perl_vendorlib}/App
+%{perl_vendorlib}/App/Perlbrew*
+%{perl_vendorlib}/App/perlbrew.pm
%{_bindir}/%{name}
-%{_mandir}/man1/*
-%{_mandir}/man3/*
+%{_mandir}/man1/perlbrew*
+%{_mandir}/man3/App::perlbrew*
%files tests
%{_libexecdir}/%{name}
%changelog
+* Tue Aug 04 2026 Jitka Plesnikova <jplesnik@redhat.com> - 1.02-1
+- 1.02 bump (rhbz#2382331)
+
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.01-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
diff --git a/sources b/sources
index 48d48d0..ecae839 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (App-perlbrew-1.01.tar.gz) = 944b47bdf60975abb2779e4cbecdc470c87891a76a024359737f9b6444270c57b323d6832979f7aca7d2a38d579b0cca84773aef595b228c7948034ae9614234
+SHA512 (App-perlbrew-1.02.tar.gz) = 2ec56ba16f5325cb25789cd9f404ced0368f0049bc5f5d755695afad215e5c8d5f38545c0eb868301988e47e1d840d7b539f4d4eedbc8de642bb972e7983a9b3
reply other threads:[~2026-08-04 11:08 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178584172764.1.5055287166961441597.rpms-perlbrew-c002dae1b7a5@fedoraproject.org \
--to=jplesnik@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox