forked from pool/perl-PPIx-Utilities
Compare commits
10 Commits
03b3e5cf99
...
factory
Author | SHA256 | Date | |
---|---|---|---|
23047913b7 | |||
8ef61f8cdc | |||
|
46afcd0d22 | ||
|
35e04b200c | ||
|
efff4dcfeb | ||
|
ad66a15014 | ||
|
382a7c4c86 | ||
|
afea7a4ee2 | ||
|
bd6564a9cb | ||
|
be631b0350 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b825747c5be883769d9fc29a0350ff67a912341664642f0828db344bb6fb011f
|
||||
size 18607
|
3
PPIx-Utilities-1.001000.tar.gz
Normal file
3
PPIx-Utilities-1.001000.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:03a483386fd6a2c808f09778d44db06b02c3140fb24ba4bf12f851f46d3bcb9b
|
||||
size 25707
|
@@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 13 10:58:19 UTC 2019 - Sergio Lindo Mansilla <slindomansilla@suse.com>
|
||||
|
||||
- Remove trailing dot from the summary
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 1 10:39:06 UTC 2011 - coolo@opensuse.org
|
||||
|
||||
- updated to 1.001000
|
||||
Add support for Const::Fast to PPIx::Utilities::Statement.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 1 13:34:40 UTC 2010 - coolo@novell.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-PPIx-Utilities (Version 1.000001)
|
||||
# spec file for package perl-PPIx-Utilities
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -15,53 +15,36 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: perl-PPIx-Utilities
|
||||
Version: 1.001000
|
||||
Release: 0
|
||||
%define cpan_name PPIx-Utilities
|
||||
Summary: Extensions to PPI
|
||||
Version: 1.000001
|
||||
Release: 1
|
||||
License: GPL+ or Artistic
|
||||
Summary: Extensions to L<PPI|PPI>
|
||||
License: GPL-1.0+ or Artistic-1.0
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/PPIx-Utilities/
|
||||
#Source: http://www.cpan.org/modules/by-module/PPIx/PPIx-Utilities-%{version}.tar.gz
|
||||
Source: %{cpan_name}-%{version}.tar.bz2
|
||||
Source: http://www.cpan.org/authors/id/E/EL/ELLIOTJS/%{cpan_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%{perl_requires}
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl(Module::Build)
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(base)
|
||||
BuildRequires: perl(Data::Dumper)
|
||||
BuildRequires: perl(Exception::Class)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(Module::Build)
|
||||
BuildRequires: perl(PPI) >= 1.208
|
||||
BuildRequires: perl(PPI::Document) >= 1.208
|
||||
BuildRequires: perl(PPI::Document::Fragment) >= 1.208
|
||||
BuildRequires: perl(PPI::Dumper) >= 1.208
|
||||
BuildRequires: perl(Readonly)
|
||||
BuildRequires: perl(Readonly::XS)
|
||||
BuildRequires: perl(Scalar::Util)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(Task::Weaken)
|
||||
BuildRequires: perl(Test::Deep)
|
||||
BuildRequires: perl(warnings)
|
||||
#
|
||||
Requires: perl(base)
|
||||
Requires: perl(Exception::Class)
|
||||
Requires: perl(Exporter)
|
||||
Requires: perl(PPI) >= 1.208
|
||||
Requires: perl(PPI::Document::Fragment) >= 1.208
|
||||
Requires: perl(Readonly)
|
||||
Requires: perl(Readonly::XS)
|
||||
Requires: perl(Scalar::Util)
|
||||
Requires: perl(strict)
|
||||
Requires: perl(Task::Weaken)
|
||||
Requires: perl(warnings)
|
||||
#
|
||||
Recommends: perl(Readonly::XS)
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
This is a collection of functions for dealing with PPI objects, many of
|
||||
@@ -70,29 +53,25 @@ kind of PPI class they relate to, by replacing the "PPI" at the front of
|
||||
the module name with "PPIx::Utilities", e.g. functionality related to
|
||||
PPI::Nodes is in PPIx::Utilities::Node.
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Elliot Shank <perl@galumph.com>
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
%build
|
||||
%{__perl} Build.PL installdirs=vendor
|
||||
./Build
|
||||
./Build build flags=%{?_smp_mflags}
|
||||
|
||||
%check
|
||||
./Build test
|
||||
|
||||
%install
|
||||
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
|
||||
./Build install destdir=%{buildroot} create_packlist=0
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
%{__rm} -rf $RPM_BUILD_ROOT
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,-)
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes LICENSE README xt
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user