You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.3 KiB
108 lines
3.3 KiB
%global cpan_version 1.6
|
|
Name: perl-CBOR-XS
|
|
Version: %(echo %{cpan_version} | sed 's/\(\..\)\(.\)/\1.\2/')
|
|
Release: 2%{?dist}
|
|
Summary: Concise Binary Object Representation (CBOR)
|
|
# COPYING: GPLv3+
|
|
## Replaced by system header-only package
|
|
# ecb.h: BSD or GPLv2+
|
|
License: GPLv3+ and (BSD or GPLv2+)
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/CBOR-XS/
|
|
Source0: http://www.cpan.org/authors/id/M/ML/MLEHMANN/CBOR-XS-%{cpan_version}.tar.gz
|
|
# Use system libecb
|
|
Patch0: CBOR-XS-1.6-Include-ecb.h-from-system.patch
|
|
# Silent compiler warnings
|
|
Patch1: CBOR-XS-1.5-Cast-char-and-U8-where-needed.patch
|
|
BuildRequires: coreutils
|
|
BuildRequires: findutils
|
|
# gcc for standard header files
|
|
BuildRequires: gcc
|
|
BuildRequires: libecb-static
|
|
BuildRequires: make
|
|
BuildRequires: perl
|
|
BuildRequires: perl-devel
|
|
BuildRequires: perl-generators
|
|
BuildRequires: perl(Canary::Stability)
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.52
|
|
BuildRequires: sed
|
|
# Run-time:
|
|
BuildRequires: perl(common::sense)
|
|
BuildRequires: perl(Exporter)
|
|
BuildRequires: perl(Math::BigFloat)
|
|
BuildRequires: perl(Math::BigInt)
|
|
BuildRequires: perl(Math::BigRat)
|
|
BuildRequires: perl(Time::Piece)
|
|
BuildRequires: perl(Types::Serialiser)
|
|
BuildRequires: perl(URI)
|
|
BuildRequires: perl(XSLoader)
|
|
# Tests:
|
|
BuildRequires: perl(Data::Dumper)
|
|
BuildRequires: perl(Math::BigInt::FastCalc)
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
Requires: perl(Math::BigFloat)
|
|
Requires: perl(Math::BigInt)
|
|
Requires: perl(Math::BigRat)
|
|
Requires: perl(Time::Piece)
|
|
Requires: perl(URI)
|
|
|
|
%description
|
|
This module converts Perl data structures to the Concise Binary Object
|
|
Representation (CBOR) and vice versa. CBOR is a fast binary serialization
|
|
format that aims to use an (almost) superset of the JSON data model, i.e.
|
|
when you can represent something useful in JSON, you should be able to
|
|
represent it in CBOR.
|
|
|
|
%prep
|
|
%setup -q -n CBOR-XS-%{cpan_version}
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
# Remove bundled libecb
|
|
rm ecb.h
|
|
sed -i -e '/^ecb\.h/d' MANIFEST
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" </dev/null
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -delete
|
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -delete
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%check
|
|
make test
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc Changes README
|
|
%{perl_vendorarch}/auto/*
|
|
%{perl_vendorarch}/CBOR*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Thu Dec 08 2016 Petr Pisar <ppisar@redhat.com> - 1.6-1
|
|
- 1.6 bump
|
|
|
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.5-2
|
|
- Perl 5.24 rebuild
|
|
|
|
* Wed Apr 27 2016 Petr Pisar <ppisar@redhat.com> - 1.5-1
|
|
- 1.5 bump
|
|
|
|
* Mon Feb 29 2016 Petr Pisar <ppisar@redhat.com> - 1.4.1-1
|
|
- 1.41 bump
|
|
|
|
* Tue Feb 09 2016 Petr Pisar <ppisar@redhat.com> - 1.4-1
|
|
- 1.4 bump
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Tue Sep 29 2015 Petr Pisar <ppisar@redhat.com> 1.3-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|