2014-06-21 08:12:44 +00:00
|
|
|
Name: libgit2
|
2019-09-13 12:15:28 +00:00
|
|
|
Version: 0.28.3
|
|
|
|
Release: 1%{?dist}
|
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
|
2019-02-02 23:08:24 +00:00
|
|
|
URL: https://libgit2.org/
|
2017-01-10 12:49:04 +00:00
|
|
|
Source0: https://github.com/libgit2/libgit2/archive/v%{version}/%{name}-%{version}.tar.gz
|
2016-10-10 08:26:47 +00:00
|
|
|
|
2017-07-08 16:30:12 +00:00
|
|
|
BuildRequires: gcc
|
2018-08-10 05:22:52 +00:00
|
|
|
BuildRequires: cmake >= 2.8.11
|
|
|
|
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
|
2014-06-21 08:12:44 +00:00
|
|
|
BuildRequires: libssh2-devel
|
|
|
|
BuildRequires: openssl-devel
|
2018-08-10 05:22:52 +00:00
|
|
|
BuildRequires: python3
|
2014-06-21 08:12:44 +00:00
|
|
|
BuildRequires: zlib-devel
|
|
|
|
Provides: bundled(libxdiff)
|
2019-09-13 12:15:28 +00:00
|
|
|
Obsoletes: libgit2_0.28 < 0.28.3-2
|
2014-03-25 13:22:26 +00:00
|
|
|
|
2013-06-15 10:16:20 +00:00
|
|
|
%description
|
2019-02-02 23:08:24 +00:00
|
|
|
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}
|
2017-01-10 12:49:04 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2019-09-13 12:15:28 +00:00
|
|
|
Obsoletes: libgit2_0.28-devel < 0.28.3-2
|
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
|
2016-10-10 08:26:47 +00:00
|
|
|
%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 '/ADD_TEST(online/s/^/#/' tests/CMakeLists.txt
|
2013-06-15 10:16:20 +00:00
|
|
|
|
|
|
|
# Remove bundled libraries
|
2014-06-21 08:12:44 +00:00
|
|
|
rm -frv deps
|
2013-06-15 10:16:20 +00:00
|
|
|
|
|
|
|
%build
|
2018-08-10 05:22:52 +00:00
|
|
|
%cmake . -B%{_target_platform} \
|
|
|
|
-GNinja \
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
|
-DSHA1_BACKEND=OpenSSL \
|
|
|
|
-DUSE_HTTPS=OpenSSL \
|
|
|
|
%{nil}
|
|
|
|
%ninja_build -C %{_target_platform}
|
2013-06-15 10:16:20 +00:00
|
|
|
|
2014-06-21 08:12:44 +00:00
|
|
|
%install
|
2018-08-10 05:22:52 +00:00
|
|
|
%ninja_install -C %{_target_platform}
|
2013-06-15 10:16:20 +00:00
|
|
|
|
|
|
|
%check
|
2018-08-10 05:22:52 +00:00
|
|
|
%ninja_test -C %{_target_platform}
|
2013-06-15 10:16:20 +00:00
|
|
|
|
|
|
|
%files
|
2015-07-30 15:28:38 +00:00
|
|
|
%license COPYING
|
2019-07-14 11:34:21 +00:00
|
|
|
%{_libdir}/libgit2.so.*
|
2013-06-15 10:16:20 +00:00
|
|
|
|
|
|
|
%files devel
|
2014-08-08 02:20:32 +00:00
|
|
|
%doc AUTHORS docs examples README.md
|
2019-07-14 11:34:21 +00:00
|
|
|
%{_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
|
2019-09-13 12:15:28 +00:00
|
|
|
* Fri Sep 13 2019 Pete Walter <pwalter@fedoraproject.org> - 0.28.3-1
|
|
|
|
- Update to 0.28.3
|
|
|
|
|
2019-07-25 13:21:11 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-14 11:34:21 +00:00
|
|
|
* Sun Jul 14 13:34:04 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.2-2
|
|
|
|
- Obsolete libgit2_0.28
|
|
|
|
|
2019-06-06 12:22:54 +00:00
|
|
|
* Thu Jun 06 14:22:16 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.2-1
|
|
|
|
- Update to 0.28.2
|
|
|
|
|
2019-02-01 07:13:12 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.27.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-28 12:15:29 +00:00
|
|
|
* Mon Jan 28 2019 Pete Walter <pwalter@fedoraproject.org> - 0.27.8-1
|
|
|
|
- Update to 0.27.8
|
|
|
|
|
2018-10-26 19:35:19 +00:00
|
|
|
* Fri Oct 26 2018 Pete Walter <pwalter@fedoraproject.org> - 0.27.7-1
|
|
|
|
- Update to 0.27.7
|
|
|
|
|
2018-10-08 17:46:08 +00:00
|
|
|
* Mon Oct 08 2018 Pete Walter <pwalter@fedoraproject.org> - 0.27.5-1
|
|
|
|
- Update to 0.27.5
|
|
|
|
|
2018-08-10 05:22:52 +00:00
|
|
|
* Fri Aug 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.4-1
|
|
|
|
- Update to 0.27.4
|
2018-10-29 10:14:43 +00:00
|
|
|
- Update upstream URL
|
2018-08-10 05:22:52 +00:00
|
|
|
|
2018-08-07 11:17:21 +00:00
|
|
|
* Tue Aug 07 2018 Pete Walter <pwalter@fedoraproject.org> - 0.26.6-1
|
|
|
|
- Update to 0.26.6
|
|
|
|
|
2018-07-13 08:09:32 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.26.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-10 08:47:20 +00:00
|
|
|
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 0.26.5-1
|
|
|
|
- Update to 0.26.5 (CVE-2018-10887, CVE-2018-10888)
|
|
|
|
|
2018-06-25 10:04:21 +00:00
|
|
|
* Mon Jun 25 2018 Pete Walter <pwalter@fedoraproject.org> - 0.26.4-1
|
|
|
|
- Update to 0.26.4 (CVE-2018-11235)
|
|
|
|
|
2018-03-12 14:11:57 +00:00
|
|
|
* Mon Mar 12 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.26.3-1
|
|
|
|
- Update to 0.26.3
|
|
|
|
|
2018-02-07 21:42:48 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.26.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-02 10:15:50 +00:00
|
|
|
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.26.0-4
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2017-08-03 01:31:11 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.26.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 18:54:35 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.26.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-08 16:30:12 +00:00
|
|
|
* Sat Jul 08 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.26.0-1
|
|
|
|
- Update to 0.26.0
|
|
|
|
|
2017-02-07 15:45:09 +00:00
|
|
|
* Tue Feb 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.25.1-3
|
|
|
|
- Backport patch to fix pkgconfig file under g-ir-scanner
|
|
|
|
|
2017-02-07 15:21:36 +00:00
|
|
|
* Tue Feb 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.25.1-2
|
|
|
|
- Bump release for rebuild
|
|
|
|
|
2017-01-10 12:49:04 +00:00
|
|
|
* Tue Feb 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.25.1-1
|
|
|
|
- Update to 0.25.1 (RHBZ #1395926)
|
|
|
|
|
2017-01-10 18:06:53 +00:00
|
|
|
* Tue Jan 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.24.6-1
|
|
|
|
- Update to 0.24.6 (RHBZ #1411857)
|
|
|
|
|
2016-11-03 17:53:56 +00:00
|
|
|
* Thu Nov 03 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.3-1
|
|
|
|
- Update to 0.24.3 (RHBZ #1391480)
|
|
|
|
- Add support for OpenSSL 1.1.0 (RHBZ #1383753)
|
|
|
|
|
2016-10-10 08:26:47 +00:00
|
|
|
* Mon Oct 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.2-2
|
|
|
|
- Backport patch for CVE-2016-8568, CVE-2016-8569
|
|
|
|
|
2016-10-04 06:45:05 +00:00
|
|
|
* Tue Oct 04 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.2-1
|
|
|
|
- Update to 0.24.2 (RHBZ #1381398)
|
|
|
|
|
2016-04-13 10:49:26 +00:00
|
|
|
* Wed Apr 13 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-1
|
|
|
|
- Update to 0.24.1
|
|
|
|
|
2016-03-20 07:29:08 +00:00
|
|
|
* Sun Mar 20 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.0-1
|
|
|
|
- Update to 0.24.0 (RHBZ #1310638)
|
|
|
|
|
2016-02-04 03:13:14 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-22 11:39:56 +00:00
|
|
|
* Sun Nov 22 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.23.4-1
|
|
|
|
- Update to 0.23.4 (RHBZ #1281633)
|
|
|
|
|
2015-10-06 17:40:15 +00:00
|
|
|
* Tue Oct 06 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.23.3-1
|
|
|
|
- Update to 0.23.3 (RHBZ #1260324)
|
|
|
|
|
2015-09-08 15:22:37 +00:00
|
|
|
* Tue Sep 08 2015 Igor Gnatenko <ignatenko@src.gnome.org> - 0.23.2-1
|
|
|
|
- Update to 0.23.2
|
|
|
|
|
2015-09-02 13:55:06 +00:00
|
|
|
* Wed Sep 02 2015 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.23.1-1
|
|
|
|
- Update to 0.23.1
|
|
|
|
- Add curl support
|
|
|
|
|
2015-07-30 15:28:38 +00:00
|
|
|
* Thu Jul 30 2015 Igor Gnatenko <ignatenko@src.gnome.org> - 0.23.0-1
|
|
|
|
- Update to 0.23.0
|
|
|
|
|
2015-07-03 09:54:02 +00:00
|
|
|
* Fri Jul 03 2015 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.22.3-1
|
|
|
|
- Update to 0.22.3
|
|
|
|
|
2015-06-17 15:20:39 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-03-24 21:04:35 +00:00
|
|
|
* Tue Mar 24 2015 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.22.2-1
|
|
|
|
- Update to 0.22.2
|
|
|
|
|
2015-02-13 22:51:15 +00:00
|
|
|
* Sat Feb 14 2015 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.22.1-1
|
|
|
|
- Update to 0.22.1
|
|
|
|
|
2015-01-19 21:04:55 +00:00
|
|
|
* Mon Jan 19 2015 Ignacio Casal Quinteiro <icq@gnome.org> - 0.22.0-1
|
|
|
|
- Update to 0.22.0
|
|
|
|
|
2014-12-26 16:10:22 +00:00
|
|
|
* Fri Dec 26 2014 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.21.3-1
|
|
|
|
- Update to 0.21.3
|
|
|
|
|
2014-08-17 03:29:35 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-08 02:20:32 +00:00
|
|
|
* Wed Aug 06 2014 Christopher Meng <rpm@cicku.me> - 0.21.1-1
|
|
|
|
- Update to 0.21.1
|
|
|
|
|
2014-07-18 02:43:19 +00:00
|
|
|
* Fri Jul 18 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 0.21.0-2
|
|
|
|
- Fix memory alignment issues on arm, aarch64, ppc64le (#1115905)
|
|
|
|
|
2014-06-21 08:12:44 +00:00
|
|
|
* Sat Jun 21 2014 Christopher Meng <rpm@cicku.me> - 0.21.0-1
|
|
|
|
- Update to 0.21.0
|
|
|
|
|
2014-06-06 12:38:43 +00:00
|
|
|
* Fri Jun 06 2014 Karsten Hopp <karsten@redhat.com> 0.20.0-4
|
|
|
|
- temporarily disable checks on ppc64 and s390x (Bugzilla 1105552)
|
|
|
|
|
2014-03-27 10:45:27 +00:00
|
|
|
* Thu Mar 27 2014 Mathieu Bridon <bochecha@fedoraproject.org> - 0.20.0-3
|
|
|
|
- Fix build requirement on libssh2-devel. (RHBZ#1039433)
|
|
|
|
|
2014-03-25 13:30:36 +00:00
|
|
|
* Tue Mar 25 2014 Mathieu Bridon <bochecha@fedoraproject.org> - 0.20.0-2
|
2014-03-25 13:22:26 +00:00
|
|
|
- Build with the bundled xdiff.
|
2014-03-25 13:25:40 +00:00
|
|
|
- Disable a failing test. (libgit2#2199)
|
2014-03-25 13:27:39 +00:00
|
|
|
- Add missing build requirement on libssh2. (RHBZ#1039433)
|
2014-03-25 13:28:36 +00:00
|
|
|
- Build a thread-safe libgit2.
|
2014-03-25 13:22:26 +00:00
|
|
|
|
2013-11-24 21:55:44 +00:00
|
|
|
* Sun Nov 24 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 0.20.0-1
|
|
|
|
- 0.20.0
|
|
|
|
|
2013-08-03 05:33:52 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-24 22:31:27 +00:00
|
|
|
* Tue Jun 25 2013 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.19.0-1
|
|
|
|
- 0.19.0
|
|
|
|
|
2013-06-19 09:20:15 +00:00
|
|
|
* Wed Jun 19 2013 Dan Horák <dan[at]danny.cz> - 0.18.0-5
|
|
|
|
- Add htonl() and friends declarations on non-x86 arches
|
|
|
|
- Rebuilt with fixed libxdiff for big endian arches
|
|
|
|
|
2013-06-15 10:16:20 +00:00
|
|
|
* Thu May 30 2013 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.18.0-4
|
|
|
|
- Update the http-parser patch
|
|
|
|
- Skip tests that require network connectivity
|
|
|
|
|
|
|
|
* Thu May 30 2013 Tom Callaway <spot@fedoraproject.org> - 0.18.0-3
|
|
|
|
- use system libxdiff instead of bundled copy
|
|
|
|
|
|
|
|
* Fri May 24 2013 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.18.0-2
|
|
|
|
- Remove unnecessary CMake build flags
|
|
|
|
- Fix the pkgconfig file
|
|
|
|
|
|
|
|
* Thu May 02 2013 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.18.0-1
|
|
|
|
- Update to version 0.18.0
|
|
|
|
- Unbundle the http-parser library
|
|
|
|
|
|
|
|
* Fri Oct 19 2012 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.17.0-2
|
|
|
|
- Use make for building and installation
|
|
|
|
- Specify minimum CMake version
|
|
|
|
- Remove useless OpenSSL build dependency
|
|
|
|
- Move development documentation to the -devel package
|
|
|
|
- Add code examples to the -devel package
|
|
|
|
|
|
|
|
* Thu Oct 18 2012 Veeti Paananen <veeti.paananen@rojekti.fi> - 0.17.0-1
|
|
|
|
- Initial package.
|