Update to 0.21.0

This commit is contained in:
Christopher Meng 2014-06-21 16:12:44 +08:00
parent b908d45183
commit 85399c48e8
3 changed files with 35 additions and 47 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/v0.18.0.tar.gz /v0.18.0.tar.gz
/v0.19.0.tar.gz /v0.19.0.tar.gz
/libgit2-0.20.0.tar.gz /libgit2-0.20.0.tar.gz
/libgit2-0.21.0.tar.gz

View File

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

View File

@ -1 +1 @@
e35f613a37e11354f34249f2faa68237 libgit2-0.20.0.tar.gz 06b598bf21b0536dcbf454dc63af2313 libgit2-0.21.0.tar.gz