Update to 0.24.1
Signed-off-by: Igor Gnatenko <ignatenko@redhat.com>
This commit is contained in:
parent
a48b626a93
commit
7df89b4e86
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@
|
|||||||
/libgit2-0.23.3.tar.gz
|
/libgit2-0.23.3.tar.gz
|
||||||
/libgit2-0.23.4.tar.gz
|
/libgit2-0.23.4.tar.gz
|
||||||
/libgit2-0.24.0.tar.gz
|
/libgit2-0.24.0.tar.gz
|
||||||
|
/libgit2-0.24.1.tar.gz
|
||||||
|
28
libgit2.spec
28
libgit2.spec
@ -1,5 +1,5 @@
|
|||||||
Name: libgit2
|
Name: libgit2
|
||||||
Version: 0.24.0
|
Version: 0.24.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: C implementation of the Git core methods as a library with a solid API
|
Summary: C implementation of the Git core methods as a library with a solid API
|
||||||
License: GPLv2 with exceptions
|
License: GPLv2 with exceptions
|
||||||
@ -43,32 +43,42 @@ sed -i 's/ionline/xonline/' CMakeLists.txt
|
|||||||
# Remove bundled libraries
|
# Remove bundled libraries
|
||||||
rm -frv deps
|
rm -frv deps
|
||||||
|
|
||||||
|
mkdir build
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake -DTHREADSAFE=ON .
|
pushd build
|
||||||
%make_build
|
%cmake -DTHREADSAFE=ON ..
|
||||||
|
%make_build
|
||||||
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
pushd build
|
||||||
|
%make_install
|
||||||
|
popd
|
||||||
|
|
||||||
%check
|
%check
|
||||||
ctest -VV
|
pushd build
|
||||||
|
ctest -VV
|
||||||
|
popd
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{_libdir}/libgit2.so.*
|
%{_libdir}/%{name}.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%doc AUTHORS docs examples README.md
|
%doc AUTHORS docs examples README.md
|
||||||
%{_libdir}/libgit2.so
|
%{_libdir}/%{name}.so
|
||||||
%{_libdir}/pkgconfig/libgit2.pc
|
%{_libdir}/pkgconfig/%{name}.pc
|
||||||
%{_includedir}/git2.h
|
%{_includedir}/git2.h
|
||||||
%{_includedir}/git2/
|
%{_includedir}/git2/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 13 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-1
|
||||||
|
- Update to 0.24.1
|
||||||
|
|
||||||
* Sun Mar 20 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.0-1
|
* Sun Mar 20 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.0-1
|
||||||
- Update to 0.24.0 (RHBZ #1310638)
|
- Update to 0.24.0 (RHBZ #1310638)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user