Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/
Date: Sat, 06 Oct 2018 07:11:32
Message-Id: 1538809842.61075eb72a164eae47cf57a1d87cacaf4604b44a.mgorny@gentoo
1 commit: 61075eb72a164eae47cf57a1d87cacaf4604b44a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 6 06:46:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 6 07:10:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61075eb7
7
8 dev-libs/libgit2: Sec-bump to 0.26.7
9
10 Bug: https://bugs.gentoo.org/667860
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-libs/libgit2/Manifest | 1 +
14 dev-libs/libgit2/libgit2-0.26.7.ebuild | 82 ++++++++++++++++++++++++++++++++++
15 2 files changed, 83 insertions(+)
16
17 diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest
18 index 6fd70afa425..3a0fd9818b8 100644
19 --- a/dev-libs/libgit2/Manifest
20 +++ b/dev-libs/libgit2/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libgit2-0.26.6.tar.gz 4734435 BLAKE2B 0831d0a78ba74b6cd989821f0abb6774f8879f18906025ce02d7c0f7f8f3e7f03b30121f79e370b85201e110a6fc4aca2ae2e608b12f01cd527ab42bf597099d SHA512 6a5a167bfe8696294cf188feec2aad898af52f4c05a3a40a55f48ea3168d200a60fc42b3819a22b1bf472be696f5dafef473d457c08bab164cbf654c4de6bda7
23 +DIST libgit2-0.26.7.tar.gz 4737641 BLAKE2B dd87ab3048dec361619ff0e42d19161e4b20a07d334ad42aa077b77202bf5e84b85e33a6d6668afef36a7ff23f85a68f28049e08dd7502b241e40a730a78bb44 SHA512 5ad0c514b6c1c58031029f4ada278a164cc112f25c36745973df27711f12888000c054816b65889576124e93b71ec9a1c4f4cc0b538f177d93a57bc145fea1e1
24 DIST libgit2-0.27.4.tar.gz 4772254 BLAKE2B 9c0e7b436d8cb07a8f1407d22bcd4c7b161f3ceef9dc4e67f9daec784a1cfb9f8f2e493a78f5ef6b4893e54c1f1b567ae53ead52a992ee10eabe3229195417a1 SHA512 d27db86eb1b9f0d4057f8538ba1985ee76c3ca106e57d417fa9bff79d575f91a07ad28693112b58dc1d61d68116a82e6a145f12276158f2806b6c4964d741f61
25
26 diff --git a/dev-libs/libgit2/libgit2-0.26.7.ebuild b/dev-libs/libgit2/libgit2-0.26.7.ebuild
27 new file mode 100644
28 index 00000000000..e6c58a1e0bc
29 --- /dev/null
30 +++ b/dev-libs/libgit2/libgit2-0.26.7.ebuild
31 @@ -0,0 +1,82 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} )
38 +inherit cmake-utils python-any-r1
39 +
40 +if [[ ${PV} == "9999" ]] ; then
41 + EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
42 + inherit git-r3
43 +else
44 + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~ppc-macos"
46 +fi
47 +
48 +DESCRIPTION="A linkable library for Git"
49 +HOMEPAGE="https://libgit2.github.com/"
50 +
51 +LICENSE="GPL-2-with-linking-exception"
52 +SLOT="0/26"
53 +IUSE="+curl examples gssapi libressl +ssh test +threads trace"
54 +
55 +RDEPEND="
56 + !libressl? ( dev-libs/openssl:0= )
57 + libressl? ( dev-libs/libressl:0= )
58 + sys-libs/zlib
59 + net-libs/http-parser:=
60 + curl? (
61 + !libressl? ( net-misc/curl:=[curl_ssl_openssl(-)] )
62 + libressl? ( net-misc/curl:=[curl_ssl_libressl(-)] )
63 + )
64 + gssapi? ( virtual/krb5 )
65 + ssh? ( net-libs/libssh2 )
66 +"
67 +DEPEND="${RDEPEND}
68 + ${PYTHON_DEPS}
69 + virtual/pkgconfig
70 +"
71 +
72 +DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md )
73 +
74 +src_prepare() {
75 + # skip online tests
76 + sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die
77 +
78 + cmake-utils_src_prepare
79 +}
80 +
81 +src_configure() {
82 + local mycmakeargs=(
83 + -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
84 + -DBUILD_CLAR=$(usex test)
85 + -DENABLE_TRACE=$(usex trace)
86 + -DUSE_GSSAPI=$(usex gssapi)
87 + -DUSE_SSH=$(usex ssh)
88 + -DTHREADSAFE=$(usex threads)
89 + -DCURL=$(usex curl)
90 + )
91 + cmake-utils_src_configure
92 +}
93 +
94 +src_test() {
95 + if [[ ${EUID} -eq 0 ]] ; then
96 + # repo::iterator::fs_preserves_error fails if run as root
97 + # since root can still access dirs with 0000 perms
98 + ewarn "Skipping tests: non-root privileges are required for all tests to pass"
99 + else
100 + local TEST_VERBOSE=1
101 + cmake-utils_src_test
102 + fi
103 +}
104 +
105 +src_install() {
106 + cmake-utils_src_install
107 +
108 + if use examples ; then
109 + find examples -name '.gitignore' -delete || die
110 + dodoc -r examples
111 + docompress -x /usr/share/doc/${PF}/examples
112 + fi
113 +}