From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 462D7158094 for ; Tue, 26 Jul 2022 19:27:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D0CEE0ACC; Tue, 26 Jul 2022 19:27:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C179E0ACC for ; Tue, 26 Jul 2022 19:27:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 16A8D341168 for ; Tue, 26 Jul 2022 19:27:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B3F554F for ; Tue, 26 Jul 2022 19:27:37 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1658863623.86d7dd19380a36fa63820b7ec980c13c8fe8fa84.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/disc-cover/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild app-cdr/disc-cover/disc-cover-1.5.6-r2.ebuild X-VCS-Directories: app-cdr/disc-cover/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 86d7dd19380a36fa63820b7ec980c13c8fe8fa84 X-VCS-Branch: master Date: Tue, 26 Jul 2022 19:27:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 90a91a59-4595-4478-8287-cdb11bbd0032 X-Archives-Hash: ecc2eba93c06b3fb4bd280e7f71dc411 commit: 86d7dd19380a36fa63820b7ec980c13c8fe8fa84 Author: David Seifert gentoo org> AuthorDate: Tue Jul 26 19:27:03 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Jul 26 19:27:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d7dd19 app-cdr/disc-cover: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...-1.5.6-r1.ebuild => disc-cover-1.5.6-r2.ebuild} | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild b/app-cdr/disc-cover/disc-cover-1.5.6-r2.ebuild similarity index 71% rename from app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild rename to app-cdr/disc-cover/disc-cover-1.5.6-r2.ebuild index 6e832050733c..a1ac3c577040 100644 --- a/app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild +++ b/app-cdr/disc-cover/disc-cover-1.5.6-r2.ebuild @@ -1,22 +1,20 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Creates CD-Covers via LaTeX by fetching cd-info from freedb.org or local file" HOMEPAGE="https://web.archive.org/web/20151104062521/http://www.vanhemert.co.uk/disc-cover.html" SRC_URI="http://www.vanhemert.co.uk/files/${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="amd64 ppc sparc x86" -IUSE="" SLOT="0" +KEYWORDS="amd64 ppc sparc x86" -DEPEND="dev-lang/perl" -RDEPEND="${DEPEND} +BDEPEND="dev-lang/perl" +RDEPEND="${BDEPEND} dev-perl/Audio-CD-disc-cover - virtual/latex-base -" + virtual/latex-base" src_compile() { pod2man disc-cover > disc-cover.1 || die @@ -24,8 +22,10 @@ src_compile() { src_install() { dobin disc-cover - dodoc AUTHORS CHANGELOG TODO + + einstalldocs doman disc-cover.1 - insinto /usr/share/${PN}/templates - doins templates/* + + insinto /usr/share/disc-cover/templates + doins -r templates/. }