From 1ff5997f41b9889cd6ef4baf07118a14db944d9f Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 20 Mar 2016 08:29:08 +0100 Subject: [PATCH 1/3] Update to 0.24.0 (RHBZ #1310638) Signed-off-by: Igor Gnatenko --- .gitignore | 1 + libgit2.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index aba43b6..8da8279 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /libgit2-0.23.2.tar.gz /libgit2-0.23.3.tar.gz /libgit2-0.23.4.tar.gz +/libgit2-0.24.0.tar.gz diff --git a/libgit2.spec b/libgit2.spec index 9b9e9e8..ac89a7b 100644 --- a/libgit2.spec +++ b/libgit2.spec @@ -1,6 +1,6 @@ Name: libgit2 -Version: 0.23.4 -Release: 2%{?dist} +Version: 0.24.0 +Release: 1%{?dist} Summary: C implementation of the Git core methods as a library with a solid API License: GPLv2 with exceptions URL: http://libgit2.github.com/ @@ -69,6 +69,9 @@ ctest -V %{_includedir}/git2/ %changelog +* Sun Mar 20 2016 Igor Gnatenko - 0.24.0-1 +- Update to 0.24.0 (RHBZ #1310638) + * Thu Feb 04 2016 Fedora Release Engineering - 0.23.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index 86efee9..4f70ab7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b7db3ab71dfa19fe1dc7fef76d6af216 libgit2-0.23.4.tar.gz +8cabf04502d7203793b32f47ca410ae3 libgit2-0.24.0.tar.gz From a48b626a931e193fe879951016f9cbab1963607a Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 20 Mar 2016 09:15:16 +0100 Subject: [PATCH 2/3] tests should be more verbose Signed-off-by: Igor Gnatenko --- libgit2.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgit2.spec b/libgit2.spec index ac89a7b..34ffbae 100644 --- a/libgit2.spec +++ b/libgit2.spec @@ -51,7 +51,7 @@ rm -frv deps %make_install %check -ctest -V +ctest -VV %post -p /sbin/ldconfig From 7df89b4e8618829eda972a59324da186f7cdac68 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 13 Apr 2016 12:49:26 +0200 Subject: [PATCH 3/3] Update to 0.24.1 Signed-off-by: Igor Gnatenko --- .gitignore | 1 + libgit2.spec | 28 +++++++++++++++++++--------- sources | 2 +- 3 files changed, 21 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 8da8279..6f58b65 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /libgit2-0.23.3.tar.gz /libgit2-0.23.4.tar.gz /libgit2-0.24.0.tar.gz +/libgit2-0.24.1.tar.gz diff --git a/libgit2.spec b/libgit2.spec index 34ffbae..0b235f3 100644 --- a/libgit2.spec +++ b/libgit2.spec @@ -1,5 +1,5 @@ Name: libgit2 -Version: 0.24.0 +Version: 0.24.1 Release: 1%{?dist} Summary: C implementation of the Git core methods as a library with a solid API License: GPLv2 with exceptions @@ -43,32 +43,42 @@ sed -i 's/ionline/xonline/' CMakeLists.txt # Remove bundled libraries rm -frv deps +mkdir build + %build -%cmake -DTHREADSAFE=ON . -%make_build +pushd build + %cmake -DTHREADSAFE=ON .. + %make_build +popd %install -%make_install +pushd build + %make_install +popd %check -ctest -VV +pushd build + ctest -VV +popd %post -p /sbin/ldconfig - %postun -p /sbin/ldconfig %files %license COPYING -%{_libdir}/libgit2.so.* +%{_libdir}/%{name}.so.* %files devel %doc AUTHORS docs examples README.md -%{_libdir}/libgit2.so -%{_libdir}/pkgconfig/libgit2.pc +%{_libdir}/%{name}.so +%{_libdir}/pkgconfig/%{name}.pc %{_includedir}/git2.h %{_includedir}/git2/ %changelog +* Wed Apr 13 2016 Igor Gnatenko - 0.24.1-1 +- Update to 0.24.1 + * Sun Mar 20 2016 Igor Gnatenko - 0.24.0-1 - Update to 0.24.0 (RHBZ #1310638) diff --git a/sources b/sources index 4f70ab7..43268d5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8cabf04502d7203793b32f47ca410ae3 libgit2-0.24.0.tar.gz +3674ca2d40388b1175e25b6f5a3a82ad libgit2-0.24.1.tar.gz