Projects
openEuler:Mainline
perl-parent
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 8
View file
_service:tar_scm:perl-parent.spec
Changed
@@ -1,8 +1,8 @@ %global perl_package_name parent Name: perl-parent Epoch: 1 -Version: 0.238 -Release: 2 +Version: 0.241 +Release: 1 Summary: Establish an ISA relationship with base classes at compile time License: GPL+ or Artistic URL: https://metacpan.org/release/parent @@ -45,7 +45,10 @@ %{_mandir}/man3/parent.3* %changelog -* Mon Aug 02 2021 chenyanpanHW <chenyanpan@huawei.com> - 0.238-2 +* Fri Jul 21 2023 xujing <xujing125@huawei.com> - 1:0.241-1 +- update version to 0.241 + +* Mon Aug 02 2021 chenyanpanHW <chenyanpan@huawei.com> - 1:0.238-2 - DESC: delete -S git from %autosetup, and delete BuildRequires git * Sat Jul 25 2020 zhanzhimin <zhanzhimin@huawei.com> - 1:0.238-1
View file
_service:tar_scm:parent-0.238.tar.gz/Changes -> _service:tar_scm:parent-0.241.tar.gz/Changes
Changed
@@ -1,3 +1,22 @@ +0.241 2023-02-14 + . Actually manually add the changes since I messed up the last release + . No code changes, no need to upgrade + +0.240 2023-02-13 + . Use Test::More::isnt() instead of Test::More::isn't in tests, which is + deprecated, as ' isn't allowed as package separator in an upcoming + version of Perl + + Contributed by Tony Cook, many thanks + + . No code changes, no need to upgrade + +0.239 2022-12-06 + . Harden against changes to require error messages. The '@INC contains' + may change in a future release of perl, this hardens the test to + not be sensitive to the exact words chosen. See: + https://github.com/Perl/perl5/pull/20547 + 0.238 2020-02-07 . Move the prerequisite Test::More from being a runtime prerequisite to a test time / build time prerequisite (PR #11, by Haarg)
View file
_service:tar_scm:parent-0.238.tar.gz/META.json -> _service:tar_scm:parent-0.241.tar.gz/META.json
Changed
@@ -4,13 +4,13 @@ "Max Maischein <corion@cpan.org>" , "dynamic_config" : 0, - "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150005", + "generated_by" : "ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010", "license" : "perl_5" , "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" + "version" : 2 }, "name" : "parent", "no_index" : { @@ -49,7 +49,7 @@ "web" : "https://github.com/Corion/parent" } }, - "version" : "0.238", - "x_serialization_backend" : "JSON::PP version 2.27203", + "version" : "0.241", + "x_serialization_backend" : "JSON::PP version 4.11", "x_static_install" : 1 }
View file
_service:tar_scm:parent-0.238.tar.gz/META.yml -> _service:tar_scm:parent-0.241.tar.gz/META.yml
Changed
@@ -8,7 +8,7 @@ configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 -generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150005' +generated_by: 'ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -22,6 +22,6 @@ perl: '5.006' resources: repository: git://github.com/Corion/parent.git -version: '0.238' +version: '0.241' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' x_static_install: 1
View file
_service:tar_scm:parent-0.238.tar.gz/lib/parent.pm -> _service:tar_scm:parent-0.241.tar.gz/lib/parent.pm
Changed
@@ -1,7 +1,7 @@ package parent; use strict; -our $VERSION = '0.238'; +our $VERSION = '0.241'; sub import { my $class = shift;
View file
_service:tar_scm:parent-0.238.tar.gz/t/parent-classfromclassfile.t -> _service:tar_scm:parent-0.241.tar.gz/t/parent-classfromclassfile.t
Changed
@@ -18,4 +18,4 @@ # and does not get treated as a file: eval q{package Test1; require Dummy; use parent -norequire, 'Dummy::InlineChild'; }; is $@, '', "Loading an unadorned class works"; -isn't $INC{"Dummy.pm"}, undef, 'We loaded Dummy.pm'; +isnt $INC{"Dummy.pm"}, undef, 'We loaded Dummy.pm';
View file
_service:tar_scm:parent-0.238.tar.gz/t/parent-classfromfile.t -> _service:tar_scm:parent-0.241.tar.gz/t/parent-classfromfile.t
Changed
@@ -20,6 +20,6 @@ # and does not get treated as a file: eval sprintf q{package Test2; require '%s/lib/Dummy2.plugin'; use parent -norequire, 'Dummy2::InlineChild' }, $base; is $@, '', "Loading a class from a file works"; -isn't $INC{"$base/lib/Dummy2.plugin"}, undef, "We loaded the plugin file"; +isnt $INC{"$base/lib/Dummy2.plugin"}, undef, "We loaded the plugin file"; my $o = bless {}, 'Test2'; isa_ok $o, 'Dummy2::InlineChild';
View file
_service:tar_scm:parent-0.238.tar.gz/t/parent.t -> _service:tar_scm:parent-0.241.tar.gz/t/parent.t
Changed
@@ -56,8 +56,8 @@ is( $Eval2::VERSION, '1.02' ); -my $expected= q{/^Can't locate reallyReAlLyNotexists.pm in \@INC \(\@INC contains:/}; -$expected= q{/^Can't locate reallyReAlLyNotexists.pm in \@INC \(you may need to install the reallyReAlLyNotexists module\) \(\@INC contains:/} +my $expected= q{/^Can't locate reallyReAlLyNotexists.pm in \@INC \(\@INC\w +:/}; +$expected= q{/^Can't locate reallyReAlLyNotexists.pm in \@INC \(you may need to install the reallyReAlLyNotexists module\) \(\@INC\w +:/} if 5.017005 <= $; eval q{use parent 'reallyReAlLyNotexists'}; @@ -74,4 +74,3 @@ use parent -norequire, 'Has::Version_0'; ::is( $Has::Version_0::VERSION, 0, '$VERSION==0 preserved' ); } -
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2