commit: 04afeefdc48ca15c17af9d536d70b5099854e8da
Author: Sergiy Borodych <Sergiy.Borodych <AT> gmail <DOT> com>
AuthorDate: Sat Apr 4 07:46:27 2020 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Apr 10 23:30:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04afeefd
app-portage/g-cpan: migrate to EAPI=7 & add detection of use prefix
prefix detecting is matter for diropts with portage user-group options
Signed-off-by: Sergiy Borodych <Sergiy.Borodych <AT> gmail.com>
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
app-portage/g-cpan/g-cpan-0.16.9-r1.ebuild | 9 +++++++--
app-portage/g-cpan/g-cpan-9999.ebuild | 9 +++++++--
2 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/app-portage/g-cpan/g-cpan-0.16.9-r1.ebuild
b/app-portage/g-cpan/g-cpan-0.16.9-r1.ebuild
index d12aa9937dd..8bf683d29b8 100644
--- a/app-portage/g-cpan/g-cpan-0.16.9-r1.ebuild
+++ b/app-portage/g-cpan/g-cpan-0.16.9-r1.ebuild
@@ -1,9 +1,10 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit perl-module
+
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/gentoo-perl/g-cpan.git"
inherit git-r3
@@ -41,7 +42,11 @@ DEPEND="${COMMONDEPEND}
src_install() {
perl-module_src_install
- diropts -m0775 -o portage -g portage
+ if ! use prefix; then
+ diropts -m0775 -o portage -g portage
+ else
+ diropts -m0775
+ fi
dodir "/var/tmp/g-cpan"
dodir "/var/log/g-cpan"
keepdir "/var/log/g-cpan"
diff --git a/app-portage/g-cpan/g-cpan-9999.ebuild
b/app-portage/g-cpan/g-cpan-9999.ebuild
index 5fad97abc0e..fca42099a13 100644
--- a/app-portage/g-cpan/g-cpan-9999.ebuild
+++ b/app-portage/g-cpan/g-cpan-9999.ebuild
@@ -1,9 +1,10 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit perl-module
+
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/gentoo-perl/g-cpan.git"
inherit git-r3
@@ -43,7 +44,11 @@ DEPEND="${COMMONDEPEND}
src_install() {
perl-module_src_install
- diropts -m0775 -o portage -g portage
+ if ! use prefix; then
+ diropts -m0775 -o portage -g portage
+ else
+ diropts -m0775
+ fi
dodir "/var/tmp/g-cpan"
dodir "/var/log/g-cpan"
keepdir "/var/log/g-cpan"