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/Net-IMAP-Simple: Bump to version 1.220.900 re bug #623004
- EAPI6 - Add USE=examples - Kill bad authortests - Document testing plans Upstream: - Fix unit tests against Gmail and Dovecot - Add support for data items in ->get - SimpleX no longer optional - Add put_with_date() Bug: https://bugs.gentoo.org/623004 Package-Manager: Portage-2.3.14, Repoman-2.3.6
- Loading branch information
1 parent
6b3046a
commit b10843e
Showing
2 changed files
with
34 additions
and
1 deletion.
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 Net-IMAP-Simple-1.2206.tar.gz 45239 SHA256 759431477fe5f2b9d408c33fd6364264ae3f6b4acce89081d2f6406ba5562991 SHA512 60a23afe3740ee12cf5f997fa14aaa7a3b39cc0ca71bae6420346e05e99cb0ae0ba51f5bd52156bd3cb4f59b17f7558481d70c6dcce497d9da05b1546adc2af1 WHIRLPOOL b583830e6d54fe4bb4a616fe390ca9e11dd6760e5a7534d2df7b48bf99397971c1d0102919ed1db9ee79f66cdd79948c10e7a920e44f66d7fa0dfcb0a5cb54f6 | ||
DIST Net-IMAP-Simple-1.2206.tar.gz 45239 BLAKE2B a4457263f2199c3c792a7bec197682534eae144483ff3978e9de70425ecd7956c832d86b7f05374282ae0833a076d9a9f82ba86c972c0850095c588ffc56232a SHA512 60a23afe3740ee12cf5f997fa14aaa7a3b39cc0ca71bae6420346e05e99cb0ae0ba51f5bd52156bd3cb4f59b17f7558481d70c6dcce497d9da05b1546adc2af1 | ||
DIST Net-IMAP-Simple-1.2209.tar.gz 45728 BLAKE2B ccd3648086d63e6865d83bd6c37e3f61ba536ea2be7771e3a674a0459a7455b21f50ad48a4ec7870a7cf88874e920bfb95a9200dae3ea6066b75fd91f061f508 SHA512 21da11eaa069fa6a9f63696fda8447001f345fb1562d8db74658e95be2dfbded323d7e1eaa2bf2d8909f38f27779a9048d820091600ee5f4b4af9bcf951cced1 |
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,32 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=JETTERO | ||
DIST_VERSION=1.2209 | ||
DIST_EXAMPLES=( "contrib/*" ) | ||
inherit perl-module | ||
|
||
DESCRIPTION="Perl extension for simple IMAP account handling" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
virtual/perl-IO | ||
dev-perl/Parse-RecDescent | ||
" | ||
DEPEND="${RDEPEND} | ||
virtual/perl-ExtUtils-MakeMaker | ||
" | ||
|
||
src_test() { | ||
if [[ -z ${NIS_TEST_HOST} ]]; then | ||
elog "Comprehensive testing requires some manual configuration, for details, see:" | ||
elog "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}" | ||
fi | ||
perl_rm_files t/{critic,pod{,_coverage}}.t | ||
perl-module_src_test | ||
} |