From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0569B138359 for ; Fri, 7 Aug 2020 20:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4ECBFE08E5; Fri, 7 Aug 2020 20:48:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34EB3E08E5 for ; Fri, 7 Aug 2020 20:48:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02E3534F4DF for ; Fri, 7 Aug 2020 20:48:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6866D239 for ; Fri, 7 Aug 2020 20:48:11 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1596833257.18bad13152fd8d18f6a475bb89c9725a69150c9b.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-Address-XS/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Email-Address-XS/Email-Address-XS-1.40.0.ebuild dev-perl/Email-Address-XS/Manifest X-VCS-Directories: dev-perl/Email-Address-XS/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 18bad13152fd8d18f6a475bb89c9725a69150c9b X-VCS-Branch: master Date: Fri, 7 Aug 2020 20:48:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c151f949-e965-414f-bed7-baf133dd2fa1 X-Archives-Hash: 0d9c84c78d1c2ef596ea3c1efbc9b19d commit: 18bad13152fd8d18f6a475bb89c9725a69150c9b Author: Kent Fredric gentoo org> AuthorDate: Fri Aug 7 20:47:06 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Fri Aug 7 20:47:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18bad131 dev-perl/Email-Address-XS: Bump to version 1.40.0 - EAPI7 - Fix LICENSE - Ensure CFLAGS passed to make/compiler Upstream: - add support for parsing and generating addresses with nul character - fix compose_address when both user and host contain non-ASCII 8bit characters - Fix possible memory leak in dovecot parser - Update dovecot parser from dovecot version 2.3.0.1 - Fix reading from unititialized memory when formatting invalid addresses without user or host part - Fix formatting email addresses when user starts with nul byte - Prefer returning empty string from format functions instead of generating invalid email addresses. - Fix dovecot parser to disallow leading dot in dot-atom - Fix generating/validating email addresses with empty user part - Fix generating/validating email addresses with leading/trailing dot in user part. - try to parse invalid email addresses and mark them as invalid - Don't escape apostrophe's in generated email addresses. - Fix formatting email addresses which contain NUL, TAB, LF or CR - Fix formatting comments which contain NUL bytes. Security: - nul character handling changes in parsing could be a vuln, depending on what is done with the result, esp if it doesn't error ( I haven't determined what it does yet ) - "Possible" memory leaks in dovecot parser fixed. - Cribs some of dovcot parse code and may be subject to vulnerabilities in that file in previous versions - Fixed uninitialized memory access in certain address combinations Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> .../Email-Address-XS-1.40.0.ebuild | 33 ++++++++++++++++++++++ dev-perl/Email-Address-XS/Manifest | 1 + 2 files changed, 34 insertions(+) diff --git a/dev-perl/Email-Address-XS/Email-Address-XS-1.40.0.ebuild b/dev-perl/Email-Address-XS/Email-Address-XS-1.40.0.ebuild new file mode 100644 index 00000000000..ab5666eb7bd --- /dev/null +++ b/dev-perl/Email-Address-XS/Email-Address-XS-1.40.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=PALI +DIST_VERSION=1.04 +inherit perl-module + +DESCRIPTION="Parse and format RFC 2822 email addresses and groups" +LICENSE="|| ( Artistic GPL-1+ ) MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + virtual/perl-Carp + virtual/perl-Exporter + virtual/perl-XSLoader +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-Test-Simple + ) +" +src_compile() { + mymake=( + "OPTIMIZE=${CFLAGS}" + ) + perl-module_src_compile +} diff --git a/dev-perl/Email-Address-XS/Manifest b/dev-perl/Email-Address-XS/Manifest index dfdbf84be29..45b5c9348d5 100644 --- a/dev-perl/Email-Address-XS/Manifest +++ b/dev-perl/Email-Address-XS/Manifest @@ -1 +1,2 @@ DIST Email-Address-XS-1.01.tar.gz 26805 BLAKE2B 657c9b33e2008ba35dbd46bde1fd11b90112f1d2afc422b2cb97c041067c5ac435e7662d8c083866b0e9efb98b94987bbe1a04d284c960a1fcd047cdc1badf36 SHA512 399d8365f2d9d642f482b5fcb4400cb66923f99938180ed1e68c3c7729d44eb53159889780ce6bb97857ab8ef3bc0c4f2dbe74ee453ab250e003761f66c28449 +DIST Email-Address-XS-1.04.tar.gz 29112 BLAKE2B 8ad1ed264a1d568839864946a22063e6e591663bd8ae3d857e67ec187757a05c1a72d48125b154ce625cf32ad1abff7829aba746d68cfa30ec5244796c182acf SHA512 2dda846f998cdc2112067b7a994e86162de765a0a23f2288cb8292f26b9ac07171452961389badb678d5568c7f4b0966d9dc97c1d91cd4be2b9767f0e615b1d8