From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1325676-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 75084158017
	for <garchives@archives.gentoo.org>; Thu, 30 Sep 2021 20:32:50 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id CA49CE091C;
	Thu, 30 Sep 2021 20:32:49 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id B1F23E091C
	for <gentoo-commits@lists.gentoo.org>; Thu, 30 Sep 2021 20:32:49 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id A0F84342D22
	for <gentoo-commits@lists.gentoo.org>; Thu, 30 Sep 2021 20:32:48 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id C12E411F
	for <gentoo-commits@lists.gentoo.org>; Thu, 30 Sep 2021 20:32:40 +0000 (UTC)
From: "Andreas K. Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" <dilfridge@gentoo.org>
Message-ID: <1633033934.632f4315c70daa2d9dd9304529961bc0b6e280ea.dilfridge@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/txt2html/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-perl/txt2html/txt2html-2.53.ebuild dev-perl/txt2html/txt2html-2.530.0.ebuild
X-VCS-Directories: dev-perl/txt2html/
X-VCS-Committer: dilfridge
X-VCS-Committer-Name: Andreas K. Hüttel
X-VCS-Revision: 632f4315c70daa2d9dd9304529961bc0b6e280ea
X-VCS-Branch: master
Date: Thu, 30 Sep 2021 20:32:40 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: d05d927a-fac0-44ba-a020-9f9007c94cae
X-Archives-Hash: 1ad7ee0c66d95d1a6c44656ca02ee823

commit:     632f4315c70daa2d9dd9304529961bc0b6e280ea
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 30 20:23:37 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Sep 30 20:32:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=632f4315

dev-perl/txt2html: Fix PV of ebuild

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 .../{txt2html-2.53.ebuild => txt2html-2.530.0.ebuild}        | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/dev-perl/txt2html/txt2html-2.53.ebuild b/dev-perl/txt2html/txt2html-2.530.0.ebuild
similarity index 71%
rename from dev-perl/txt2html/txt2html-2.53.ebuild
rename to dev-perl/txt2html/txt2html-2.530.0.ebuild
index ce679dc5246..a9275b2bc2e 100644
--- a/dev-perl/txt2html/txt2html-2.53.ebuild
+++ b/dev-perl/txt2html/txt2html-2.530.0.ebuild
@@ -1,13 +1,14 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
+DIST_VERSION=2.53
 inherit perl-module
 
 DESCRIPTION="Convert a plain text file to HTML"
 HOMEPAGE="https://github.com/resurrecting-open-source-projects/txt2html"
-SRC_URI="https://github.com/resurrecting-open-source-projects/txt2html/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/resurrecting-open-source-projects/txt2html/archive/v${DIST_VERSION}.tar.gz -> ${PN}-${DIST_VERSION}.tar.gz"
 
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
@@ -18,6 +19,7 @@ RDEPEND="
 	dev-perl/YAML-Syck
 	virtual/perl-Getopt-Long"
 
-DEPEND="
+BDEPEND="
 	${RDEPEND}
-	dev-perl/Module-Build"
+	dev-perl/Module-Build
+"