commit:     0dded1c44940fa37150be78ea1ae4cc0cf5bbf95
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 14 12:35:21 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 14 12:35:21 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dded1c4

app-doc/eclass-manpages: Switch the live ebuild to use git

Closes: https://bugs.gentoo.org/571284
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../eclass-manpages-99999999.ebuild                | 35 +++++++---------------
 1 file changed, 10 insertions(+), 25 deletions(-)

diff --git a/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild 
b/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild
index ea11ad47608..7dfb0d7e0d2 100644
--- a/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild
+++ b/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild
@@ -1,43 +1,28 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
+
+inherit git-r3
 
 DESCRIPTION="Collection of Gentoo eclass manpages"
 HOMEPAGE="https://www.gentoo.org/";
 SRC_URI=""
+EGIT_REPO_URI="https://anongit.gentoo.org/git/repo/gentoo.git
+       https://github.com/gentoo/gentoo.git";
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
 IUSE=""
 
-DEPEND="
-       || (
-               sys-apps/portage
-               sys-apps/portage-mgorny
-       )"
-
-S=${WORKDIR}
-
-genit() {
-       local e=${1:-${ECLASSDIR}}
-       einfo "Generating man pages from: ${e}"
-       # Need `bash` because the .sh isn't +x on the servers #451352
-       env ECLASSDIR=${e} bash "${FILESDIR}"/eclass-to-manpage.sh || die
+src_unpack() {
+       git-r3_fetch
+       git-r3_checkout '' '' '' eclass
 }
 
 src_compile() {
-       # First process any eclasses found in overlays.  Then process
-       # the main eclassdir last so that its output will clobber anything
-       # that might have come from overlays.  Main tree wins!
-       local o e
-       for o in $(portageq get_repos /) ; do
-               e="$(portageq get_repo_path / ${o})/eclass"
-               [[ -d ${e} ]] || continue
-               genit "${e}" || die
-       done
-       genit || die
+       env ECLASSDIR="${S}/eclass" bash "${FILESDIR}"/eclass-to-manpage.sh || 
die
 }
 
 src_install() {

Reply via email to