libgit2/libgit2.spec

94 lines
2.2 KiB
RPMSpec
Raw Normal View History

# libssh2 is not available on RHEL
%if 0%{?rhel}
%bcond_with libssh2
%else
%bcond_without libssh2
%endif
2014-06-21 08:12:44 +00:00
Name: libgit2
Version: 1.3.0
Release: %autorelease
2014-06-21 08:12:44 +00:00
Summary: C implementation of the Git core methods as a library with a solid API
License: GPLv2 with exceptions
URL: https://libgit2.org/
Source0: https://github.com/libgit2/libgit2/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: gcc
BuildRequires: cmake >= 3.5.1
BuildRequires: ninja-build
2014-06-21 08:12:44 +00:00
BuildRequires: http-parser-devel
2015-09-02 13:55:06 +00:00
BuildRequires: libcurl-devel
%if %{with libssh2}
2014-06-21 08:12:44 +00:00
BuildRequires: libssh2-devel
%endif
2014-06-21 08:12:44 +00:00
BuildRequires: openssl-devel
BuildRequires: pcre2-devel
BuildRequires: python3
2014-06-21 08:12:44 +00:00
BuildRequires: zlib-devel
BuildRequires: libgit2
2014-06-21 08:12:44 +00:00
Provides: bundled(libxdiff)
2013-06-15 10:16:20 +00:00
%description
libgit2 is a portable, pure C implementation of the Git core methods
2013-06-15 10:16:20 +00:00
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.
2014-06-21 08:12:44 +00:00
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
2013-06-15 10:16:20 +00:00
2014-06-21 09:42:28 +00:00
%description devel
2014-06-21 08:12:44 +00:00
This package contains libraries and header files for
2013-06-15 10:16:20 +00:00
developing applications that use %{name}.
%prep
%autosetup -p1
2015-01-20 18:00:57 +00:00
2013-06-15 10:16:20 +00:00
# Remove VCS files from examples
2014-06-21 08:12:44 +00:00
find examples -name ".gitignore" -delete -print
2013-06-15 10:16:20 +00:00
2018-10-27 10:13:16 +00:00
# Don't run "online" tests
sed -i '/-sonline/s/^/#/' tests/CMakeLists.txt
2013-06-15 10:16:20 +00:00
# Remove bundled libraries
rm -vr deps
2013-06-15 10:16:20 +00:00
%build
%cmake \
-GNinja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DREGEX_BACKEND=pcre2 \
-DUSE_HTTP_PARSER=system \
-DUSE_SHA1=HTTPS \
-DUSE_HTTPS=OpenSSL \
-DUSE_NTLMCLIENT=OFF \
%if %{without libssh2}
-DUSE_SSH=OFF \
%endif
%{nil}
%cmake_build
2013-06-15 10:16:20 +00:00
2014-06-21 08:12:44 +00:00
%install
%cmake_install
# Include previous ABI version for temporary binary compatibility
cp -a %{_libdir}/libgit2.so.1.1* %{buildroot}%{_libdir}
2013-06-15 10:16:20 +00:00
%check
%ctest
2013-06-15 10:16:20 +00:00
%files
%license COPYING
%{_libdir}/libgit2.so.1.3*
%{_libdir}/libgit2.so.1.1*
2013-06-15 10:16:20 +00:00
%files devel
2014-08-08 02:20:32 +00:00
%doc AUTHORS docs examples README.md
%{_libdir}/libgit2.so
%{_libdir}/pkgconfig/libgit2.pc
2014-06-21 08:12:44 +00:00
%{_includedir}/git2.h
%{_includedir}/git2/
2013-06-15 10:16:20 +00:00
%changelog
%autochangelog