Accepting request 344351 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/344351
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-XML-Quick?expand=0&rev=5
This commit is contained in:
Stephan Kulow
2015-11-14 10:54:28 +00:00
committed by Git OBS Bridge
parent c71eaca910
commit 1061b935d1
5 changed files with 75 additions and 40 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bf8b3670ab41504aeab37643df968244c13465f58e52e07c9d3aa14af09aa668
size 6385

3
XML-Quick-0.06.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0fdd3f085b8700e0c318e7437cc2a94860f03546f03b3b57cd84f2828cca7b5f
size 14648

23
cpanspec.yml Normal file
View File

@@ -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

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Nov 14 10:30:56 UTC 2015 - coolo@suse.com
- updated to 0.06
see /usr/share/doc/packages/perl-XML-Quick/Changes
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 1 13:36:16 UTC 2010 - coolo@novell.com Wed Dec 1 13:36:16 UTC 2010 - coolo@novell.com

View File

@@ -1,56 +1,62 @@
# vim: set sw=4 ts=4 et nu: #
# norootforbuild # spec file for package perl-XML-Quick
#
# 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-XML-Quick Name: perl-XML-Quick
Version: 0.05 Version: 0.06
Release: 0 Release: 0
%define cpan_name XML-Quick
Summary: Generate XML from hashes (and other data) Summary: Generate XML from hashes (and other data)
Source: http://search.cpan.org/CPAN/authors/id/R/RO/ROBN/XML-Quick-%{version}.tar.gz License: Artistic-1.0 or GPL-1.0+
URL: http://search.cpan.org/dist/XML-Quick/
Group: Development/Libraries/Perl Group: Development/Libraries/Perl
License: Perl License Url: http://search.cpan.org/dist/XML-Quick/
BuildRoot: %{_tmppath}/build-%{name}-%{version} Source0: http://www.cpan.org/authors/id/R/RO/ROBN/%{cpan_name}-%{version}.tar.gz
%{perl_requires} Source1: cpanspec.yml
BuildRequires: make perl BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros BuildRequires: perl-macros
BuildRequires: perl(Test::Pod)
BuildRequires: perl(Test::Pod::Coverage)
BuildRequires: perl(Test::More)
BuildRequires: perl(Test::XML) BuildRequires: perl(Test::XML)
BuildRequires: perl(Module::Build) %{perl_requires}
BuildRequires: perl(Scalar::Util)
Requires: perl(Scalar::Util)
%description %description
This module generates XML from Perl data (typically a hash). It tries hard to This module generates XML from Perl data (typically a hash). It tries hard
produce something sane no matter what you pass it. It probably fails. to produce something sane no matter what you pass it. It probably fails.
When you use this module, it will export the xml function into your namespace. When you use this module, it will export the 'xml' function into your
This function does everything. namespace. This function does everything.
%prep %prep
%setup -q -n "XML-Quick-%{version}" %setup -q -n %{cpan_name}-%{version}
%build %build
%__perl ./Build.PL %{__perl} Makefile.PL INSTALLDIRS=vendor
./Build %{__make} %{?_smp_mflags}
%install
./Build pure_install --destdir "%{buildroot}" --installdirs vendor
%perl_process_packlist
%check %check
./Build test %{__make} test
%clean %install
%{?buildroot:%__rm -rf "%{buildroot}"} %perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files %files -f %{name}.files
%defattr(-,root,root) %defattr(-,root,root,755)
%doc Changes README %doc Changes LICENSE README
%dir %{perl_vendorlib}/XML
%{perl_vendorlib}/XML/Quick.pm
%dir %{perl_vendorarch}/auto/XML
%{perl_vendorarch}/auto/XML/Quick
%doc %{perl_man3dir}/XML::Quick.%{perl_man3ext}%{ext_man}
%changelog