Update to latest release.
This commit is contained in:
parent
5934acb74e
commit
2b235e84c2
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
yaml-cpp-0.2.5.tar.gz
|
yaml-cpp-0.2.5.tar.gz
|
||||||
/yaml-cpp-0.2.6.tar.gz
|
/yaml-cpp-0.2.6.tar.gz
|
||||||
/yaml-cpp-0.2.7.tar.gz
|
/yaml-cpp-0.2.7.tar.gz
|
||||||
|
/yaml-cpp-0.3.0.tar.gz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
6878e14bad90c69a8f2caca273eb24c2 yaml-cpp-0.2.7.tar.gz
|
9aa519205a543f9372bf4179071c8ac6 yaml-cpp-0.3.0.tar.gz
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
Name: yaml-cpp
|
Name: yaml-cpp
|
||||||
Version: 0.2.7
|
Version: 0.3.0
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A YAML parser and emitter for C++
|
Summary: A YAML parser and emitter for C++
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://code.google.com/p/yaml-cpp/
|
URL: http://code.google.com/p/yaml-cpp/
|
||||||
Source0: http://yaml-cpp.googlecode.com/files/%{name}-%{version}.tar.gz
|
Source0: http://yaml-cpp.googlecode.com/files/%{name}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
yaml-cpp is a YAML parser and emitter in C++ written around the YAML 1.2 spec.
|
yaml-cpp is a YAML parser and emitter in C++ written around the YAML 1.2 spec.
|
||||||
|
|
||||||
@ -26,7 +27,7 @@ developing applications that use %{name}.
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q -n %{name}
|
||||||
# Fix eol
|
# Fix eol
|
||||||
sed -i 's/\r//' license.txt
|
sed -i 's/\r//' license.txt
|
||||||
|
|
||||||
@ -38,36 +39,30 @@ make VERBOSE=1 %{?_smp_mflags}
|
|||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
|
||||||
make install DESTDIR=%{buildroot}
|
make install DESTDIR=%{buildroot}
|
||||||
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
||||||
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc license.txt
|
%doc license.txt
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_includedir}/yaml-cpp/
|
%{_includedir}/yaml-cpp/
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.7-2
|
* Fri Feb 10 2012 Richard Shaw <hobbes1069@gmail.com> - 0.3.0-1
|
||||||
|
- Update to latest release.
|
||||||
|
|
||||||
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Sep 30 2011 Guido Grazioli <guido.grazioli@gmail.com> - 0.2.7-1
|
* Fri Sep 30 2011 Guido Grazioli <guido.grazioli@gmail.com> - 0.2.7-1
|
||||||
|
Loading…
Reference in New Issue
Block a user