1
0

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
This commit is contained in:
Sascha Peilicke 2011-04-19 11:05:26 +00:00 committed by Git OBS Bridge
commit 39429d88ef
5 changed files with 116 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
YAML-LibYAML-0.35.tar.gz Normal file
View File

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

23
perl-YAML-LibYAML.changes Normal file
View File

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

66
perl-YAML-LibYAML.spec Normal file
View File

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