[libgit2] Update to 0.21.0

Christopher Meng cicku at fedoraproject.org
Sat Jun 21 08:14:33 UTC 2014


commit 85399c48e83aea2c10580cebdc86f848439bf723
Author: Christopher Meng <i at cicku.me>
Date:   Sat Jun 21 16:12:44 2014 +0800

    Update to 0.21.0

 .gitignore   |    1 +
 libgit2.spec |   79 ++++++++++++++++++++++++---------------------------------
 sources      |    2 +-
 3 files changed, 35 insertions(+), 47 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 6af3662..7e6510b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /v0.18.0.tar.gz
 /v0.19.0.tar.gz
 /libgit2-0.20.0.tar.gz
+/libgit2-0.21.0.tar.gz
diff --git a/libgit2.spec b/libgit2.spec
index d11ed38..0ac40a0 100644
--- a/libgit2.spec
+++ b/libgit2.spec
@@ -1,28 +1,20 @@
-%global commit 43cb8b32428b1b29994874349ec22eb5372e152c
-
-Name: libgit2
-Version: 0.20.0
-Release: 4%{?dist}
-Summary: A C implementation of the Git core methods as a library
-
-License: GPLv2 with exceptions
-URL: http://libgit2.github.com/
-Source0: https://github.com/%{name}/%{name}/archive/%{commit}/%{name}-%{version}.tar.gz
-
-# https://github.com/libgit2/libgit2/issues/2199
-Patch0: 0001-Disable-failing-test.patch
+Name:           libgit2
+Version:        0.21.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/
+Source0:        https://github.com/libgit2/libgit2/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 
 # Add htonl() and friends declarations on non-x86 arches
-Patch1: libgit2-0.19.0-non-x86.patch
-
-BuildRequires: cmake >= 2.6
-BuildRequires: http-parser-devel
-BuildRequires: libssh2-devel
-BuildRequires: openssl-devel
-BuildRequires: python
-BuildRequires: zlib-devel
-
-Provides: bundled(libxdiff)
+#Patch1:         libgit2-0.19.0-non-x86.patch
+BuildRequires:  cmake >= 2.6
+BuildRequires:  http-parser-devel
+BuildRequires:  libssh2-devel
+BuildRequires:  openssl-devel
+BuildRequires:  python
+BuildRequires:  zlib-devel
+Provides:       bundled(libxdiff)
 
 %description
 libgit2 is a portable, pure C implementation of the Git core methods 
@@ -30,24 +22,21 @@ provided as a re-entrant linkable library with a solid API, allowing
 you to write native speed custom Git applications in any language
 with bindings.
 
-
-%package devel
-Summary: Development files for %{name}
-Requires: %{name}%{?_isa} = %{version}-%{release}
+%package        devel
+Summary:        Development files for %{name}
+Requires:       %{name}%{?_isa} = %{version}-%{release}
 
 %description devel
-The %{name}-devel package contains libraries and header files for
+This package contains libraries and header files for
 developing applications that use %{name}.
 
-
 %prep
 %setup -q
 # Remove VCS files from examples
-find examples -name ".gitignore" -delete
+find examples -name ".gitignore" -delete -print
 
 # Apply patches
-%patch0 -p1 -b .test
-%patch1 -p1 -b .non-x86
+#%patch1 -p1 -b .non-x86
 
 # Fix pkgconfig generation
 sed -i 's|@CMAKE_INSTALL_PREFIX@/||' libgit2.pc.in
@@ -56,13 +45,14 @@ sed -i 's|@CMAKE_INSTALL_PREFIX@/||' libgit2.pc.in
 sed -i 's/ionline/xonline/' CMakeLists.txt
 
 # Remove bundled libraries
-rm -rf deps
-
+rm -frv deps
 
 %build
 %cmake -DTHREADSAFE:BOOL=1 .
-make %{_smp_mflags}
+make %{?_smp_mflags}
 
+%install
+%make_install
 
 %check
 # remove when rhbz#1105552 is fixed:
@@ -70,28 +60,25 @@ make %{_smp_mflags}
 ctest -V
 %endif
 
-
-%install
-make install DESTDIR=%{buildroot}
-
-
 %post -p /sbin/ldconfig
-%postun -p /sbin/ldconfig
 
+%postun -p /sbin/ldconfig
 
 %files
-%doc README.md COPYING AUTHORS
+%doc COPYING AUTHORS
 %{_libdir}/libgit2.so.*
 
-
 %files devel
-%doc docs examples
+%doc docs examples README.md
 %{_libdir}/libgit2.so
 %{_libdir}/pkgconfig/libgit2.pc
-%{_includedir}/git2*
-
+%{_includedir}/git2.h
+%{_includedir}/git2/
 
 %changelog
+* Sat Jun 21 2014 Christopher Meng <rpm at cicku.me> - 0.21.0-1
+- Update to 0.21.0
+
 * Fri Jun 06 2014 Karsten Hopp <karsten at redhat.com> 0.20.0-4
 - temporarily disable checks on ppc64 and s390x (Bugzilla 1105552)
 
diff --git a/sources b/sources
index 51531b6..49ca504 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e35f613a37e11354f34249f2faa68237  libgit2-0.20.0.tar.gz
+06b598bf21b0536dcbf454dc63af2313  libgit2-0.21.0.tar.gz


More information about the scm-commits mailing list