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/perl-Module-Starter-PBP] rawhide: 0.003 bump (rhbz#2510964)
Date: Tue, 04 Aug 2026 13:09:56 GMT [thread overview]
Message-ID: <178584899632.1.13241458065986789871.rpms-perl-Module-Starter-PBP-dbe8c902e8a0@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/perl-Module-Starter-PBP
Branch : rawhide
Commit : dbe8c902e8a0602b494912250782a2e68fe25eb4
Author : Jitka Plesnikova <jplesnik@redhat.com>
Date : 2026-08-04T15:09:45+02:00
Stats : +19/-25 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/perl-Module-Starter-PBP/c/dbe8c902e8a0602b494912250782a2e68fe25eb4?branch=rawhide
Log:
0.003 bump (rhbz#2510964)
---
diff --git a/.gitignore b/.gitignore
index 4b74f86..5a02da4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
Module-Starter-PBP-v0.0.3.tar.gz
+/Module-Starter-PBP-0.003.tar.gz
diff --git a/perl-Module-Starter-PBP.spec b/perl-Module-Starter-PBP.spec
index 156a65e..ad11f11 100644
--- a/perl-Module-Starter-PBP.spec
+++ b/perl-Module-Starter-PBP.spec
@@ -1,21 +1,14 @@
-# Note that our versioning is a touch different here... I'm choosing to stick
-# with the version as reported by cpan directly, for a number of reasons: 1)
-# it's what v0.0.3 translates into when qv{}'ed, 2) it's easier on rpm, 3) it's
-# what the author intended by versioning it that way within the CPAN system.
-
-# note we have a CPAN version != the version embedded in the tarball
-%global tarver v0.0.3
+%global cpan_version 0.003
Name: perl-Module-Starter-PBP
-Version: 0.000003
-Release: 52%{?dist}
-Summary: Create a module as recommended in "Perl Best Practices"
+Version: %{cpan_version}.000
+Release: 1%{?dist}
+Summary: Create a module as recommended in "Perl Best Practices"
License: GPL-1.0-or-later OR Artistic-1.0-Perl
URL: https://metacpan.org/release/Module-Starter-PBP
-# note different macro!
-Source0: https://cpan.metacpan.org/authors/id/D/DC/DCONWAY/Module-Starter-PBP-%{tarver}.tar.gz
+Source0: https://cpan.metacpan.org/authors/id/D/DC/DCONWAY/Module-Starter-PBP-%{cpan_version}.tar.gz
BuildArch: noarch
@@ -32,17 +25,14 @@ BuildRequires: perl(Carp)
BuildRequires: perl(ExtUtils::Command)
BuildRequires: perl(File::Spec)
BuildRequires: perl(Module::Starter::Simple)
-BuildRequires: perl(version)
# Tests
BuildRequires: perl(Test::More)
BuildRequires: perl(Test::Pod) >= 1.14
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
-
-
%description
This module implements a simple approach to creating modules and their support
-files, based on the Module::Starter approach.
+files, based on the Module::Starter approach.
When used as a Module::Starter plugin, this module allows you to specify a
simple directory of templates which are filled in with module-specific
@@ -51,27 +41,30 @@ information, and thereafter form the basis of your new module.
The default templates that this module initially provides are based on the
recommendations in the book "Perl Best Practices".
-
%prep
-%setup -q -n Module-Starter-PBP-%{tarver}
+%setup -q -n Module-Starter-PBP-%{cpan_version}
%build
-perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
-make %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
+%{make_build}
%install
-make pure_install DESTDIR=%{buildroot}
-chmod -R u+w %{buildroot}/*
+%{make_install}
+%{_fixperms} %{buildroot}/*
%check
make test
%files
%doc README Changes
-%{perl_vendorlib}/*
-%{_mandir}/man3/*.3*
+%dir %{perl_vendorlib}/Module
+%{perl_vendorlib}/Module/Starter
+%{_mandir}/man3/Module::Starter::PBP.3*
%changelog
+* Tue Aug 04 2026 Jitka Plesnikova <jplesnik@redhat.com> - 0.003.000-1
+- 0.003 bump (rhbz#2510964)
+
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.000003-52
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
diff --git a/sources b/sources
index 1328ea1..d6beb00 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (Module-Starter-PBP-v0.0.3.tar.gz) = ad54b0af2b7888d01668437e403f43f4d184f1de8bd872d278d39022b928317497a1343be70d88d33ec4b576d6efb941280c12462f3dd3f2e9068627020fea66
+SHA512 (Module-Starter-PBP-0.003.tar.gz) = 3775c0d2241af9b88fa62b81288c0e60943027b60aa4cc290f2beda5fe70d4888a7e0342e0fff984d77e55536b2ff171e2145067903bdcd5dc6605956930f723
reply other threads:[~2026-08-04 13:09 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=178584899632.1.13241458065986789871.rpms-perl-Module-Starter-PBP-dbe8c902e8a0@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