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.
dev-perl/Template-Toolkit: add 3.10.0
Closes: https://bugs.gentoo.org/863335 Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
e703143
commit 6916e57
Showing
2 changed files
with
50 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 +1,2 @@ | ||
DIST Template-Toolkit-3.009.tar.gz 523388 BLAKE2B b33569ef066d6896861f84299c36802fac81e48ff71460ea6acc41ca39e78cd5a37fecac4c5603077395a448a872b10b8c801eee1491b3da7d00479f70c337ed SHA512 940992d7e3059a64c273c2f0441a81e095560c35f4bb9ab75afb9eeeb58d043cc5ac9785e2eb79a6635480ade12771c75c632c755977124dbe7cbfae399f9972 | ||
DIST Template-Toolkit-3.010.tar.gz 522731 BLAKE2B 46b8f540ecda0def1b3a41dcd0beeb3d37863aeb85ba7e6ede0fc19fdaa93aa4c22675f4e2369e502a654aedd82698cf2fc1e8626bff3e60814c3b877acf7814 SHA512 9f6215eebe4151f93c0b83a49bc75fc6b2f00fff31729df9358b5bfd872e7a98207d146f4c1cb384a8cab002896b44cf09803a9049f9c8db0354b1d553c67452 |
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,49 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DIST_AUTHOR=ATOOMIC | ||
DIST_VERSION=3.010 | ||
inherit perl-module | ||
|
||
DESCRIPTION="The Template Toolkit" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" | ||
IUSE="xml gd mysql postgres latex vim-syntax test" | ||
|
||
RDEPEND=" | ||
dev-perl/Text-Autoformat | ||
mysql? ( dev-perl/DBD-mysql ) | ||
postgres? ( dev-perl/DBD-Pg ) | ||
>=dev-perl/AppConfig-1.560.0 | ||
" | ||
BDEPEND="${RDEPEND} | ||
test? ( dev-perl/CGI ) | ||
" | ||
PDEPEND=" | ||
dev-perl/Text-Autoformat | ||
vim-syntax? ( app-vim/tt2-syntax ) | ||
xml? ( dev-perl/Template-XML ) | ||
gd? ( dev-perl/Template-GD ) | ||
mysql? ( dev-perl/Template-DBI ) | ||
latex? ( dev-perl/Template-Plugin-Latex ) | ||
postgres? ( dev-perl/Template-DBI ) | ||
" | ||
|
||
myconf=( | ||
TT_XS_ENABLE=y | ||
TT_XS_DEFAULT=y | ||
TT_QUIET=y | ||
TT_ACCEPT=y | ||
) | ||
|
||
PERL_RM_FILES=( | ||
t/zz-plugin-leak.t | ||
t/zz-pmv.t | ||
t/zz-pod-coverage.t | ||
t/zz-pod-kwalitee.t | ||
t/zz-stash-xs-leak.t | ||
t/zz-url2.t | ||
) |