diff options
| author | Michał Górny <mgorny@gentoo.org> | 2020-11-24 08:54:53 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2020-11-24 09:03:43 +0100 |
| commit | 692dcf4f8e4428d5de39ff3aee0737355cf06cd0 (patch) | |
| tree | 0d5541ed4e137b539e7d67a02c556439841a6e2a /dev-libs/libgit2/libgit2-1.1.0-r2.ebuild | |
| parent | 34a1c586e186fb0aab2a76c6ef90fbb23a1f6c9a (diff) | |
| download | gentoo-692dcf4f8e4428d5de39ff3aee0737355cf06cd0.tar.gz gentoo-692dcf4f8e4428d5de39ff3aee0737355cf06cd0.tar.bz2 gentoo-692dcf4f8e4428d5de39ff3aee0737355cf06cd0.zip | |
dev-libs/libgit2: Add missing dep on pcre2
Closes: https://bugs.gentoo.org/756277
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-libs/libgit2/libgit2-1.1.0-r2.ebuild')
| -rw-r--r-- | dev-libs/libgit2/libgit2-1.1.0-r2.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/dev-libs/libgit2/libgit2-1.1.0-r2.ebuild b/dev-libs/libgit2/libgit2-1.1.0-r2.ebuild new file mode 100644 index 000000000000..40e1fb17fcef --- /dev/null +++ b/dev-libs/libgit2/libgit2-1.1.0-r2.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) +inherit cmake python-any-r1 + +DESCRIPTION="A linkable library for Git" +HOMEPAGE="https://libgit2.org" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S=${WORKDIR}/${P/_/-} + +LICENSE="GPL-2-with-linking-exception" +SLOT="0/1.1" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~ppc-macos" +IUSE="examples gssapi libressl +ssh test +threads trace" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/libpcre:= + net-libs/http-parser:= + sys-libs/zlib + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + gssapi? ( virtual/krb5 ) + ssh? ( net-libs/libssh2 ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + virtual/pkgconfig +" + +src_prepare() { + cmake_src_prepare + # relying on forked http-parser to support some obscure URI form + sed -i -e '/empty_port/s:test:_&:' tests/network/urlparse.c || die +} + +src_configure() { + local mycmakeargs=( + -DBUILD_CLAR=$(usex test) + -DENABLE_TRACE=$(usex trace ON OFF) + -DUSE_GSSAPI=$(usex gssapi ON OFF) + -DUSE_SSH=$(usex ssh) + -DTHREADSAFE=$(usex threads) + -DUSE_HTTP_PARSER=system + ) + cmake_src_configure +} + +src_test() { + if [[ ${EUID} -eq 0 ]] ; then + # repo::iterator::fs_preserves_error fails if run as root + # since root can still access dirs with 0000 perms + ewarn "Skipping tests: non-root privileges are required for all tests to pass" + else + local TEST_VERBOSE=1 + cmake_src_test -R offline + fi +} + +src_install() { + cmake_src_install + dodoc docs/*.{md,txt} + + if use examples ; then + find examples -name '.gitignore' -delete || die + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} |
