forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
5f5f265
commit caa7c41
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST Term-Table-0.015.tar.gz 28737 BLAKE2B 4cdbb839467989d15e3ee3033efc7eb7081999d24ef7df05dcfce4fe18b03fab644af30cc5b6a28e5a4e8895a95a00f10b547ba98c4570da57ab9531ea04697c SHA512 2f5cbc28d0d0f76a6269892055871c103a65d9fd9836d3a0b7c7320cf1439d27cba596453f1d94bd324bd4d4dffdd0eb672801aa23f9a8609310a28eca15dd87 | ||
DIST Term-Table-0.016.tar.gz 28343 BLAKE2B b48ab1d17141a0d1fd5b19a5f7e217c236cb8fff1e9fad11c573a00573bdd9668689af5ab08ac2b91fc3efc119626f2a28490a7dfd5b2d17d692019216b979fd SHA512 b35700fba336f57e479d818ef74fc746979b3acb081a7cde816b39c5fb65bedd5217257426ba22bdcaf8d73292cd98efd23295144a996f7bd117ada775cdfe5b | ||
DIST Term-Table-0.017.tar.gz 28747 BLAKE2B 3bd9888003463e777259af17def0ccdb0924f21e16dcf11c3e8c9dc0313fe2bd844f25a1da446b54cbc0f1d9cf84dc646382f5979ba1e9839530693b47f62d21 SHA512 ee5b9188c99e9ebc346cb3395b3d36e4ca7e6f4965bd54be43646091a1f7babf2784e0c6ad5e263870ccfbb6d55896ce9a7815a73e1b1e620357885705220f32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DIST_AUTHOR=EXODIST | ||
DIST_VERSION=0.017 | ||
inherit perl-module optfeature | ||
|
||
DESCRIPTION="Format a header and rows into a table" | ||
|
||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" | ||
|
||
RDEPEND=" | ||
virtual/perl-Carp | ||
virtual/perl-Scalar-List-Utils | ||
" | ||
DEPEND=" | ||
${RDEPEND} | ||
virtual/perl-ExtUtils-MakeMaker | ||
test? ( | ||
>=virtual/perl-Test-Simple-1.302.97 | ||
) | ||
" | ||
|
||
pkg_postinst() { | ||
# optfeature "Improved Automatic detection of terminal width" Term::Size::Any | ||
optfeature "Improved rendering of UTF8 Characters" '>=dev-perl/Unicode-LineBreak-2013.100.0' | ||
optfeature "Automatic detection of terminal width" 'dev-perl/TermReadKey' | ||
} |