Accepting request 336477 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/336477 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-CSV-Encoded?expand=0&rev=2
This commit is contained in:
committed by
Git OBS Bridge
parent
1d4321ebc9
commit
a061bbd64f
@@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 5 09:08:44 UTC 2015 - coolo@suse.com
|
||||
|
||||
- updated to 0.23
|
||||
see /usr/share/doc/packages/perl-Text-CSV-Encoded/Changes
|
||||
|
||||
0.23 Sun Oct 4 12:44 2015
|
||||
- Apply patch from https://rt.cpan.org/Ticket/Display.html?id=93438
|
||||
- Doc fixes as per https://rt.cpan.org/Ticket/Display.html?id=89599
|
||||
- Make dist metadata point to github and zarquon's fork
|
||||
|
||||
0.22
|
||||
- Text::CSV 1.31 requierd in Makefile.PL (even works in minor version)
|
||||
|
||||
0.21 Thu Jun 13 14:31:12 2013
|
||||
- Text::CSV 1.30 requierd in Makefile.PL (even works in minor version)
|
||||
|
||||
0.20 Wed Jun 12 13:18:02 2013
|
||||
- update modules and test for Text::CSV_XS 0.99 and Text::CSV_PP 1.30
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 07 23:16:02 CET 2011 - pascal.bleser@opensuse.org
|
||||
|
||||
|
||||
+40
-37
@@ -1,57 +1,60 @@
|
||||
# vim: set sw=4 ts=4 et nu:
|
||||
#
|
||||
# spec file for package perl-Text-CSV-Encoded
|
||||
#
|
||||
# Copyright (c) 2015 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
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: perl-Text-CSV-Encoded
|
||||
Version: 0.10
|
||||
Version: 0.23
|
||||
Release: 0
|
||||
%define cpan_name Text-CSV-Encoded
|
||||
Summary: Encoding aware Text::CSV
|
||||
Source: http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/Text-CSV-Encoded-%{version}.tar.gz
|
||||
URL: http://search.cpan.org/dist/Text-CSV-Encoded
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Group: Development/Libraries/Perl
|
||||
License: Perl License
|
||||
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||
%{perl_requires}
|
||||
Url: http://search.cpan.org/dist/Text-CSV-Encoded/
|
||||
Source0: http://www.cpan.org/authors/id/Z/ZA/ZARQUON/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: make
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(Test::Harness)
|
||||
BuildRequires: perl(IO::Handle)
|
||||
BuildRequires: perl(Text::CSV) >= 1.12
|
||||
Requires: perl(IO::Handle)
|
||||
Requires: perl(Text::CSV) >= 1.12
|
||||
BuildRequires: perl(Text::CSV) >= 1.31
|
||||
Requires: perl(Text::CSV) >= 1.31
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
This module inherits Text::CSV and is aware of input/output encodings.
|
||||
This module inherits the Text::CSV manpage and is aware of input/output
|
||||
encodings.
|
||||
|
||||
%prep
|
||||
%setup -q -n "Text-CSV-Encoded-%{version}"
|
||||
%__sed -i '/^auto_install/d' Makefile.PL
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
%build
|
||||
%__perl Makefile.PL PREFIX="%{_prefix}"
|
||||
%__make %{?jobs:-j%{jobs}}
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%check
|
||||
%__make test
|
||||
|
||||
%clean
|
||||
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes README
|
||||
%dir %{perl_vendorlib}/Text
|
||||
%dir %{perl_vendorlib}/Text/CSV
|
||||
%{perl_vendorlib}/Text/CSV/Encoded.pm
|
||||
%{perl_vendorlib}/Text/CSV/Encoded
|
||||
%dir %{perl_vendorarch}/auto/Text
|
||||
%dir %{perl_vendorarch}/auto/Text/CSV
|
||||
%{perl_vendorarch}/auto/Text/CSV/Encoded
|
||||
%doc %{perl_man3dir}/Text::CSV::Encoded.%{perl_man3ext}%{ext_man}
|
||||
%doc %{perl_man3dir}/Text::CSV::Encoded::*.%{perl_man3ext}%{ext_man}
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9fe7ae5f59e999c6be2ee22cc2859cc3e4c2f363dd3b3889b7f4602723218129
|
||||
size 11613
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:68e6aa95457ffcdcf26f8853ceae8355a33f0bc641cfb4705c2f89a15f3c3881
|
||||
size 12473
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
#description_paragraphs: 3
|
||||
#no_testing: broken upstream
|
||||
#sources:
|
||||
# - source1
|
||||
# - source2
|
||||
#patches:
|
||||
# foo.patch: -p1
|
||||
# bar.patch:
|
||||
#preamble: |-
|
||||
# BuildRequires: gcc-c++
|
||||
#post_prep: |-
|
||||
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
|
||||
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
|
||||
#post_install: |-
|
||||
# sed on %{name}.files
|
||||
#license: SUSE-NonFree
|
||||
#skip_noarch: 1
|
||||
#custom_build: |-
|
||||
#./Build build flags=%{?_smp_mflags} --myflag
|
||||
#custom_test: |-
|
||||
#startserver && make test
|
||||
#ignore_requires: Bizarre::Module
|
||||
Reference in New Issue
Block a user