diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-09-30 22:23:37 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-09-30 22:32:14 +0200 |
commit | 632f4315c70daa2d9dd9304529961bc0b6e280ea (patch) | |
tree | 4412bb9702ed09d94dbc5ded99ac29cec48c258f /dev-perl/txt2html | |
parent | dev-perl/tkispell: Version bump 0.20 (diff) | |
download | gentoo-632f4315c70daa2d9dd9304529961bc0b6e280ea.tar.gz gentoo-632f4315c70daa2d9dd9304529961bc0b6e280ea.tar.bz2 gentoo-632f4315c70daa2d9dd9304529961bc0b6e280ea.zip |
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@gentoo.org>
Diffstat (limited to 'dev-perl/txt2html')
-rw-r--r-- | dev-perl/txt2html/txt2html-2.530.0.ebuild (renamed from dev-perl/txt2html/txt2html-2.53.ebuild) | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/dev-perl/txt2html/txt2html-2.53.ebuild b/dev-perl/txt2html/txt2html-2.530.0.ebuild index ce679dc52463..a9275b2bc2e5 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 +" |