commit 39429d88ef9fd60d5d6f31f987946347a66eae09dd4e6a97f05e296fa8147668 Author: Sascha Peilicke Date: Tue Apr 19 11:05:26 2011 +0000 Accepting request 66786 from devel:languages:perl Accepted submit request 66786 from user babelworx OBS-URL: https://build.opensuse.org/request/show/66786 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-YAML-LibYAML?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/YAML-LibYAML-0.35.tar.gz b/YAML-LibYAML-0.35.tar.gz new file mode 100644 index 0000000..212aae9 --- /dev/null +++ b/YAML-LibYAML-0.35.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c54b124119cdf84655920594e7eb4d1f7c3a6067468fec3ff7376d4c46070d0 +size 161209 diff --git a/perl-YAML-LibYAML.changes b/perl-YAML-LibYAML.changes new file mode 100644 index 0000000..c5fe65f --- /dev/null +++ b/perl-YAML-LibYAML.changes @@ -0,0 +1,23 @@ +------------------------------------------------------------------- +Mon Apr 4 08:33:41 UTC 2011 - coolo@novell.com + +- updated to 0.35 + - Apply bdfoy patch from rt-46172 + - Update ppport.h to fix rt-64749 & rt-62054 + - Add ANDK's regexp.t patch from rt-62266 + - These changes from chansen++ + - Handle misbehaved tied hashes + - Handle 'get' magic + - Added support for tied arrays and hashes + - Don't turn on the UTF-8 flag for strings containing US-ASCII (0x00-0x7F) + +------------------------------------------------------------------- +Mon Nov 29 18:32:31 UTC 2010 - coolo@novell.com + +- remove /var/adm/perl-modules + +------------------------------------------------------------------- +Mon Jun 14 05:26:35 UTC 2010 - pascal.bleser@opensuse.org + +- initial package (0.33) + diff --git a/perl-YAML-LibYAML.spec b/perl-YAML-LibYAML.spec new file mode 100644 index 0000000..744aaf7 --- /dev/null +++ b/perl-YAML-LibYAML.spec @@ -0,0 +1,66 @@ +# +# spec file for package perl-YAML-LibYAML (Version 0.35) +# +# Copyright (c) 2010 SUSE LINUX Products 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-YAML-LibYAML +Version: 0.35 +Release: 1 +License: GPL+ or Artistic +%define cpan_name YAML-LibYAML +Summary: YAML::LibYAML Perl module +Url: http://search.cpan.org/dist/YAML-LibYAML/ +Group: Development/Libraries/Perl +#Source: http://www.cpan.org/authors/id/I/IN/INGY/YAML-LibYAML-%{version}.tar.gz +Source: %{cpan_name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: perl +BuildRequires: perl-macros +%{perl_requires} + +%description +Kirill Siminov's libyaml is arguably the best YAML implementation. The C +library is written precisely to the YAML 1.1 specification. It was originally +bound to Python and was later bound to Ruby. + +This module is a Perl XS binding to libyaml which offers Perl the best YAML +support to date. + +This module exports the functions Dump and Load. These functions are intended +to work exactly like YAML.pm's corresponding functions. + +%prep +%setup -q -n %{cpan_name}-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" +%{__make} %{?_smp_mflags} + +%check +%{__make} test + +%install +%perl_make_install +%perl_process_packlist +%perl_gen_filelist + +%clean +%{__rm} -rf %{buildroot} + +%files -f %{name}.files +%defattr(644,root,root,755) +%doc Changes README + +%changelog