From 52bbfa525b13d566030bcab48808204a0156fc55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Mon, 24 Mar 2014 13:08:26 +0100 Subject: [PATCH 01/39] Initial import. --- .gitignore | 1 + perl-Type-Tiny.spec | 89 +++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 91 insertions(+) create mode 100644 perl-Type-Tiny.spec diff --git a/.gitignore b/.gitignore index e69de29..b876540 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/Type-Tiny-0.040.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec new file mode 100644 index 0000000..1f5d40a --- /dev/null +++ b/perl-Type-Tiny.spec @@ -0,0 +1,89 @@ +Name: perl-Type-Tiny +Version: 0.040 +Release: 1%{?dist} +Summary: Tiny, yet Moo(se)-compatible type constraint +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Type-Tiny/ +Source0: http://www.cpan.org/authors/id/T/TO/TOBYINK/Type-Tiny-%{version}.tar.gz +BuildArch: noarch + +# --with reply_plugin +# Default: --without +# Missing deps (perl(Reply::Plugin)) +# Marked as unstable (cf. lib/Reply/Plugin/TypeTiny.pm) +%bcond_with reply_plugin + +BuildRequires: perl >= 0:5.006001 +BuildRequires: perl(B) +BuildRequires: perl(CPAN::Meta::Requirements) +BuildRequires: perl(Exporter::Tiny) >= 0.026 +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Scalar::Util) +BuildRequires: perl(Sub::Name) +BuildRequires: perl(Test::More) >= 0.96 +BuildRequires: perl(Test::Tester) >= 0.109 +BuildRequires: perl(Text::Balanced) +BuildRequires: perl(overload) +BuildRequires: perl(strict) +BuildRequires: perl(utf8) +BuildRequires: perl(warnings) + +# optional +# N/A in Fedora: BuildRequires: perl(Class::InsideOut) +BuildRequires: perl(Class::ISA) +BuildRequires: perl(Devel::LexAlias) >= 0.05 +BuildRequires: perl(Devel::StackTrace) +# N/A in Fedora: BuildRequires: perl(Function::Parameters) +BuildRequires: perl(JSON::PP) +# N/A in Fedora: BuildRequires: perl(Kavorka) +# N/A in Fedora: BuildRequires: perl(match::simple) +BuildRequires: perl(Moo) +# N/A in Fedora: BuildRequires: perl(Moops) +BuildRequires: perl(Moose) +BuildRequires: perl(MooseX::Types) +BuildRequires: perl(Mouse) +BuildRequires: perl(MouseX::Types) +BuildRequires: perl(MooseX::Types::Common) +BuildRequires: perl(Object::Accessor) +%{?with_reply_plugin:BuildRequires: perl(Reply::Plugin)} +# N/A in Fedora: BuildRequires: perl(Return::Type) +BuildRequires: perl(Role::Tiny) +# N/A in Fedora: BuildRequires: perl(Sub::Exporter::Lexical) +# N/A in Fedora: BuildRequires: perl(Switcheroo) +%{?with_reply_plugin:BuildRequires: perl(Term::ANSIColor)} +# N/A in Fedora: BuildRequires: perl(Type::Tie) +# N/A in Fedora: BuildRequires: perl(Validation::Class) + +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +Type::Tiny is a tiny class for creating Moose-like type constraint objects +which are compatible with Moo, Moose and Mouse. + +%prep +%setup -q -n Type-Tiny-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT + +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; + +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +make test + +%files +%doc Changes CONTRIBUTING COPYRIGHT CREDITS LICENSE NEWS README +%{perl_vendorlib}/* +%{!?with_reply_plugin:%exclude %{perl_vendorlib}/Reply} +%{_mandir}/man3/* + +%changelog +* Fri Mar 21 2014 Ralf Corsépius 0.040-1 +- Initial Fedora package. diff --git a/sources b/sources index e69de29..a83cbf8 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +e1b0730e699d03cd82c240d79f64635f Type-Tiny-0.040.tar.gz From 0139c0d4d835c28d5ea74351f7a5169bf3fd1c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Tue, 8 Apr 2014 17:23:34 +0200 Subject: [PATCH 02/39] Upstream update. - Split out perl(Test::TypeTiny) to avoid deps on perl(Test::*). --- .gitignore | 1 + perl-Type-Tiny.spec | 18 +++++++++++++++++- sources | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b876540..f85e927 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /Type-Tiny-0.040.tar.gz +/Type-Tiny-0.042.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 1f5d40a..454b8b8 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,5 +1,5 @@ Name: perl-Type-Tiny -Version: 0.040 +Version: 0.042 Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic @@ -61,6 +61,12 @@ Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $versi Type::Tiny is a tiny class for creating Moose-like type constraint objects which are compatible with Moo, Moose and Mouse. +%package -n perl-Test-TypeTiny +Summary: Test::TypeTiny module + +%description -n perl-Test-TypeTiny +Test::TypeTiny module. + %prep %setup -q -n Type-Tiny-%{version} @@ -83,7 +89,17 @@ make test %{perl_vendorlib}/* %{!?with_reply_plugin:%exclude %{perl_vendorlib}/Reply} %{_mandir}/man3/* +%exclude %{perl_vendorlib}/Test +%exclude %{_mandir}/man3/Test::TypeTiny.3pm* + +%files -n perl-Test-TypeTiny +%{perl_vendorlib}/Test +%{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Tue Apr 08 2014 Ralf Corsépius 0.042-1 +- Upstream update. +- Split out perl(Test::TypeTiny) to avoid deps on perl(Test::*). + * Fri Mar 21 2014 Ralf Corsépius 0.040-1 - Initial Fedora package. diff --git a/sources b/sources index a83cbf8..68f698e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e1b0730e699d03cd82c240d79f64635f Type-Tiny-0.040.tar.gz +0e0c460dfcaeb97ad91d9d6f101657f6 Type-Tiny-0.042.tar.gz From d5059ac07aa13934f744d88c69b74d2d1faae22d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 06:57:37 -0500 Subject: [PATCH 03/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 454b8b8..aa32b50 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 0.042 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -97,6 +97,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.042-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Tue Apr 08 2014 Ralf Corsépius 0.042-1 - Upstream update. - Split out perl(Test::TypeTiny) to avoid deps on perl(Test::*). From dd184241b3c39ad26ead9e451542d2d72e6aad65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Mon, 23 Jun 2014 18:55:16 +0200 Subject: [PATCH 04/39] Upstream update. - Spec file cosmetics. - BR: perl(Test::Moose), perl(MooseX::Getopt). --- .gitignore | 3 +-- perl-Type-Tiny.spec | 15 +++++++++++---- sources | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index f85e927..1c18312 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -/Type-Tiny-0.040.tar.gz -/Type-Tiny-0.042.tar.gz +/Type-Tiny-0.044.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index aa32b50..715b83f 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny -Version: 0.042 -Release: 2%{?dist} +Version: 0.044 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -21,6 +21,7 @@ BuildRequires: perl(Exporter::Tiny) >= 0.026 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Scalar::Util) BuildRequires: perl(Sub::Name) +BuildRequires: perl(Test::Moose) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(Test::Tester) >= 0.109 BuildRequires: perl(Text::Balanced) @@ -43,6 +44,7 @@ BuildRequires: perl(Moo) BuildRequires: perl(Moose) BuildRequires: perl(MooseX::Types) BuildRequires: perl(Mouse) +BuildRequires: perl(MooseX::Getopt) BuildRequires: perl(MouseX::Types) BuildRequires: perl(MooseX::Types::Common) BuildRequires: perl(Object::Accessor) @@ -97,12 +99,17 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon Jun 23 2014 Ralf Corsépius - 0.044-1 +- Upstream update. +- Spec file cosmetics. +- BR: perl(Test::Moose), perl(MooseX::Getopt). + * Sat Jun 07 2014 Fedora Release Engineering - 0.042-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild -* Tue Apr 08 2014 Ralf Corsépius 0.042-1 +* Tue Apr 08 2014 Ralf Corsépius - 0.042-1 - Upstream update. - Split out perl(Test::TypeTiny) to avoid deps on perl(Test::*). -* Fri Mar 21 2014 Ralf Corsépius 0.040-1 +* Fri Mar 21 2014 Ralf Corsépius - 0.040-1 - Initial Fedora package. diff --git a/sources b/sources index 68f698e..367f672 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0e0c460dfcaeb97ad91d9d6f101657f6 Type-Tiny-0.042.tar.gz +011db8106de54b4a19e9a9d2b7cd7a73 Type-Tiny-0.044.tar.gz From 1111d236f619b96460b94315cff632e9834c62df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Thu, 24 Jul 2014 05:34:59 +0200 Subject: [PATCH 05/39] Upstream update. --- .gitignore | 2 +- perl-Type-Tiny.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1c18312..060f0a3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-0.044.tar.gz +/Type-Tiny-0.046.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 715b83f..04eb041 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,5 +1,5 @@ Name: perl-Type-Tiny -Version: 0.044 +Version: 0.046 Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic @@ -99,6 +99,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Jul 24 2014 Ralf Corsépius - 0.046-1 +- Upstream update. + * Mon Jun 23 2014 Ralf Corsépius - 0.044-1 - Upstream update. - Spec file cosmetics. diff --git a/sources b/sources index 367f672..08f20fc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -011db8106de54b4a19e9a9d2b7cd7a73 Type-Tiny-0.044.tar.gz +8b1ba9b53f59bd4e8a06de289c2da682 Type-Tiny-0.046.tar.gz From 19af4a290d6c1c6f63c2f70641bb84c07d404cd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Mon, 18 Aug 2014 17:32:01 +0200 Subject: [PATCH 06/39] Upstream update. --- .gitignore | 2 +- perl-Type-Tiny.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 060f0a3..0c794cb 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-0.046.tar.gz +/Type-Tiny-1.000000.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 04eb041..ce01ad0 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,5 +1,5 @@ Name: perl-Type-Tiny -Version: 0.046 +Version: 1.000000 Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic @@ -54,6 +54,7 @@ BuildRequires: perl(Role::Tiny) # N/A in Fedora: BuildRequires: perl(Sub::Exporter::Lexical) # N/A in Fedora: BuildRequires: perl(Switcheroo) %{?with_reply_plugin:BuildRequires: perl(Term::ANSIColor)} +BuildRequires: perl(Test::Warnings) # N/A in Fedora: BuildRequires: perl(Type::Tie) # N/A in Fedora: BuildRequires: perl(Validation::Class) @@ -99,6 +100,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon Aug 18 2014 Ralf Corsépius - 1.000000-1 +- Upstream update. + * Thu Jul 24 2014 Ralf Corsépius - 0.046-1 - Upstream update. diff --git a/sources b/sources index 08f20fc..32e3c46 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8b1ba9b53f59bd4e8a06de289c2da682 Type-Tiny-0.046.tar.gz +d2f258e5a6cdb726125d9377d524b2a2 Type-Tiny-1.000000.tar.gz From 86df6a4d226c7da662ee4fe077f608d72637153c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Fri, 22 Aug 2014 06:25:25 +0200 Subject: [PATCH 07/39] Upstream update. - Update deps. --- .gitignore | 2 +- perl-Type-Tiny.spec | 9 +++++++-- sources | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0c794cb..884dff1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.000000.tar.gz +/Type-Tiny-1.000002.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index ce01ad0..483335e 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,5 +1,5 @@ Name: perl-Type-Tiny -Version: 1.000000 +Version: 1.000002 Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic @@ -33,6 +33,7 @@ BuildRequires: perl(warnings) # optional # N/A in Fedora: BuildRequires: perl(Class::InsideOut) BuildRequires: perl(Class::ISA) +BuildRequires: perl(Devel::Hide) BuildRequires: perl(Devel::LexAlias) >= 0.05 BuildRequires: perl(Devel::StackTrace) # N/A in Fedora: BuildRequires: perl(Function::Parameters) @@ -100,7 +101,11 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog -* Mon Aug 18 2014 Ralf Corsépius - 1.000000-1 +* Fri Aug 22 2014 Ralf Corsépius - 1.000002-1 +- Upstream update. +- Update deps. + +* Mon Aug 18 2014 Ralf Corsépius - 1.000000-1 - Upstream update. * Thu Jul 24 2014 Ralf Corsépius - 0.046-1 diff --git a/sources b/sources index 32e3c46..91c35c6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d2f258e5a6cdb726125d9377d524b2a2 Type-Tiny-1.000000.tar.gz +e4b88fd14e6e4ccd75b82907dcd1b217 Type-Tiny-1.000002.tar.gz From c536ddb90e166fa5787e8a04a3d0d4ed8f0925ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Sun, 31 Aug 2014 08:24:41 +0200 Subject: [PATCH 08/39] Upstream update. --- .gitignore | 2 +- perl-Type-Tiny.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 884dff1..673cb02 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.000002.tar.gz +/Type-Tiny-1.000003.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 483335e..c9d9a53 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,5 +1,5 @@ Name: perl-Type-Tiny -Version: 1.000002 +Version: 1.000003 Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic @@ -101,6 +101,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Sun Aug 31 2014 Ralf Corsépius - 1.000003-1 +- Upstream update. + * Fri Aug 22 2014 Ralf Corsépius - 1.000002-1 - Upstream update. - Update deps. diff --git a/sources b/sources index 91c35c6..1038c81 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e4b88fd14e6e4ccd75b82907dcd1b217 Type-Tiny-1.000002.tar.gz +50c6be0df0652e616dafdd3d08a626f3 Type-Tiny-1.000003.tar.gz From 325181f90f10445f999eeb69e3358f258c421953 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 1 Sep 2014 16:52:13 +0200 Subject: [PATCH 09/39] Perl 5.20 rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index c9d9a53..e4a805f 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000003 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -101,6 +101,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon Sep 01 2014 Jitka Plesnikova - 1.000003-2 +- Perl 5.20 rebuild + * Sun Aug 31 2014 Ralf Corsépius - 1.000003-1 - Upstream update. From faf677455cd84c8e0c78a4001c8db30c4234d60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Thu, 4 Sep 2014 04:52:12 +0200 Subject: [PATCH 10/39] Upstream update. --- .gitignore | 2 +- perl-Type-Tiny.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 673cb02..f2bd3e8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.000003.tar.gz +/Type-Tiny-1.000004.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index e4a805f..af4dfea 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny -Version: 1.000003 -Release: 2%{?dist} +Version: 1.000004 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -101,6 +101,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Sep 04 2014 Ralf Corsépius - 1.000004-1 +- Upstream update. + * Mon Sep 01 2014 Jitka Plesnikova - 1.000003-2 - Perl 5.20 rebuild diff --git a/sources b/sources index 1038c81..6dc3b21 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -50c6be0df0652e616dafdd3d08a626f3 Type-Tiny-1.000003.tar.gz +3fab2a0ec2634d1fa057d6254678b79f Type-Tiny-1.000004.tar.gz From 3a1f289697a70182ba099f739ef11261842d73f5 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Thu, 4 Sep 2014 14:57:14 +0200 Subject: [PATCH 11/39] Perl 5.20 rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index af4dfea..1431f06 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000004 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -101,6 +101,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Sep 04 2014 Jitka Plesnikova - 1.000004-2 +- Perl 5.20 rebuild + * Thu Sep 04 2014 Ralf Corsépius - 1.000004-1 - Upstream update. From 91a53b84196dfdf0785a609dbec878aa3e38e214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Mon, 27 Oct 2014 09:04:45 +0100 Subject: [PATCH 12/39] Upstream update. --- .gitignore | 2 +- perl-Type-Tiny.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index f2bd3e8..a593447 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.000004.tar.gz +/Type-Tiny-1.000005.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 1431f06..fa922f0 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny -Version: 1.000004 -Release: 2%{?dist} +Version: 1.000005 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -89,7 +89,7 @@ find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; make test %files -%doc Changes CONTRIBUTING COPYRIGHT CREDITS LICENSE NEWS README +%doc Changes COPYRIGHT CREDITS LICENSE NEWS README %{perl_vendorlib}/* %{!?with_reply_plugin:%exclude %{perl_vendorlib}/Reply} %{_mandir}/man3/* @@ -101,6 +101,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon Oct 27 2014 Ralf Corsépius - 1.000005-1 +- Upstream update. + * Thu Sep 04 2014 Jitka Plesnikova - 1.000004-2 - Perl 5.20 rebuild diff --git a/sources b/sources index 6dc3b21..47618e3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3fab2a0ec2634d1fa057d6254678b79f Type-Tiny-1.000004.tar.gz +2914b0e6b35c35f657d426fba29b4520 Type-Tiny-1.000005.tar.gz From 21ca68ba612e438880f5dab1aedbc9306fc57f43 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 8 Jun 2015 19:42:03 +0200 Subject: [PATCH 13/39] Perl 5.22 rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index fa922f0..6b0f548 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000005 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -101,6 +101,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon Jun 08 2015 Jitka Plesnikova - 1.000005-2 +- Perl 5.22 rebuild + * Mon Oct 27 2014 Ralf Corsépius - 1.000005-1 - Upstream update. From 61792d3fccb57d1f5e7f7094699ffe47bd8d6805 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 13:17:52 +0000 Subject: [PATCH 14/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 6b0f548..19a2705 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000005 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -101,6 +101,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 1.000005-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Jun 08 2015 Jitka Plesnikova - 1.000005-2 - Perl 5.22 rebuild From 5bd7c80fe50b56a9aceb153afc1767ea3463e067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 21 Jul 2015 14:25:56 +0200 Subject: [PATCH 15/39] Specify all dependencies --- perl-Type-Tiny.spec | 71 ++++++++++++++++++++++++++++++++++++++------- 1 file changed, 61 insertions(+), 10 deletions(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 19a2705..92ac92b 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000005 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -14,21 +14,39 @@ BuildArch: noarch # Marked as unstable (cf. lib/Reply/Plugin/TypeTiny.pm) %bcond_with reply_plugin +BuildRequires: coreutils +BuildRequires: findutils +BuildRequires: make BuildRequires: perl >= 0:5.006001 BuildRequires: perl(B) +BuildRequires: perl(B::Deparse) +BuildRequires: perl(Carp) +BuildRequires: perl(Config) +BuildRequires: perl(constant) BuildRequires: perl(CPAN::Meta::Requirements) +BuildRequires: perl(Data::Dumper) +BuildRequires: perl(Encode) BuildRequires: perl(Exporter::Tiny) >= 0.026 -BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17 +BuildRequires: perl(feature) +BuildRequires: perl(lib) +BuildRequires: perl(Math::BigFloat) BuildRequires: perl(Scalar::Util) -BuildRequires: perl(Sub::Name) +BuildRequires: perl(Test::Fatal) BuildRequires: perl(Test::Moose) BuildRequires: perl(Test::More) >= 0.96 +BuildRequires: perl(Test::Requires) BuildRequires: perl(Test::Tester) >= 0.109 BuildRequires: perl(Text::Balanced) BuildRequires: perl(overload) BuildRequires: perl(strict) +BuildRequires: perl(threads) +BuildRequires: perl(Tie::Array) +BuildRequires: perl(Tie::Hash) +BuildRequires: perl(Tie::Scalar) BuildRequires: perl(utf8) BuildRequires: perl(warnings) +BuildRequires: sed # optional # N/A in Fedora: BuildRequires: perl(Class::InsideOut) @@ -36,30 +54,56 @@ BuildRequires: perl(Class::ISA) BuildRequires: perl(Devel::Hide) BuildRequires: perl(Devel::LexAlias) >= 0.05 BuildRequires: perl(Devel::StackTrace) +BuildRequires: perl(Exporter) >= 5.59 # N/A in Fedora: BuildRequires: perl(Function::Parameters) -BuildRequires: perl(JSON::PP) +BuildRequires: perl(JSON::PP) >= 2.27105 # N/A in Fedora: BuildRequires: perl(Kavorka) # N/A in Fedora: BuildRequires: perl(match::simple) +BuildRequires: perl(Method::Generate::Accessor) BuildRequires: perl(Moo) +BuildRequires: perl(Moo::Role) # N/A in Fedora: BuildRequires: perl(Moops) -BuildRequires: perl(Moose) +BuildRequires: perl(Moose) >= 2.0400 +BuildRequires: perl(Moose::Meta::TypeCoercion) +BuildRequires: perl(Moose::Meta::TypeCoercion::Union) +BuildRequires: perl(Moose::Meta::TypeConstraint) +BuildRequires: perl(Moose::Meta::TypeConstraint::Class) +BuildRequires: perl(Moose::Meta::TypeConstraint::DuckType) +BuildRequires: perl(Moose::Meta::TypeConstraint::Enum) +BuildRequires: perl(Moose::Meta::TypeConstraint::Union) +BuildRequires: perl(Moose::Util::TypeConstraints) +BuildRequires: perl(MooseX::Getopt) >= 0.63 BuildRequires: perl(MooseX::Types) +BuildRequires: perl(MooseX::Types::Common) +BuildRequires: perl(MooseX::Types::Moose) BuildRequires: perl(Mouse) -BuildRequires: perl(MooseX::Getopt) +BuildRequires: perl(Mouse::Meta::TypeConstraint) +BuildRequires: perl(Mouse::Util) +BuildRequires: perl(Mouse::Util::TypeConstraints) BuildRequires: perl(MouseX::Types) BuildRequires: perl(MooseX::Types::Common) +BuildRequires: perl(MouseX::Types::Moose) +BuildRequires: perl(mro) BuildRequires: perl(Object::Accessor) +BuildRequires: perl(re) %{?with_reply_plugin:BuildRequires: perl(Reply::Plugin)} -# N/A in Fedora: BuildRequires: perl(Return::Type) +# N/A in Fedora: BuildRequires: perl(Return::Type) >= 0.004 BuildRequires: perl(Role::Tiny) -# N/A in Fedora: BuildRequires: perl(Sub::Exporter::Lexical) +BuildRequires: perl(Role::Tiny::With) +# N/A in Fedora: BuildRequires: perl(Sub::Exporter::Lexical) >= 0.092291 +BuildRequires: perl(Sub::Name) +BuildRequires: perl(Sub::Quote) # N/A in Fedora: BuildRequires: perl(Switcheroo) %{?with_reply_plugin:BuildRequires: perl(Term::ANSIColor)} BuildRequires: perl(Test::Warnings) # N/A in Fedora: BuildRequires: perl(Type::Tie) -# N/A in Fedora: BuildRequires: perl(Validation::Class) +# N/A in Fedora: BuildRequires: perl(Validation::Class) >= 7.900017 +# N/A in Fedora: BuildRequires: perl(Validation::Class::Simple) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Requires: perl(B::Deparse) +Requires: perl(Carp) +Requires: perl(Data::Dumper) %description Type::Tiny is a tiny class for creating Moose-like type constraint objects @@ -73,6 +117,9 @@ Test::TypeTiny module. %prep %setup -q -n Type-Tiny-%{version} +# Remove bundled modules +rm -r ./inc +sed -i -e '/^inc\//d' MANIFEST %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -89,7 +136,8 @@ find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; make test %files -%doc Changes COPYRIGHT CREDITS LICENSE NEWS README +%license LICENSE +%doc Changes COPYRIGHT CREDITS NEWS README %{perl_vendorlib}/* %{!?with_reply_plugin:%exclude %{perl_vendorlib}/Reply} %{_mandir}/man3/* @@ -101,6 +149,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Tue Jul 21 2015 Petr Pisar - 1.000005-4 +- Specify all dependencies (bug #1245096) + * Thu Jun 18 2015 Fedora Release Engineering - 1.000005-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 6ef387fb84eebb75ae38277c95bb4e6d7267f873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Fri, 29 Jan 2016 09:53:12 +0100 Subject: [PATCH 16/39] Modernize spec. - Add COPYRIGHT to %license. --- perl-Type-Tiny.spec | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 92ac92b..4fcbe93 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000005 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -122,22 +122,19 @@ rm -r ./inc sed -i -e '/^inc\//d' MANIFEST %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 make %{?_smp_mflags} %install make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT - -find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; - %{_fixperms} $RPM_BUILD_ROOT/* %check make test %files -%license LICENSE -%doc Changes COPYRIGHT CREDITS NEWS README +%doc Changes CREDITS NEWS README +%license LICENSE COPYRIGHT %{perl_vendorlib}/* %{!?with_reply_plugin:%exclude %{perl_vendorlib}/Reply} %{_mandir}/man3/* @@ -149,6 +146,10 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Fri Jan 29 2016 Ralf Corsépius - 1.000005-5 +- Modernize spec. +- Add COPYRIGHT to %%license. + * Tue Jul 21 2015 Petr Pisar - 1.000005-4 - Specify all dependencies (bug #1245096) From 51340d01dc7fab0ccfba14bbed40c7b7be7bbfd6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 16:28:56 +0000 Subject: [PATCH 17/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 4fcbe93..c2460bd 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000005 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -146,6 +146,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.000005-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jan 29 2016 Ralf Corsépius - 1.000005-5 - Modernize spec. - Add COPYRIGHT to %%license. From cc497ec7fcebcbea041f0d1f8af2e4dc68a9b18e Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 16 May 2016 23:06:07 +0200 Subject: [PATCH 18/39] Perl 5.24 rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index c2460bd..02430fc 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000005 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -146,6 +146,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon May 16 2016 Jitka Plesnikova - 1.000005-7 +- Perl 5.24 rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.000005-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From e2a4deee12ffb45f79fffa65e43e8812af8ca7c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 24 Jun 2016 09:47:24 +0200 Subject: [PATCH 19/39] Mandatory Perl build-requires added --- perl-Type-Tiny.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 02430fc..6afb002 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -18,6 +18,7 @@ BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl >= 0:5.006001 +BuildRequires: perl-generators BuildRequires: perl(B) BuildRequires: perl(B::Deparse) BuildRequires: perl(Carp) From 63dfd23aa46a4442aa9276afb1ba3cca8e0d118d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Thu, 2 Feb 2017 15:00:07 +0100 Subject: [PATCH 20/39] Update to 1.000006. Add BuildRequires: perl(Function::Parameters) --- .gitignore | 2 +- perl-Type-Tiny.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index a593447..5636276 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.000005.tar.gz +/Type-Tiny-1.000006.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 6afb002..a01126c 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny -Version: 1.000005 -Release: 7%{?dist} +Version: 1.000006 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -56,7 +56,7 @@ BuildRequires: perl(Devel::Hide) BuildRequires: perl(Devel::LexAlias) >= 0.05 BuildRequires: perl(Devel::StackTrace) BuildRequires: perl(Exporter) >= 5.59 -# N/A in Fedora: BuildRequires: perl(Function::Parameters) +BuildRequires: perl(Function::Parameters) BuildRequires: perl(JSON::PP) >= 2.27105 # N/A in Fedora: BuildRequires: perl(Kavorka) # N/A in Fedora: BuildRequires: perl(match::simple) @@ -147,6 +147,10 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Feb 02 2017 Ralf Corsépius - 1.000006-1 +- Update to 1.000006. +- Add BuildRequires: perl(Function::Parameters) + * Mon May 16 2016 Jitka Plesnikova - 1.000005-7 - Perl 5.24 rebuild diff --git a/sources b/sources index 47618e3..79442cf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2914b0e6b35c35f657d426fba29b4520 Type-Tiny-1.000005.tar.gz +SHA512 (Type-Tiny-1.000006.tar.gz) = 62a8ffbf14615aa2655e4f49755eed86560f03f5e9172a97950567458fe0de8dd1e29c1c4483d7e9413b9f77a1c7844e4839b4fb4c0afd722b2abbbf413ce3c8 From dd294fe3008aa3b501f822147ab419bbd3b97f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Thu, 9 Feb 2017 05:21:18 +0100 Subject: [PATCH 21/39] Add more optional parts of testsuite: BR: perl(Sub::Exporter::Lexical). BR: perl(Types::Path::Tiny). --- perl-Type-Tiny.spec | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index a01126c..60d571c 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000006 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -91,13 +91,14 @@ BuildRequires: perl(re) # N/A in Fedora: BuildRequires: perl(Return::Type) >= 0.004 BuildRequires: perl(Role::Tiny) BuildRequires: perl(Role::Tiny::With) -# N/A in Fedora: BuildRequires: perl(Sub::Exporter::Lexical) >= 0.092291 +BuildRequires: perl(Sub::Exporter::Lexical) >= 0.092291 BuildRequires: perl(Sub::Name) BuildRequires: perl(Sub::Quote) # N/A in Fedora: BuildRequires: perl(Switcheroo) %{?with_reply_plugin:BuildRequires: perl(Term::ANSIColor)} BuildRequires: perl(Test::Warnings) # N/A in Fedora: BuildRequires: perl(Type::Tie) +BuildRequires: perl(Types::Path::Tiny) # N/A in Fedora: BuildRequires: perl(Validation::Class) >= 7.900017 # N/A in Fedora: BuildRequires: perl(Validation::Class::Simple) @@ -147,6 +148,11 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Feb 09 2017 Ralf Corsépius - 1.000006-2 +- Add more optional parts of testsuite: + - BR: perl(Sub::Exporter::Lexical). + - BR: perl(Types::Path::Tiny). + * Thu Feb 02 2017 Ralf Corsépius - 1.000006-1 - Update to 1.000006. - Add BuildRequires: perl(Function::Parameters) From f69633f63bf1b7ca72a9688c55167a3a146d9fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Thu, 9 Feb 2017 14:55:28 +0100 Subject: [PATCH 22/39] Add further optional part of testsuite: BR: perl(Type::Tie). --- perl-Type-Tiny.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 60d571c..cb3c69f 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000006 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -97,7 +97,7 @@ BuildRequires: perl(Sub::Quote) # N/A in Fedora: BuildRequires: perl(Switcheroo) %{?with_reply_plugin:BuildRequires: perl(Term::ANSIColor)} BuildRequires: perl(Test::Warnings) -# N/A in Fedora: BuildRequires: perl(Type::Tie) +BuildRequires: perl(Type::Tie) BuildRequires: perl(Types::Path::Tiny) # N/A in Fedora: BuildRequires: perl(Validation::Class) >= 7.900017 # N/A in Fedora: BuildRequires: perl(Validation::Class::Simple) @@ -148,6 +148,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Feb 09 2017 Ralf Corsépius - 1.000006-3 +- Add further optional part of testsuite: BR: perl(Type::Tie). + * Thu Feb 09 2017 Ralf Corsépius - 1.000006-2 - Add more optional parts of testsuite: - BR: perl(Sub::Exporter::Lexical). From 755d6c7338649a905c2e63286cd772c2aa7dbf3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Sat, 11 Feb 2017 04:11:08 +0100 Subject: [PATCH 23/39] Add further optional part of testsuite: BR: perl(Return::Type). --- perl-Type-Tiny.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index cb3c69f..d8bf1d8 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000006 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -88,7 +88,7 @@ BuildRequires: perl(mro) BuildRequires: perl(Object::Accessor) BuildRequires: perl(re) %{?with_reply_plugin:BuildRequires: perl(Reply::Plugin)} -# N/A in Fedora: BuildRequires: perl(Return::Type) >= 0.004 +BuildRequires: perl(Return::Type) >= 0.004 BuildRequires: perl(Role::Tiny) BuildRequires: perl(Role::Tiny::With) BuildRequires: perl(Sub::Exporter::Lexical) >= 0.092291 @@ -148,6 +148,9 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Fri Feb 10 2017 Ralf Corsépius - 1.000006-4 +- Add further optional part of testsuite: BR: perl(Return::Type). + * Thu Feb 09 2017 Ralf Corsépius - 1.000006-3 - Add further optional part of testsuite: BR: perl(Type::Tie). From 0b21df7fe3bd2c7cfdf78e2ab76eb205fcaa52f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Tue, 14 Feb 2017 03:59:23 +0100 Subject: [PATCH 24/39] Add further optional part of testsuites: BR: perl(Validation::Class), perl(Validation::Class::Simple). --- perl-Type-Tiny.spec | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index d8bf1d8..02968cf 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000006 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -16,7 +16,8 @@ BuildArch: noarch BuildRequires: coreutils BuildRequires: findutils -BuildRequires: make +BuildRequires: %{__make} +BuildRequires: %{__perl} BuildRequires: perl >= 0:5.006001 BuildRequires: perl-generators BuildRequires: perl(B) @@ -99,8 +100,8 @@ BuildRequires: perl(Sub::Quote) BuildRequires: perl(Test::Warnings) BuildRequires: perl(Type::Tie) BuildRequires: perl(Types::Path::Tiny) -# N/A in Fedora: BuildRequires: perl(Validation::Class) >= 7.900017 -# N/A in Fedora: BuildRequires: perl(Validation::Class::Simple) +BuildRequires: perl(Validation::Class) >= 7.900017 +BuildRequires: perl(Validation::Class::Simple) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: perl(B::Deparse) @@ -125,14 +126,14 @@ sed -i -e '/^inc\//d' MANIFEST %build %{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 -make %{?_smp_mflags} +%{__make} %{?_smp_mflags} %install -make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT +%{__make} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT %{_fixperms} $RPM_BUILD_ROOT/* %check -make test +%{__make} test %files %doc Changes CREDITS NEWS README @@ -148,6 +149,10 @@ make test %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon Feb 13 2017 Ralf Corsépius - 1.000006-5 +- Add further optional part of testsuites: BR: perl(Validation::Class), + perl(Validation::Class::Simple). + * Fri Feb 10 2017 Ralf Corsépius - 1.000006-4 - Add further optional part of testsuite: BR: perl(Return::Type). From 566fcc00b656e48165a0aed05d4a33d9ada53c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Mon, 20 Mar 2017 12:30:13 +0100 Subject: [PATCH 25/39] Don't BR: perl(Return::Type), perl(Types::Path::Tiny) if perl_bootstrapping (From ppisar@redhat.com, RHBZ#1433344) --- perl-Type-Tiny.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 02968cf..52548d3 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000006 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -89,7 +89,10 @@ BuildRequires: perl(mro) BuildRequires: perl(Object::Accessor) BuildRequires: perl(re) %{?with_reply_plugin:BuildRequires: perl(Reply::Plugin)} +%if !%{defined perl_bootstrap} +# Build-cycle: perl-Return-Type → perl-Type-Tiny BuildRequires: perl(Return::Type) >= 0.004 +%endif BuildRequires: perl(Role::Tiny) BuildRequires: perl(Role::Tiny::With) BuildRequires: perl(Sub::Exporter::Lexical) >= 0.092291 @@ -99,7 +102,10 @@ BuildRequires: perl(Sub::Quote) %{?with_reply_plugin:BuildRequires: perl(Term::ANSIColor)} BuildRequires: perl(Test::Warnings) BuildRequires: perl(Type::Tie) +%if !%{defined perl_bootstrap} +# Build-cycle: perl-Types-Path-Tiny → perl-Type-Tiny BuildRequires: perl(Types::Path::Tiny) +%endif BuildRequires: perl(Validation::Class) >= 7.900017 BuildRequires: perl(Validation::Class::Simple) @@ -149,6 +155,10 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon Mar 20 2017 Ralf Corsépius - 1.000006-6 +- Don't BR: perl(Return::Type), perl(Types::Path::Tiny) if perl_bootstrapping + (From ppisar@redhat.com, RHBZ#1433344) + * Mon Feb 13 2017 Ralf Corsépius - 1.000006-5 - Add further optional part of testsuites: BR: perl(Validation::Class), perl(Validation::Class::Simple). From dec423b593fb2f2d201737600a640f0fc8a291a3 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Tue, 6 Jun 2017 20:43:05 +0200 Subject: [PATCH 26/39] Perl 5.26 rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 52548d3..5941335 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.000006 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -155,6 +155,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Tue Jun 06 2017 Jitka Plesnikova - 1.000006-7 +- Perl 5.26 rebuild + * Mon Mar 20 2017 Ralf Corsépius - 1.000006-6 - Don't BR: perl(Return::Type), perl(Types::Path::Tiny) if perl_bootstrapping (From ppisar@redhat.com, RHBZ#1433344) From 388f106da4588cb55adaada85fa5daebdc8eb5aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Wed, 7 Jun 2017 15:51:42 +0200 Subject: [PATCH 27/39] Update to 1.002000. --- .gitignore | 2 +- perl-Type-Tiny.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5636276..989a9e9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.000006.tar.gz +/Type-Tiny-1.002000.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 5941335..ebacbd1 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny -Version: 1.000006 -Release: 7%{?dist} +Version: 1.002000 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -155,6 +155,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Wed Jun 07 2017 Ralf Corsépius - 1.002000-1 +- Update to 1.002000. + * Tue Jun 06 2017 Jitka Plesnikova - 1.000006-7 - Perl 5.26 rebuild diff --git a/sources b/sources index 79442cf..03f1578 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Type-Tiny-1.000006.tar.gz) = 62a8ffbf14615aa2655e4f49755eed86560f03f5e9172a97950567458fe0de8dd1e29c1c4483d7e9413b9f77a1c7844e4839b4fb4c0afd722b2abbbf413ce3c8 +SHA512 (Type-Tiny-1.002000.tar.gz) = da9e150011f898bd2af2adafb12124505b651f7b41e4cd9177bcf8e4148f7a7732014292f9f2099bc0b2582f4ee1809009cabe74df8002d182eceb855f6d446a From f0f7376f6126035ee3a606e2e0639879bdd3d709 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 7 Jun 2017 16:09:36 +0200 Subject: [PATCH 28/39] Perl 5.26 re-rebuild of bootstrapped packages --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index ebacbd1..6cdab9a 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.002000 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -155,6 +155,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Wed Jun 07 2017 Jitka Plesnikova - 1.002000-2 +- Perl 5.26 re-rebuild of bootstrapped packages + * Wed Jun 07 2017 Ralf Corsépius - 1.002000-1 - Update to 1.002000. From 4a0d15952cbdbf7e8e695a3e3d39c37fb4b42cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Wed, 21 Jun 2017 12:03:57 +0200 Subject: [PATCH 29/39] Update to 1.002001. --- .gitignore | 2 +- perl-Type-Tiny.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 989a9e9..dcc5c41 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.002000.tar.gz +/Type-Tiny-1.002001.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 6cdab9a..22967c1 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny -Version: 1.002000 -Release: 2%{?dist} +Version: 1.002001 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -88,6 +88,7 @@ BuildRequires: perl(MouseX::Types::Moose) BuildRequires: perl(mro) BuildRequires: perl(Object::Accessor) BuildRequires: perl(re) +# N/A in Fedora: BuildRequires: perl(Ref::Util::XS) > 0.100 %{?with_reply_plugin:BuildRequires: perl(Reply::Plugin)} %if !%{defined perl_bootstrap} # Build-cycle: perl-Return-Type → perl-Type-Tiny @@ -155,6 +156,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Wed Jun 21 2017 Ralf Corsépius - 1.002001-1 +- Update to 1.002001. + * Wed Jun 07 2017 Jitka Plesnikova - 1.002000-2 - Perl 5.26 re-rebuild of bootstrapped packages diff --git a/sources b/sources index 03f1578..8cf5f91 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Type-Tiny-1.002000.tar.gz) = da9e150011f898bd2af2adafb12124505b651f7b41e4cd9177bcf8e4148f7a7732014292f9f2099bc0b2582f4ee1809009cabe74df8002d182eceb855f6d446a +SHA512 (Type-Tiny-1.002001.tar.gz) = e499c4f113e5a327294012daac9f0cd60a42a6c40b9d0c9c523a229f574a7dd0f672f209d0596d25edcbc39b79cd2ea65791b6a5146345e75fdd1d84ee1cd161 From 03c8cb3d67f756092232405e8fe34a9b4f0f2be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 12 Jul 2017 15:20:23 +0200 Subject: [PATCH 30/39] perl dependency renamed to perl-interpreter --- perl-Type-Tiny.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 22967c1..f2a4b50 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -18,7 +18,7 @@ BuildRequires: coreutils BuildRequires: findutils BuildRequires: %{__make} BuildRequires: %{__perl} -BuildRequires: perl >= 0:5.006001 +BuildRequires: perl-interpreter >= 0:5.006001 BuildRequires: perl-generators BuildRequires: perl(B) BuildRequires: perl(B::Deparse) From 0067548195732df79fe4c8363faffe88b3bdabf0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 06:53:34 +0000 Subject: [PATCH 31/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index f2a4b50..5a4f818 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.002001 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -156,6 +156,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.002001-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Wed Jun 21 2017 Ralf Corsépius - 1.002001-1 - Update to 1.002001. From 1b2b02b588d85aef608aa70367996be143bcac50 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 02:06:39 +0000 Subject: [PATCH 32/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 5a4f818..c45b86b 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.002001 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic Group: Development/Libraries @@ -156,6 +156,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.002001-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.002001-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 6b49ef78de0839e084e753d1973ddce11fe57a8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Mon, 21 May 2018 14:29:07 +0200 Subject: [PATCH 33/39] Update to 1.002002. Add BR: perl(Ref::Util::XS). --- .gitignore | 2 +- perl-Type-Tiny.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index dcc5c41..8f3a132 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.002001.tar.gz +/Type-Tiny-1.002002.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index c45b86b..0889b93 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,9 +1,8 @@ Name: perl-Type-Tiny -Version: 1.002001 -Release: 3%{?dist} +Version: 1.002002 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic -Group: Development/Libraries URL: http://search.cpan.org/dist/Type-Tiny/ Source0: http://www.cpan.org/authors/id/T/TO/TOBYINK/Type-Tiny-%{version}.tar.gz BuildArch: noarch @@ -88,7 +87,7 @@ BuildRequires: perl(MouseX::Types::Moose) BuildRequires: perl(mro) BuildRequires: perl(Object::Accessor) BuildRequires: perl(re) -# N/A in Fedora: BuildRequires: perl(Ref::Util::XS) > 0.100 +BuildRequires: perl(Ref::Util::XS) > 0.100 %{?with_reply_plugin:BuildRequires: perl(Reply::Plugin)} %if !%{defined perl_bootstrap} # Build-cycle: perl-Return-Type → perl-Type-Tiny @@ -156,6 +155,10 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Mon May 21 2018 Ralf Corsépius - 1.002002-1 +- Update to 1.002002. +- Add BR: perl(Ref::Util::XS). + * Fri Feb 09 2018 Fedora Release Engineering - 1.002001-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild diff --git a/sources b/sources index 8cf5f91..7b931aa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Type-Tiny-1.002001.tar.gz) = e499c4f113e5a327294012daac9f0cd60a42a6c40b9d0c9c523a229f574a7dd0f672f209d0596d25edcbc39b79cd2ea65791b6a5146345e75fdd1d84ee1cd161 +SHA512 (Type-Tiny-1.002002.tar.gz) = e820d389104c73a6d9ea8795c6ef64b8e345d4b3014e82306e5de09f7ceacadce03989925dfc6d69828ef19bb4c275708fd0fb55da06875ec284e596fba6c542 From 7effcb4101ebb49938f59b686f445429ee9644c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 4 Jun 2018 14:37:24 +0200 Subject: [PATCH 34/39] cpan.org addresses moved to MetaCPAN --- perl-Type-Tiny.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 0889b93..e5cb5fc 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -3,8 +3,8 @@ Version: 1.002002 Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic -URL: http://search.cpan.org/dist/Type-Tiny/ -Source0: http://www.cpan.org/authors/id/T/TO/TOBYINK/Type-Tiny-%{version}.tar.gz +URL: https://metacpan.org/release/Type-Tiny +Source0: https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/Type-Tiny-%{version}.tar.gz BuildArch: noarch # --with reply_plugin From 1511d14430896215233a7c3ac4ca84bb2f3778de Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sat, 30 Jun 2018 05:57:18 +0200 Subject: [PATCH 35/39] Perl 5.28 rebuild --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index e5cb5fc..027e085 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.002002 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic URL: https://metacpan.org/release/Type-Tiny @@ -155,6 +155,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Sat Jun 30 2018 Jitka Plesnikova - 1.002002-2 +- Perl 5.28 rebuild + * Mon May 21 2018 Ralf Corsépius - 1.002002-1 - Update to 1.002002. - Add BR: perl(Ref::Util::XS). From f54a28e490be00d86f9a94388a30609d29bcd71b Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sat, 30 Jun 2018 21:46:20 +0200 Subject: [PATCH 36/39] Perl 5.28 re-rebuild of bootstrapped packages --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 027e085..8e99d7d 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.002002 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic URL: https://metacpan.org/release/Type-Tiny @@ -155,6 +155,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Sat Jun 30 2018 Jitka Plesnikova - 1.002002-3 +- Perl 5.28 re-rebuild of bootstrapped packages + * Sat Jun 30 2018 Jitka Plesnikova - 1.002002-2 - Perl 5.28 rebuild From 4dc93aba6f4c38df669f922216906775a52aef17 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 20:37:06 +0000 Subject: [PATCH 37/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Type-Tiny.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 8e99d7d..e8215d8 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny Version: 1.002002 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic URL: https://metacpan.org/release/Type-Tiny @@ -155,6 +155,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.002002-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Sat Jun 30 2018 Jitka Plesnikova - 1.002002-3 - Perl 5.28 re-rebuild of bootstrapped packages From 8869552352df25a3409611c9c1457fb7e8869309 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Tue, 7 Aug 2018 17:53:32 +0200 Subject: [PATCH 38/39] Update to 1.004002. Add BR: perl(IO::String). Add and comment out BR: perl(MouseX::Types::Common). --- .gitignore | 2 +- perl-Type-Tiny.spec | 12 +++++++++--- sources | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 8f3a132..7b979e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.002002.tar.gz +/Type-Tiny-1.004002.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index e8215d8..9bd2ce9 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,6 +1,6 @@ Name: perl-Type-Tiny -Version: 1.002002 -Release: 4%{?dist} +Version: 1.004002 +Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic URL: https://metacpan.org/release/Type-Tiny @@ -57,6 +57,7 @@ BuildRequires: perl(Devel::LexAlias) >= 0.05 BuildRequires: perl(Devel::StackTrace) BuildRequires: perl(Exporter) >= 5.59 BuildRequires: perl(Function::Parameters) +BuildRequires: perl(IO::String) BuildRequires: perl(JSON::PP) >= 2.27105 # N/A in Fedora: BuildRequires: perl(Kavorka) # N/A in Fedora: BuildRequires: perl(match::simple) @@ -82,7 +83,7 @@ BuildRequires: perl(Mouse::Meta::TypeConstraint) BuildRequires: perl(Mouse::Util) BuildRequires: perl(Mouse::Util::TypeConstraints) BuildRequires: perl(MouseX::Types) -BuildRequires: perl(MooseX::Types::Common) +# N/A in Fedora: BuildRequires: perl(MouseX::Types::Common) BuildRequires: perl(MouseX::Types::Moose) BuildRequires: perl(mro) BuildRequires: perl(Object::Accessor) @@ -155,6 +156,11 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Tue Aug 07 2018 Ralf Corsépius - 1.004002-1 +- Update to 1.004002. +- Add BR: perl(IO::String). +- Add and comment out BR: perl(MouseX::Types::Common). + * Fri Jul 13 2018 Fedora Release Engineering - 1.002002-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 7b931aa..7d7e773 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Type-Tiny-1.002002.tar.gz) = e820d389104c73a6d9ea8795c6ef64b8e345d4b3014e82306e5de09f7ceacadce03989925dfc6d69828ef19bb4c275708fd0fb55da06875ec284e596fba6c542 +SHA512 (Type-Tiny-1.004002.tar.gz) = fcdd8740e1ef6a2c5d214a54b57e65ebd222188377ebdd7bbdadc74741f3a5d00ba4a7490628bfb7cc937a32f5d5a578963ea1b6208e8fb99f095f2c3239cf82 From 0e597cc18e5fce53c4425bb35f61fc9281775cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Fri, 11 Jan 2019 05:22:02 +0100 Subject: [PATCH 39/39] Update to 1.004004. --- .gitignore | 2 +- perl-Type-Tiny.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 7b979e7..62f3bae 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/Type-Tiny-1.004002.tar.gz +/Type-Tiny-1.004004.tar.gz diff --git a/perl-Type-Tiny.spec b/perl-Type-Tiny.spec index 9bd2ce9..12ba8c9 100644 --- a/perl-Type-Tiny.spec +++ b/perl-Type-Tiny.spec @@ -1,5 +1,5 @@ Name: perl-Type-Tiny -Version: 1.004002 +Version: 1.004004 Release: 1%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL+ or Artistic @@ -27,7 +27,7 @@ BuildRequires: perl(constant) BuildRequires: perl(CPAN::Meta::Requirements) BuildRequires: perl(Data::Dumper) BuildRequires: perl(Encode) -BuildRequires: perl(Exporter::Tiny) >= 0.026 +BuildRequires: perl(Exporter::Tiny) >= 0.040 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17 BuildRequires: perl(feature) BuildRequires: perl(lib) @@ -156,6 +156,9 @@ sed -i -e '/^inc\//d' MANIFEST %{_mandir}/man3/Test::TypeTiny.3pm* %changelog +* Fri Jan 11 2019 Ralf Corsépius - 1.004004-1 +- Update to 1.004004. + * Tue Aug 07 2018 Ralf Corsépius - 1.004002-1 - Update to 1.004002. - Add BR: perl(IO::String). diff --git a/sources b/sources index 7d7e773..456583e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Type-Tiny-1.004002.tar.gz) = fcdd8740e1ef6a2c5d214a54b57e65ebd222188377ebdd7bbdadc74741f3a5d00ba4a7490628bfb7cc937a32f5d5a578963ea1b6208e8fb99f095f2c3239cf82 +SHA512 (Type-Tiny-1.004004.tar.gz) = a1e09c5a3369e0a9ea8e172d86e68e818a720c5c4d633103a442fe389f7a8a7b4a03b2487ffd09f184caf4eca94ef471cc9293b04557b8d4dd260649b4121673