From: jk7744.park Date: Tue, 8 Sep 2015 17:28:33 +0000 (+0900) Subject: tizen 2.3.1 release X-Git-Tag: submit/tizen_2.3.1/20150915.100539^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0deb58ac5f62898168b4041fea8d5f719ec086f7;p=toolchains%2Fperl-Test-Pod.git tizen 2.3.1 release --- diff --git a/Build.PL b/Build.PL index b9328be..6790430 100644 --- a/Build.PL +++ b/Build.PL @@ -6,17 +6,15 @@ Module::Build->new( module_name => 'Test::Pod', license => 'perl', configure_requires => { 'Module::Build' => '0.30', }, - create_makefile_pl => 'traditional', build_requires => { - 'File::Spec' => 0, - 'Pod::Simple' => '3.05', - 'Test::More' => '0.62', + 'Module::Build' => '0.30', + 'Test::More' => '0.70', }, requires => { - 'File::Spec' => 0, - 'Pod::Simple' => '3.05', + 'Pod::Simple' => '3.07', + 'Test::More' => '0.70',, 'Test::Builder::Tester' => '1.02', - 'Test::More' => '0.62', + 'File::Spec' => 0, }, meta_merge => { resources => { diff --git a/Changes b/Changes index 7b0d729..c40de1f 100644 --- a/Changes +++ b/Changes @@ -1,21 +1,5 @@ Change log for Test::Pod -1.45 2011-03-09T20:00:59 - * Removed Module::Build from `build_requires`, since it does nothing - out-of-the ordinary, and this keeps it out of the `Makefile.PL`'s - `PM_PREREQ`. Per gripe from Peter Scott. - -1.44 2010-04-26T17:33:02 - * Restored the `Makefile.PL` by using Module::Build::Compat's - "traditional" configuration. - -1.43 2010-04-21T02:33:59 - * Reduced prereq for Test::More to 0.62, prereq for Pod::Simple to 3.05, - and added File::Spec to the list of prereqs. The prerequisites were - needlessly high, and by reducing them Test::Pod can rely on the core - versions of those modules in on Perl 5.8.8. Thanks to Chris Wittmer for - the patch. - 1.42 - 2010-03-10T19:41:20 * Fixed invalid Pod link. Thanks to Markus Sonderegger. * Changed license in the POD to "Same as Perl" to match the license listed in diff --git a/MANIFEST b/MANIFEST index eba28dc..36eb8c1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,7 +1,6 @@ Build.PL Changes lib/Test/Pod.pm -Makefile.PL MANIFEST This list of files META.yml README @@ -25,4 +24,3 @@ t/spaced-directives.pod t/spaced-directives.t t/unknown-directive.pod t/unknown-directive.t -META.json diff --git a/META.json b/META.json deleted file mode 100644 index a2d38f5..0000000 --- a/META.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "abstract" : "check for POD errors in files", - "author" : [ - "Currently maintained by David E. Wheeler, C<< >>." - ], - "dynamic_config" : 1, - "generated_by" : "Module::Build version 0.3706, CPAN::Meta::Converter version 2.110550", - "license" : [ - "perl_5" - ], - "meta-spec" : { - "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" - }, - "name" : "Test-Pod", - "prereqs" : { - "build" : { - "requires" : { - "File::Spec" : 0, - "Pod::Simple" : "3.05", - "Test::More" : "0.62" - } - }, - "configure" : { - "requires" : { - "Module::Build" : "0.30" - } - }, - "runtime" : { - "requires" : { - "File::Spec" : 0, - "Pod::Simple" : "3.05", - "Test::Builder::Tester" : "1.02", - "Test::More" : "0.62" - } - } - }, - "provides" : { - "Test::Pod" : { - "file" : "lib/Test/Pod.pm", - "version" : "1.45" - } - }, - "release_status" : "stable", - "resources" : { - "bugtracker" : { - "web" : "http://github.com/theory/test-pod/issues/" - }, - "homepage" : "http://search.cpan.org/dist/Test-Pod/", - "license" : [ - "http://dev.perl.org/licenses/" - ], - "repository" : { - "url" : "http://github.com/theory/test-pod/tree/" - } - }, - "version" : "1.45" -} diff --git a/META.yml b/META.yml index 2cb67eb..2f9c7e8 100644 --- a/META.yml +++ b/META.yml @@ -3,13 +3,11 @@ abstract: 'check for POD errors in files' author: - 'Currently maintained by David E. Wheeler, C<< >>.' build_requires: - File::Spec: 0 - Pod::Simple: 3.05 - Test::More: 0.62 + Module::Build: 0.30 + Test::More: 0.70 configure_requires: Module::Build: 0.30 -dynamic_config: 1 -generated_by: 'Module::Build version 0.3706, CPAN::Meta::Converter version 2.110550' +generated_by: 'Module::Build version 0.3601' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -18,15 +16,15 @@ name: Test-Pod provides: Test::Pod: file: lib/Test/Pod.pm - version: 1.45 + version: 1.42 requires: File::Spec: 0 - Pod::Simple: 3.05 + Pod::Simple: 3.07 Test::Builder::Tester: 1.02 - Test::More: 0.62 + Test::More: 0.70 resources: bugtracker: http://github.com/theory/test-pod/issues/ homepage: http://search.cpan.org/dist/Test-Pod/ license: http://dev.perl.org/licenses/ repository: http://github.com/theory/test-pod/tree/ -version: 1.45 +version: 1.42 diff --git a/Makefile.PL b/Makefile.PL deleted file mode 100644 index 03c64ca..0000000 --- a/Makefile.PL +++ /dev/null @@ -1,17 +0,0 @@ -# Note: this file was auto-generated by Module::Build::Compat version 0.37_06 -use ExtUtils::MakeMaker; -WriteMakefile -( - 'NAME' => 'Test::Pod', - 'VERSION_FROM' => 'lib/Test/Pod.pm', - 'PREREQ_PM' => { - 'File::Spec' => 0, - 'Pod::Simple' => '3.05', - 'Test::Builder::Tester' => '1.02', - 'Test::More' => '0.62' - }, - 'INSTALLDIRS' => 'site', - 'EXE_FILES' => [], - 'PL_FILES' => {} -) -; diff --git a/README b/README index 9e22e46..a505608 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Test/Pod version 1.45 +Test/Pod version 1.42 ===================== This library's module, Test::Pod, provides an interface for validating POD in @@ -18,8 +18,8 @@ Dependencies Test::Pod requires the following modules: -* Pod::Simple 3.05 -* Test::More 0.62 +* Pod::Simple 3.07 +* Test::More 0.70 * Test::Builder::Tester 1.02 * File::Spec diff --git a/lib/Test/Pod.pm b/lib/Test/Pod.pm index 3166d3f..b4e6644 100644 --- a/lib/Test/Pod.pm +++ b/lib/Test/Pod.pm @@ -8,11 +8,11 @@ Test::Pod - check for POD errors in files =head1 VERSION -Version 1.45 +Version 1.42 =cut -our $VERSION = '1.45'; +our $VERSION = '1.42'; =head1 SYNOPSIS diff --git a/packaging/perl-Test-Pod.changes b/packaging/perl-Test-Pod.changes index 44eeb5f..c44ae82 100644 --- a/packaging/perl-Test-Pod.changes +++ b/packaging/perl-Test-Pod.changes @@ -1,6 +1,3 @@ -* Fri Dec 7 00:19:11 UTC 2012 - tracy.graydon@intel.com -- Fix build failures. Updated to 1.45 to do it. - * Wed Jul 28 2010 Quanxian Wang - 1.42 - update to 1.42 diff --git a/packaging/perl-Test-Pod.manifest b/packaging/perl-Test-Pod.manifest deleted file mode 100644 index 017d22d..0000000 --- a/packaging/perl-Test-Pod.manifest +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packaging/perl-Test-Pod.spec b/packaging/perl-Test-Pod.spec index 2d2f516..9230119 100644 --- a/packaging/perl-Test-Pod.spec +++ b/packaging/perl-Test-Pod.spec @@ -1,50 +1,54 @@ +#specfile originally created for Fedora, modified for Moblin Linux Name: perl-Test-Pod -Version: 1.45 -Release: 3%{?dist} -Summary: Test POD files for correctness +Version: 1.42 +Release: 1 +Summary: Perl module for checking for POD errors in files + Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Test-Pod/ -Source0: http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/Test-Pod-%{version}.tar.gz -Source1001: packaging/perl-Test-Pod.manifest +Source0: http://www.cpan.org/authors/id/P/PE/PETDANCE/Test-Pod-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + BuildArch: noarch -BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(File::Spec) -BuildRequires: perl(Module::Build) >= 0.3000 -BuildRequires: perl(Pod::Simple) >= 3.05 +BuildRequires: perl(Module::Build) >= 0.30 +BuildRequires: perl(Pod::Simple) >= 3.07 BuildRequires: perl(Test::Builder::Tester) >= 1.02 -BuildRequires: perl(Test::More) >= 0.62 -Requires: perl -Requires: perl(Pod::Simple) >= 3.05 -Requires: perl(Test::Builder::Tester) >= 1.02 -Requires: perl(Test::More) >= 0.62 +BuildRequires: perl(Test::More) >= 0.70 +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description -Check POD files for errors or warnings in a test file, using Pod::Simple to do -the heavy lifting. +%{summary}. + %prep %setup -q -n Test-Pod-%{version} + %build -cp %{SOURCE1001} . -%{__perl} Build.PL installdirs=vendor +%{__perl} Build.PL --installdirs vendor ./Build + %install +rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 -find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} \; 2>/dev/null -%{_fixperms} $RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' +find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';' +chmod -R u+w $RPM_BUILD_ROOT/* + %check -#LC_ALL=C ./Build test +LC_ALL=C ./Build test + + +%clean +rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%manifest perl-Test-Pod.manifest -%doc Changes README %{perl_vendorlib}/Test/* -#%{_mandir}/man3/Test::Pod.3pm* +%doc %{_mandir}/man3/*.3pm*