Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/
Date: Tue, 19 Feb 2019 20:24:10
Message-Id: 1550607791.5581b5d1e84976a7c43ccb19037614025eba9b8b.chewi@gentoo
1 commit: 5581b5d1e84976a7c43ccb19037614025eba9b8b
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 19 20:23:11 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 19 20:23:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5581b5d1
7
8 dev-vcs/git: Don't call perl_get_raw_vendorlib when USE="-perl"
9
10 Perl might not even be installed.
11
12 Package-Manager: Portage-2.3.61, Repoman-2.3.12
13 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
14
15 dev-vcs/git/git-2.20.1.ebuild | 4 ++--
16 dev-vcs/git/git-2.21.0_rc1.ebuild | 2 +-
17 dev-vcs/git/git-9999-r1.ebuild | 4 ++--
18 dev-vcs/git/git-9999-r2.ebuild | 4 ++--
19 dev-vcs/git/git-9999-r3.ebuild | 4 ++--
20 dev-vcs/git/git-9999.ebuild | 4 ++--
21 6 files changed, 11 insertions(+), 11 deletions(-)
22
23 diff --git a/dev-vcs/git/git-2.20.1.ebuild b/dev-vcs/git/git-2.20.1.ebuild
24 index ba5503361b6..c26c4f8ee32 100644
25 --- a/dev-vcs/git/git-2.20.1.ebuild
26 +++ b/dev-vcs/git/git-2.20.1.ebuild
27 @@ -1,4 +1,4 @@
28 -# Copyright 1999-2018 Gentoo Authors
29 +# Copyright 1999-2019 Gentoo Authors
30 # Distributed under the terms of the GNU General Public License v2
31
32 EAPI=6
33 @@ -300,7 +300,7 @@ git_emake() {
34 emake ${MY_MAKEOPTS} \
35 prefix="${EPREFIX}"/usr \
36 htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
37 - perllibdir="$(perl_get_raw_vendorlib)" \
38 + perllibdir="$(use perl && perl_get_raw_vendorlib)" \
39 sysconfdir="${EPREFIX}"/etc \
40 DESTDIR="${D}" \
41 GIT_TEST_OPTS="--no-color" \
42
43 diff --git a/dev-vcs/git/git-2.21.0_rc1.ebuild b/dev-vcs/git/git-2.21.0_rc1.ebuild
44 index 249c44e0e77..c26c4f8ee32 100644
45 --- a/dev-vcs/git/git-2.21.0_rc1.ebuild
46 +++ b/dev-vcs/git/git-2.21.0_rc1.ebuild
47 @@ -300,7 +300,7 @@ git_emake() {
48 emake ${MY_MAKEOPTS} \
49 prefix="${EPREFIX}"/usr \
50 htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
51 - perllibdir="$(perl_get_raw_vendorlib)" \
52 + perllibdir="$(use perl && perl_get_raw_vendorlib)" \
53 sysconfdir="${EPREFIX}"/etc \
54 DESTDIR="${D}" \
55 GIT_TEST_OPTS="--no-color" \
56
57 diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild
58 index ba5503361b6..c26c4f8ee32 100644
59 --- a/dev-vcs/git/git-9999-r1.ebuild
60 +++ b/dev-vcs/git/git-9999-r1.ebuild
61 @@ -1,4 +1,4 @@
62 -# Copyright 1999-2018 Gentoo Authors
63 +# Copyright 1999-2019 Gentoo Authors
64 # Distributed under the terms of the GNU General Public License v2
65
66 EAPI=6
67 @@ -300,7 +300,7 @@ git_emake() {
68 emake ${MY_MAKEOPTS} \
69 prefix="${EPREFIX}"/usr \
70 htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
71 - perllibdir="$(perl_get_raw_vendorlib)" \
72 + perllibdir="$(use perl && perl_get_raw_vendorlib)" \
73 sysconfdir="${EPREFIX}"/etc \
74 DESTDIR="${D}" \
75 GIT_TEST_OPTS="--no-color" \
76
77 diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild
78 index ba5503361b6..c26c4f8ee32 100644
79 --- a/dev-vcs/git/git-9999-r2.ebuild
80 +++ b/dev-vcs/git/git-9999-r2.ebuild
81 @@ -1,4 +1,4 @@
82 -# Copyright 1999-2018 Gentoo Authors
83 +# Copyright 1999-2019 Gentoo Authors
84 # Distributed under the terms of the GNU General Public License v2
85
86 EAPI=6
87 @@ -300,7 +300,7 @@ git_emake() {
88 emake ${MY_MAKEOPTS} \
89 prefix="${EPREFIX}"/usr \
90 htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
91 - perllibdir="$(perl_get_raw_vendorlib)" \
92 + perllibdir="$(use perl && perl_get_raw_vendorlib)" \
93 sysconfdir="${EPREFIX}"/etc \
94 DESTDIR="${D}" \
95 GIT_TEST_OPTS="--no-color" \
96
97 diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild
98 index 06721f19a66..d1579f747e3 100644
99 --- a/dev-vcs/git/git-9999-r3.ebuild
100 +++ b/dev-vcs/git/git-9999-r3.ebuild
101 @@ -1,4 +1,4 @@
102 -# Copyright 1999-2018 Gentoo Authors
103 +# Copyright 1999-2019 Gentoo Authors
104 # Distributed under the terms of the GNU General Public License v2
105
106 EAPI=6
107 @@ -300,7 +300,7 @@ git_emake() {
108 emake ${MY_MAKEOPTS} \
109 prefix="${EPREFIX}"/usr \
110 htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
111 - perllibdir="$(perl_get_raw_vendorlib)" \
112 + perllibdir="$(use perl && perl_get_raw_vendorlib)" \
113 sysconfdir="${EPREFIX}"/etc \
114 DESTDIR="${D}" \
115 GIT_TEST_OPTS="--no-color" \
116
117 diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild
118 index d6da0600289..b12a7d47ad1 100644
119 --- a/dev-vcs/git/git-9999.ebuild
120 +++ b/dev-vcs/git/git-9999.ebuild
121 @@ -1,4 +1,4 @@
122 -# Copyright 1999-2018 Gentoo Authors
123 +# Copyright 1999-2019 Gentoo Authors
124 # Distributed under the terms of the GNU General Public License v2
125
126 EAPI=6
127 @@ -303,7 +303,7 @@ git_emake() {
128 emake ${MY_MAKEOPTS} \
129 prefix="${EPREFIX}"/usr \
130 htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
131 - perllibdir="$(perl_get_raw_vendorlib)" \
132 + perllibdir="$(use perl && perl_get_raw_vendorlib)" \
133 sysconfdir="${EPREFIX}"/etc \
134 DESTDIR="${D}" \
135 GIT_TEST_OPTS="--no-color" \