commit: e89e70dcda0d0ff860f635a23b6ec4855a7f1c27 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Wed Jan 12 11:24:50 2022 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Wed Jan 12 11:24:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89e70dc
www-apps/ikiwiki: Port to EAPI 8 Closes: https://bugs.gentoo.org/826510 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> ...iki-3.20190228.ebuild => ikiwiki-3.20190228-r1.ebuild} | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/www-apps/ikiwiki/ikiwiki-3.20190228.ebuild b/www-apps/ikiwiki/ikiwiki-3.20190228-r1.ebuild similarity index 93% rename from www-apps/ikiwiki/ikiwiki-3.20190228.ebuild rename to www-apps/ikiwiki/ikiwiki-3.20190228-r1.ebuild index e7f335283b1d..3f95b9a35a56 100644 --- a/www-apps/ikiwiki/ikiwiki-3.20190228.ebuild +++ b/www-apps/ikiwiki/ikiwiki-3.20190228-r1.ebuild @@ -1,21 +1,21 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 inherit perl-module DESCRIPTION="A wiki compiler" HOMEPAGE="http://ikiwiki.info/" SRC_URI="mirror://debian/pool/main/i/ikiwiki/${PN}_${PV}.orig.tar.xz" +S="${WORKDIR}/IkiWiki-${PV}" LICENSE="GPL-2" SLOT="0" +KEYWORDS="amd64 ~x86" IUSE="extras minimal test" RESTRICT="!test? ( test )" -KEYWORDS="amd64 ~x86" -S=${WORKDIR}/IkiWiki-${PV} #Authen::Passphrase #Search::Xapian @@ -81,12 +81,13 @@ RDEPEND="${DEPEND} ) " -DEPEND="${DEPEND} - test? ( ${TEST_DEPEND} )" +BDEPEND="test? ( ${TEST_DEPEND} )" SRC_TEST=do src_prepare() { + default + #bug 498444 /usr/lib/plan9/lib/fortunes.index addpredict "/usr/lib/plan9/lib/fortunes" @@ -106,6 +107,6 @@ src_install() { #insinto /usr/share/doc/${PF}/examples #doins -r doc/examples/* - dohtml -r -A setup html/* + dodoc -r html/. dodoc debian/{NEWS,changelog} }
