Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/txt2html/
Date: Thu, 30 Sep 2021 20:32:50
Message-Id: 1633033934.632f4315c70daa2d9dd9304529961bc0b6e280ea.dilfridge@gentoo
1 commit: 632f4315c70daa2d9dd9304529961bc0b6e280ea
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 30 20:23:37 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 30 20:32:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=632f4315
7
8 dev-perl/txt2html: Fix PV of ebuild
9
10 Package-Manager: Portage-3.0.26, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 .../{txt2html-2.53.ebuild => txt2html-2.530.0.ebuild} | 12 +++++++-----
14 1 file changed, 7 insertions(+), 5 deletions(-)
15
16 diff --git a/dev-perl/txt2html/txt2html-2.53.ebuild b/dev-perl/txt2html/txt2html-2.530.0.ebuild
17 similarity index 71%
18 rename from dev-perl/txt2html/txt2html-2.53.ebuild
19 rename to dev-perl/txt2html/txt2html-2.530.0.ebuild
20 index ce679dc5246..a9275b2bc2e 100644
21 --- a/dev-perl/txt2html/txt2html-2.53.ebuild
22 +++ b/dev-perl/txt2html/txt2html-2.530.0.ebuild
23 @@ -1,13 +1,14 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 +# Copyright 1999-2021 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=6
29 +EAPI=8
30
31 +DIST_VERSION=2.53
32 inherit perl-module
33
34 DESCRIPTION="Convert a plain text file to HTML"
35 HOMEPAGE="https://github.com/resurrecting-open-source-projects/txt2html"
36 -SRC_URI="https://github.com/resurrecting-open-source-projects/txt2html/archive/v${PV}.tar.gz -> ${P}.tar.gz"
37 +SRC_URI="https://github.com/resurrecting-open-source-projects/txt2html/archive/v${DIST_VERSION}.tar.gz -> ${PN}-${DIST_VERSION}.tar.gz"
38
39 SLOT="0"
40 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
41 @@ -18,6 +19,7 @@ RDEPEND="
42 dev-perl/YAML-Syck
43 virtual/perl-Getopt-Long"
44
45 -DEPEND="
46 +BDEPEND="
47 ${RDEPEND}
48 - dev-perl/Module-Build"
49 + dev-perl/Module-Build
50 +"