source: projects/specs/trunk/m/msgpack/msgpack-vl.spec @ 10766

Revision 10766, 1.9 KB checked in by ara_t, 8 years ago (diff)

rebuild with gcc-5.4.0

RevLine 
[8090]1%define ver 0.5.8
[10766]2%define rel 2
[7396]3
[7395]4Name:           msgpack
[7396]5Version:        %{ver}
6Release:        %{rel}%{?_dist_release}
[7395]7Summary:        Binary-based efficient object serialization library
8Group:          System Environment/Libraries
9
10License:        ASL 2.0
11URL:            http://msgpack.org
12Source0:        http://msgpack.org/releases/cpp/%{name}-%{version}.tar.gz
13
[7396]14BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
[7395]15# for regenerating configure
16BuildRequires:  libtool
17# for %%check
18BuildRequires:  gtest-devel
19BuildRequires:  zlib-devel
20
[7396]21Vendor: Project Vine
22Distribution: Vine Linux
23Packager: iwaim
24
[7395]25%description
26MessagePack is a binary-based efficient object serialization
27library. It enables to exchange structured objects between many
28languages like JSON. But unlike JSON, it is very fast and small.
29
30
31%package devel
32Summary:        Libraries and header files for %{name}
33Group:          Development/Libraries
[7396]34Requires:       %{name} = %{version}-%{release}
[7395]35
36%description devel
37Libraries and header files for %{name}
38
39
40%prep
41%setup -q
42
43
44%build
45%configure --disable-static
46make %{?_smp_mflags}
47
48
49%check
50make check
51
52
53%install
54make install DESTDIR=$RPM_BUILD_ROOT
55find $RPM_BUILD_ROOT -name '*.la' -exec rm -f '{}' ';'
56
57
58%post -p /sbin/ldconfig
59
60%postun -p /sbin/ldconfig
61
62
63%files
64%doc AUTHORS COPYING ChangeLog LICENSE NOTICE README README.md
65%{_libdir}/*.so.*
66
67%files devel
68%{_includedir}/*
69%{_libdir}/*.so
[8090]70%{_libdir}/pkgconfig/msgpack.pc
[7395]71
72
73%changelog
[10766]74* Fri Sep 02 2016 Toshiaki Ara <ara_t@384.jp> 0.5.8-2
75- rebuild with gcc-5.4.0
76
[8090]77* Tue Dec 31 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.5.8-1
78- update to 0.5.8
79- drop gtest patch: upstream fixed
80- add pkgconfig file in msgpack-devel package
81
[7396]82* Fri Feb  1 2013 IWAI, Masaharu <iwai@alib.jp> 0.5.7-1
83- initial build for Vine Linux
84
[7395]85* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.7-2
86- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
87
88* Wed Feb 15 2012 Daiki Ueno <dueno@redhat.com> - 0.5.7-1
89- initial packaging for Fedora
90
Note: See TracBrowser for help on using the repository browser.