Accepting request 811632 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/811632 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-IO-stringy?expand=0&rev=25
This commit is contained in:
commit
e7bd460fb5
BIN
IO-Stringy-2.113.tar.gz
(Stored with Git LFS)
Normal file
BIN
IO-Stringy-2.113.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8c67fd6608c3c4e74f7324f1404a856c331dbf48d9deda6aaa8296ea41bf199d
|
|
||||||
size 41515
|
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 4 11:29:16 UTC 2020 - Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com>
|
||||||
|
|
||||||
|
- Update to 2.113
|
||||||
|
* Changes in 2.113 2020-01-16
|
||||||
|
- Get rid of use of Common and TBone in all tests
|
||||||
|
- Convert to Dist::Zilla for authoring
|
||||||
|
- Cleaned up some of the docs. Needs more.
|
||||||
|
* Changes in 2.112 2019-12-13
|
||||||
|
- Change use vars qw() to our $whatever instead. 'our'
|
||||||
|
- Hide IO::WrapTie subclasses from PAUSE
|
||||||
|
- Convert README to README.md
|
||||||
|
- Fix the documentation in the main module, IO::Stringy to better indicate
|
||||||
|
where to get info and how to use the module
|
||||||
|
- Add a LICENSE file
|
||||||
|
- Get rid of the set-version.pl file as it's no longer needed
|
||||||
|
- update t/IO_InnerFile.t to use Test::More and a proper TEMP file
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 14 15:54:33 CET 2019 - kukuk@suse.de
|
Mon Jan 14 15:54:33 CET 2019 - kukuk@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-IO-stringy
|
# spec file for package perl-IO-stringy
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# 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,35 +17,49 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-IO-stringy
|
Name: perl-IO-stringy
|
||||||
Version: 2.111
|
Version: 2.113
|
||||||
Release: 0
|
Release: 0
|
||||||
#Upstream: CHECK(GPL-1.0+ or Artistic-1.0)
|
%define cpan_name IO-Stringy
|
||||||
%define cpan_name IO-stringy
|
Summary: I/O on in-core objects like strings and arrays
|
||||||
Summary: IO::stringy Perl module
|
|
||||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/IO-stringy/
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: http://www.cpan.org/authors/id/D/DS/DSKOLL/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
BuildRequires: perl(Test::More) >= 0.88
|
||||||
|
BuildRequires: perl(Test::Tester)
|
||||||
|
BuildRequires: perl(parent)
|
||||||
|
Requires: perl(parent)
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
IO::stringy Perl module
|
This toolkit primarily provides modules for performing both traditional and
|
||||||
|
object-oriented i/o) on things _other_ than normal filehandles; in
|
||||||
|
particular, IO::Scalar, IO::ScalarArray, and IO::Lines.
|
||||||
|
|
||||||
|
In the more-traditional IO::Handle front, we have IO::AtomicFile which may
|
||||||
|
be used to painlessly create files which are updated atomically.
|
||||||
|
|
||||||
|
And in the "this-may-prove-useful" corner, we have IO::Wrap, whose exported
|
||||||
|
wraphandle() function will clothe anything that's not a blessed object in
|
||||||
|
an IO::Handle-like wrapper... so you can just use OO syntax and stop
|
||||||
|
worrying about whether your function's caller handed you a string, a
|
||||||
|
globref, or a FileHandle.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
find . -type f -print0 | xargs -0 chmod 644
|
find . -type f -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@ -54,7 +68,7 @@ find . -type f -print0 | xargs -0 chmod 644
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%license COPYING
|
%doc Changes contrib examples README
|
||||||
%doc examples README
|
%license COPYING LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user