pghmcfc pushed to perl-Math-BigInt-GMP (master). "Update to 1.49
(..more)"
by notifications@fedoraproject.org
From 6acec19e978c95323f9deff6525b936486226cc6 Mon Sep 17 00:00:00 2001
From: Paul Howarth <paul(a)city-fan.org>
Date: Sun, 3 Jan 2016 15:19:13 +0000
Subject: Update to 1.49
- New upstream release 1.49
- Sync test files with Math-BigInt-1.999714
---
perl-Math-BigInt-GMP.spec | 6 +++++-
sources | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/perl-Math-BigInt-GMP.spec b/perl-Math-BigInt-GMP.spec
index 86222cc..298bc5c 100644
--- a/perl-Math-BigInt-GMP.spec
+++ b/perl-Math-BigInt-GMP.spec
@@ -1,5 +1,5 @@
Name: perl-Math-BigInt-GMP
-Version: 1.48
+Version: 1.49
Release: 1%{?dist}
Summary: Use the GMP library for Math::BigInt routines
License: GPL+ or Artistic
@@ -77,6 +77,10 @@ make test
%{_mandir}/man3/Math::BigInt::GMP.3*
%changelog
+* Sun Jan 3 2016 Paul Howarth <paul(a)city-fan.org> - 1.49-1
+- Update to 1.49
+ - Sync test files with Math-BigInt-1.999714
+
* Thu Dec 31 2015 Paul Howarth <paul(a)city-fan.org> - 1.48-1
- Update to 1.48
- Sync test files with Math-BigInt-1.999713
diff --git a/sources b/sources
index 3d9787d..2b8f2ff 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3b08b110c89c3ff2eef127f00093c19e Math-BigInt-GMP-1.48.tar.gz
+6b48b02615824933b6e2fe2ef1077950 Math-BigInt-GMP-1.49.tar.gz
--
cgit v0.11.2
http://pkgs.fedoraproject.org/cgit/perl-Math-BigInt-GMP.git/commit/?h=mas...
7 years, 5 months
pghmcfc pushed to perl-Module-Extract-VERSION
(perl-Module-Extract-VERSION-1.01-14.fc24). "Spec tidy-up (..more)"
by notifications@fedoraproject.org
From 93206d7448ea3b69401d4b01fbc92b0e467f0f83 Mon Sep 17 00:00:00 2001
From: Paul Howarth <paul(a)city-fan.org>
Date: Sun, 3 Jan 2016 15:10:39 +0000
Subject: Spec tidy-up
- Get rid of %define
- Drop %defattr, redundant since rpm 4.4
- Use %license where possible
- Classify buildreqs by usage
- Don't need to remove empty directories from the buildroot
- Use DESTDIR rather than PERL_INSTALL_ROOT
---
perl-Module-Extract-VERSION.spec | 51 +++++++++++++++++++++++++++++++---------
1 file changed, 40 insertions(+), 11 deletions(-)
diff --git a/perl-Module-Extract-VERSION.spec b/perl-Module-Extract-VERSION.spec
index 8e26453..22f45ab 100644
--- a/perl-Module-Extract-VERSION.spec
+++ b/perl-Module-Extract-VERSION.spec
@@ -1,6 +1,9 @@
+# Provides/Requires filtering is different from rpm 4.9 onwards
+%global rpm49 %(rpm --version | perl -p -e 's/^.* (\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e')
+
Name: perl-Module-Extract-VERSION
Version: 1.01
-Release: 13%{?dist}
+Release: 14%{?dist}
Summary: Extract a module version without running code
License: GPL+ or Artistic
Group: Development/Libraries
@@ -8,14 +11,27 @@ URL: http://search.cpan.org/dist/Module-Extract-VERSION/
Source0: http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-VERSION-...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
BuildArch: noarch
-BuildRequires: perl(Carp)
+# Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
+BuildRequires: perl
BuildRequires: perl(ExtUtils::MakeMaker)
+# Module Runtime
+BuildRequires: perl(Carp)
+BuildRequires: perl(strict)
+BuildRequires: perl(subs)
+BuildRequires: perl(vars)
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(File::Spec)
BuildRequires: perl(Test::More)
+# Optional Tests
+BuildRequires: perl(Test::Manifest) >= 1.21
BuildRequires: perl(Test::Pod) >= 1.00
BuildRequires: perl(Test::Pod::Coverage) >= 1.00
-%if "%{?rhel}" != "4"
-BuildRequires: perl(Test::Prereq)
-%endif
+# Test::Prereq not used in presence of Test::Manifest
+# Runtime
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
# Filter bogus provide for perl(ExtUtils::MakeMaker::_version) (rpm 4.9 onwards)
@@ -29,8 +45,10 @@ module. It assumes that there is only one $VERSION in the file.
%setup -q -n Module-Extract-VERSION-%{version}
# Filter bogus provide for perl(ExtUtils::MakeMaker::_version) (prior to rpm 4.9)
+%if ! %{rpm49}
%global provfilt /bin/sh -c "%{__perl_provides} | grep -Fvx 'perl(ExtUtils::MakeMaker::_version)'"
-%define __perl_provides %{provfilt}
+%global __perl_provides %{provfilt}
+%endif
%build
perl Makefile.PL INSTALLDIRS=vendor
@@ -38,9 +56,8 @@ make %{?_smp_mflags}
%install
rm -rf %{buildroot}
-make pure_install PERL_INSTALL_ROOT=%{buildroot}
+make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
-find %{buildroot} -depth -type d -exec rmdir {} \; 2>/dev/null
%{_fixperms} %{buildroot}
%check
@@ -50,12 +67,24 @@ make test
rm -rf %{buildroot}
%files
-%defattr(-,root,root,-)
-%doc Changes LICENSE README
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
+%doc Changes README
%{perl_vendorlib}/Module/
-%{_mandir}/man3/Module::Extract::VERSION.3pm*
+%{_mandir}/man3/Module::Extract::VERSION.3*
%changelog
+* Sun Jan 3 2016 Paul Howarth <paul(a)city-fan.org> - 1.01-14
+- Get rid of %%define
+- Drop %%defattr, redundant since rpm 4.4
+- Use %%license where possible
+- Classify buildreqs by usage
+- Don't need to remove empty directories from the buildroot
+- Use DESTDIR rather than PERL_INSTALL_ROOT
+
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.01-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--
cgit v0.11.2
http://pkgs.fedoraproject.org/cgit/perl-Module-Extract-VERSION.git/commit...
7 years, 5 months
pghmcfc pushed to perl-Module-Extract-VERSION (master). "Spec tidy-up
(..more)"
by notifications@fedoraproject.org
From 93206d7448ea3b69401d4b01fbc92b0e467f0f83 Mon Sep 17 00:00:00 2001
From: Paul Howarth <paul(a)city-fan.org>
Date: Sun, 3 Jan 2016 15:10:39 +0000
Subject: Spec tidy-up
- Get rid of %define
- Drop %defattr, redundant since rpm 4.4
- Use %license where possible
- Classify buildreqs by usage
- Don't need to remove empty directories from the buildroot
- Use DESTDIR rather than PERL_INSTALL_ROOT
---
perl-Module-Extract-VERSION.spec | 51 +++++++++++++++++++++++++++++++---------
1 file changed, 40 insertions(+), 11 deletions(-)
diff --git a/perl-Module-Extract-VERSION.spec b/perl-Module-Extract-VERSION.spec
index 8e26453..22f45ab 100644
--- a/perl-Module-Extract-VERSION.spec
+++ b/perl-Module-Extract-VERSION.spec
@@ -1,6 +1,9 @@
+# Provides/Requires filtering is different from rpm 4.9 onwards
+%global rpm49 %(rpm --version | perl -p -e 's/^.* (\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e')
+
Name: perl-Module-Extract-VERSION
Version: 1.01
-Release: 13%{?dist}
+Release: 14%{?dist}
Summary: Extract a module version without running code
License: GPL+ or Artistic
Group: Development/Libraries
@@ -8,14 +11,27 @@ URL: http://search.cpan.org/dist/Module-Extract-VERSION/
Source0: http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Module-Extract-VERSION-...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
BuildArch: noarch
-BuildRequires: perl(Carp)
+# Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
+BuildRequires: perl
BuildRequires: perl(ExtUtils::MakeMaker)
+# Module Runtime
+BuildRequires: perl(Carp)
+BuildRequires: perl(strict)
+BuildRequires: perl(subs)
+BuildRequires: perl(vars)
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(File::Spec)
BuildRequires: perl(Test::More)
+# Optional Tests
+BuildRequires: perl(Test::Manifest) >= 1.21
BuildRequires: perl(Test::Pod) >= 1.00
BuildRequires: perl(Test::Pod::Coverage) >= 1.00
-%if "%{?rhel}" != "4"
-BuildRequires: perl(Test::Prereq)
-%endif
+# Test::Prereq not used in presence of Test::Manifest
+# Runtime
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
# Filter bogus provide for perl(ExtUtils::MakeMaker::_version) (rpm 4.9 onwards)
@@ -29,8 +45,10 @@ module. It assumes that there is only one $VERSION in the file.
%setup -q -n Module-Extract-VERSION-%{version}
# Filter bogus provide for perl(ExtUtils::MakeMaker::_version) (prior to rpm 4.9)
+%if ! %{rpm49}
%global provfilt /bin/sh -c "%{__perl_provides} | grep -Fvx 'perl(ExtUtils::MakeMaker::_version)'"
-%define __perl_provides %{provfilt}
+%global __perl_provides %{provfilt}
+%endif
%build
perl Makefile.PL INSTALLDIRS=vendor
@@ -38,9 +56,8 @@ make %{?_smp_mflags}
%install
rm -rf %{buildroot}
-make pure_install PERL_INSTALL_ROOT=%{buildroot}
+make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
-find %{buildroot} -depth -type d -exec rmdir {} \; 2>/dev/null
%{_fixperms} %{buildroot}
%check
@@ -50,12 +67,24 @@ make test
rm -rf %{buildroot}
%files
-%defattr(-,root,root,-)
-%doc Changes LICENSE README
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
+%doc Changes README
%{perl_vendorlib}/Module/
-%{_mandir}/man3/Module::Extract::VERSION.3pm*
+%{_mandir}/man3/Module::Extract::VERSION.3*
%changelog
+* Sun Jan 3 2016 Paul Howarth <paul(a)city-fan.org> - 1.01-14
+- Get rid of %%define
+- Drop %%defattr, redundant since rpm 4.4
+- Use %%license where possible
+- Classify buildreqs by usage
+- Don't need to remove empty directories from the buildroot
+- Use DESTDIR rather than PERL_INSTALL_ROOT
+
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.01-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--
cgit v0.11.2
http://pkgs.fedoraproject.org/cgit/perl-Module-Extract-VERSION.git/commit...
7 years, 5 months
pghmcfc pushed to perl-Test-HasVersion
(perl-Test-HasVersion-0.014-1.fc24). "Update to 0.014 (..more)"
by notifications@fedoraproject.org
From 7c0634d2408824f5e685f19d8fe46af4eb785249 Mon Sep 17 00:00:00 2001
From: Paul Howarth <paul(a)city-fan.org>
Date: Sun, 3 Jan 2016 13:21:47 +0000
Subject: Update to 0.014
- New upstream release 0.014
- Fix spelling error in manpage (CPAN RT#110709)
- Add LICENSE file to the distribution (GH#1)
- Fix all_pm_version_ok() failure reporting (CPAN RT#78758)
- Rewrite t/04_all_ok.t using Test::Builder::Tester (CPAN RT#78758)
- Classify buildreqs by usage
- Drop %defattr, redundant since rpm 4.4
- Make %files list more explicit
---
.gitignore | 2 +-
perl-Test-HasVersion.spec | 64 ++++++++++++++++++++++++++++++-----------------
sources | 2 +-
3 files changed, 43 insertions(+), 25 deletions(-)
diff --git a/.gitignore b/.gitignore
index 22ba297..3794058 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/Test-HasVersion-0.012.tar.gz
+/Test-HasVersion-[0-9.]*.tar.gz
diff --git a/perl-Test-HasVersion.spec b/perl-Test-HasVersion.spec
index b469063..13a4cb9 100644
--- a/perl-Test-HasVersion.spec
+++ b/perl-Test-HasVersion.spec
@@ -1,57 +1,75 @@
Name: perl-Test-HasVersion
-Version: 0.012
-Release: 13%{?dist}
+Version: 0.014
+Release: 1%{?dist}
Summary: Check Perl modules have version numbers
License: GPL+ or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/Test-HasVersion/
Source0: http://www.cpan.org/authors/id/F/FE/FERREIRA/Test-HasVersion-%{version}.t...
BuildArch: noarch
+# Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
+BuildRequires: perl
+# Module Runtime
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(File::Find)
-BuildRequires: perl(File::Spec)
BuildRequires: perl(strict)
BuildRequires: perl(Test::Builder)
+BuildRequires: perl(warnings)
+# Test Suite
BuildRequires: perl(Test::Builder::Tester) >= 1.04
BuildRequires: perl(Test::More)
-BuildRequires: perl(Test::Pod)
-BuildRequires: perl(Test::Pod::Coverage)
-Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
-
-%{?perl_default_filter}
+# Optional Tests
+BuildRequires: perl(Test::Pod) >= 1.18
+BuildRequires: perl(Test::Pod::Coverage) >= 1.04
+# Runtime
+Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
%description
-Do you wanna check that every one of your Perl modules in a distribution
-has a version number? You wanna make sure you don't forget the brand new
-modules you just added? Well, that's the module you have been looking
-for. Use it!
+Do you want to check that every one of your Perl modules in a distribution has
+a version number? You want to make sure you don't forget the brand new modules
+you just added? Well, this is the module you have been looking for.
+
+Do you want to check someone else's distribution to make sure the author has
+not committed the sin of leaving Perl modules without a version that can be
+used to tell if you have this or that feature? Test::HasVersion is also for
+you.
%prep
%setup -q -n Test-HasVersion-%{version}
%build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%install
-make pure_install DESTDIR=$RPM_BUILD_ROOT
-
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
-%{_fixperms} $RPM_BUILD_ROOT/*
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+%{_fixperms} %{buildroot}
%check
make test
%files
-%defattr(-,root,root,-)
+%license LICENSE
%doc Changes README
-%{_bindir}/*
-%{perl_vendorlib}/*
-%{_mandir}/man3/*
+%{_bindir}/test_version
+%{perl_vendorlib}/Test/
+%{_mandir}/man3/Test::HasVersion.3*
%changelog
+* Sun Jan 3 2016 Paul Howarth <paul(a)city-fan.org> - 0.014-1
+- Update to 0.014
+ - Fix spelling error in manpage (CPAN RT#110709)
+ - Add LICENSE file to the distribution (GH#1)
+ - Fix all_pm_version_ok() failure reporting (CPAN RT#78758)
+ - Rewrite t/04_all_ok.t using Test::Builder::Tester (CPAN RT#78758)
+- Classify buildreqs by usage
+- Drop %%defattr, redundant since rpm 4.4
+- Make %%files list more explicit
+
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0.012-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
diff --git a/sources b/sources
index d1c7e7a..819ec31 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d9cb18aa27bbbb95b96a008248ebfb27 Test-HasVersion-0.012.tar.gz
+15682f35d3e204c86329042d87046142 Test-HasVersion-0.014.tar.gz
--
cgit v0.11.2
http://pkgs.fedoraproject.org/cgit/perl-Test-HasVersion.git/commit/?h=per...
7 years, 5 months
pghmcfc pushed to perl-Test-HasVersion (master). "Update to 0.014
(..more)"
by notifications@fedoraproject.org
From 7c0634d2408824f5e685f19d8fe46af4eb785249 Mon Sep 17 00:00:00 2001
From: Paul Howarth <paul(a)city-fan.org>
Date: Sun, 3 Jan 2016 13:21:47 +0000
Subject: Update to 0.014
- New upstream release 0.014
- Fix spelling error in manpage (CPAN RT#110709)
- Add LICENSE file to the distribution (GH#1)
- Fix all_pm_version_ok() failure reporting (CPAN RT#78758)
- Rewrite t/04_all_ok.t using Test::Builder::Tester (CPAN RT#78758)
- Classify buildreqs by usage
- Drop %defattr, redundant since rpm 4.4
- Make %files list more explicit
---
.gitignore | 2 +-
perl-Test-HasVersion.spec | 64 ++++++++++++++++++++++++++++++-----------------
sources | 2 +-
3 files changed, 43 insertions(+), 25 deletions(-)
diff --git a/.gitignore b/.gitignore
index 22ba297..3794058 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/Test-HasVersion-0.012.tar.gz
+/Test-HasVersion-[0-9.]*.tar.gz
diff --git a/perl-Test-HasVersion.spec b/perl-Test-HasVersion.spec
index b469063..13a4cb9 100644
--- a/perl-Test-HasVersion.spec
+++ b/perl-Test-HasVersion.spec
@@ -1,57 +1,75 @@
Name: perl-Test-HasVersion
-Version: 0.012
-Release: 13%{?dist}
+Version: 0.014
+Release: 1%{?dist}
Summary: Check Perl modules have version numbers
License: GPL+ or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/Test-HasVersion/
Source0: http://www.cpan.org/authors/id/F/FE/FERREIRA/Test-HasVersion-%{version}.t...
BuildArch: noarch
+# Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
+BuildRequires: perl
+# Module Runtime
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(File::Find)
-BuildRequires: perl(File::Spec)
BuildRequires: perl(strict)
BuildRequires: perl(Test::Builder)
+BuildRequires: perl(warnings)
+# Test Suite
BuildRequires: perl(Test::Builder::Tester) >= 1.04
BuildRequires: perl(Test::More)
-BuildRequires: perl(Test::Pod)
-BuildRequires: perl(Test::Pod::Coverage)
-Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
-
-%{?perl_default_filter}
+# Optional Tests
+BuildRequires: perl(Test::Pod) >= 1.18
+BuildRequires: perl(Test::Pod::Coverage) >= 1.04
+# Runtime
+Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
%description
-Do you wanna check that every one of your Perl modules in a distribution
-has a version number? You wanna make sure you don't forget the brand new
-modules you just added? Well, that's the module you have been looking
-for. Use it!
+Do you want to check that every one of your Perl modules in a distribution has
+a version number? You want to make sure you don't forget the brand new modules
+you just added? Well, this is the module you have been looking for.
+
+Do you want to check someone else's distribution to make sure the author has
+not committed the sin of leaving Perl modules without a version that can be
+used to tell if you have this or that feature? Test::HasVersion is also for
+you.
%prep
%setup -q -n Test-HasVersion-%{version}
%build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%install
-make pure_install DESTDIR=$RPM_BUILD_ROOT
-
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
-%{_fixperms} $RPM_BUILD_ROOT/*
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+%{_fixperms} %{buildroot}
%check
make test
%files
-%defattr(-,root,root,-)
+%license LICENSE
%doc Changes README
-%{_bindir}/*
-%{perl_vendorlib}/*
-%{_mandir}/man3/*
+%{_bindir}/test_version
+%{perl_vendorlib}/Test/
+%{_mandir}/man3/Test::HasVersion.3*
%changelog
+* Sun Jan 3 2016 Paul Howarth <paul(a)city-fan.org> - 0.014-1
+- Update to 0.014
+ - Fix spelling error in manpage (CPAN RT#110709)
+ - Add LICENSE file to the distribution (GH#1)
+ - Fix all_pm_version_ok() failure reporting (CPAN RT#78758)
+ - Rewrite t/04_all_ok.t using Test::Builder::Tester (CPAN RT#78758)
+- Classify buildreqs by usage
+- Drop %%defattr, redundant since rpm 4.4
+- Make %%files list more explicit
+
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0.012-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
diff --git a/sources b/sources
index d1c7e7a..819ec31 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d9cb18aa27bbbb95b96a008248ebfb27 Test-HasVersion-0.012.tar.gz
+15682f35d3e204c86329042d87046142 Test-HasVersion-0.014.tar.gz
--
cgit v0.11.2
http://pkgs.fedoraproject.org/cgit/perl-Test-HasVersion.git/commit/?h=mas...
7 years, 5 months
[Bug 1290982] New: perl-RT-Client-REST-0.50 is available
by Red Hat Bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1290982
Bug ID: 1290982
Summary: perl-RT-Client-REST-0.50 is available
Product: Fedora
Version: rawhide
Component: perl-RT-Client-REST
Keywords: FutureFeature, Triaged
Assignee: ppisar(a)redhat.com
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: mmaslano(a)redhat.com,
perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com,
psabata(a)redhat.com
Latest upstream release: 0.50
Current version/release in rawhide: 0.49-5.fc23
URL: http://search.cpan.org/dist/RT-Client-REST/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.
--
You are receiving this mail because:
You are on the CC list for the bug.
7 years, 5 months
[Bug 1295093] New: perl-DBM-Deep-2.0013 is available
by Red Hat Bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1295093
Bug ID: 1295093
Summary: perl-DBM-Deep-2.0013 is available
Product: Fedora
Version: rawhide
Component: perl-DBM-Deep
Keywords: FutureFeature, Triaged
Assignee: andreas(a)bawue.net
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: andreas(a)bawue.net, paul(a)city-fan.org,
perl-devel(a)lists.fedoraproject.org
Latest upstream release: 2.0013
Current version/release in rawhide: 2.0012-1.fc23
URL: http://search.cpan.org/dist/DBM-Deep/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.
--
You are receiving this mail because:
You are on the CC list for the bug.
7 years, 5 months