forked from pool/perl-App-Cmd
Accepting request 177236 from home:coolo:update-perl
- updated to 0.320 when answering "Unknown subcommand," the commands list is sent ot STDERR (#75652) tests for using Params::Validate callback and not getting nasty stack trace (thanks, Adam Prime) Enable --help option for App::Cmd::Simple (thanks, Ryan Thompson!) add the ability to ignore non-commands (Thanks, Kent Fredric!) many improvements to tutorial (thanks, mokko!) OBS-URL: https://build.opensuse.org/request/show/177236 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-App-Cmd?expand=0&rev=23
This commit is contained in:
committed by
Git OBS Bridge
parent
70c6e2dc46
commit
2083f972bd
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a026b4a5d4da297e74359fa38df6d936eb7257dfa3509b59bc72dff0741e56f3
|
|
||||||
size 33072
|
|
3
App-Cmd-0.320.tar.gz
Normal file
3
App-Cmd-0.320.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ca6174f634bbe5b73c5f5ad6e0f3b3385568934282f4e848da8e78025b2b185e
|
||||||
|
size 38668
|
@@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 3 11:34:16 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.320
|
||||||
|
when answering "Unknown subcommand," the commands list is sent ot
|
||||||
|
STDERR (#75652)
|
||||||
|
|
||||||
|
tests for using Params::Validate callback and not getting nasty stack
|
||||||
|
trace (thanks, Adam Prime)
|
||||||
|
|
||||||
|
Enable --help option for App::Cmd::Simple (thanks, Ryan Thompson!)
|
||||||
|
|
||||||
|
add the ability to ignore non-commands (Thanks, Kent Fredric!)
|
||||||
|
|
||||||
|
many improvements to tutorial (thanks, mokko!)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 28 13:39:06 UTC 2012 - coolo@suse.com
|
Mon May 28 13:39:06 UTC 2012 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-App-Cmd
|
# spec file for package perl-App-Cmd
|
||||||
#
|
#
|
||||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,10 +17,10 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-App-Cmd
|
Name: perl-App-Cmd
|
||||||
Version: 0.318
|
Version: 0.320
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name App-Cmd
|
%define cpan_name App-Cmd
|
||||||
Summary: Write command line apps with less suffering
|
Summary: write command line apps with less suffering
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/App-Cmd/
|
Url: http://search.cpan.org/dist/App-Cmd/
|
||||||
@@ -55,9 +55,11 @@ BuildRequires: perl(parent)
|
|||||||
#BuildRequires: perl(App::Cmd::Tester::CaptureExternal)
|
#BuildRequires: perl(App::Cmd::Tester::CaptureExternal)
|
||||||
#BuildRequires: perl(Test::BrokenCmd)
|
#BuildRequires: perl(Test::BrokenCmd)
|
||||||
#BuildRequires: perl(Test::BrokenCmd::Command)
|
#BuildRequires: perl(Test::BrokenCmd::Command)
|
||||||
|
#BuildRequires: perl(Test::IgnoreCommand)
|
||||||
#BuildRequires: perl(Test::MyCmd)
|
#BuildRequires: perl(Test::MyCmd)
|
||||||
#BuildRequires: perl(Test::MyCmdAbbrev)
|
#BuildRequires: perl(Test::MyCmdAbbrev)
|
||||||
#BuildRequires: perl(Test::MySimple)
|
#BuildRequires: perl(Test::MySimple)
|
||||||
|
#BuildRequires: perl(Test::WithCallback)
|
||||||
#BuildRequires: perl(Test::WithSetup)
|
#BuildRequires: perl(Test::WithSetup)
|
||||||
#BuildRequires: perl(Test::WSNCC)
|
#BuildRequires: perl(Test::WSNCC)
|
||||||
#BuildRequires: perl(Test::WSOF)
|
#BuildRequires: perl(Test::WSOF)
|
||||||
@@ -84,10 +86,12 @@ manpage.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
# MANUAL
|
||||||
%if 0%{?suse_version} <= 1110
|
%if 0%{?suse_version} <= 1110
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
sed -i "s|__vendorperl__|%{perl_vendorlib}|g" Makefile.PL t/*.t
|
sed -i "s|__vendorperl__|%{perl_vendorlib}|g" Makefile.PL t/*.t
|
||||||
%endif
|
%endif
|
||||||
|
find . -type f -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
|
Reference in New Issue
Block a user