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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7EDEB158088 for ; Sun, 30 Jan 2022 09:00:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 887AA2BC022; Sun, 30 Jan 2022 09:00:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6349C2BC022 for ; Sun, 30 Jan 2022 09:00:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B91B3433F8 for ; Sun, 30 Jan 2022 09:00:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50EE928E for ; Sun, 30 Jan 2022 09:00:54 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1643533169.d4a5f9466e6a7a603bdc61e6a717c38e55088707.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/ant-javamail/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/ant-javamail/ant-javamail-1.10.9-r1.ebuild X-VCS-Directories: dev-java/ant-javamail/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: d4a5f9466e6a7a603bdc61e6a717c38e55088707 X-VCS-Branch: master Date: Sun, 30 Jan 2022 09:00:54 +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: a7a771af-cd6b-4b97-aeb3-34ce34a8dfe0 X-Archives-Hash: 8ec83f70d68c57747a071cd91d1076da commit: d4a5f9466e6a7a603bdc61e6a717c38e55088707 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Jan 29 17:01:03 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sun Jan 30 08:59:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a5f946 dev-java/ant-javamail: Switch to javax-mail Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> dev-java/ant-javamail/ant-javamail-1.10.9-r1.ebuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dev-java/ant-javamail/ant-javamail-1.10.9-r1.ebuild b/dev-java/ant-javamail/ant-javamail-1.10.9-r1.ebuild new file mode 100644 index 000000000000..4168b32358bc --- /dev/null +++ b/dev-java/ant-javamail/ant-javamail-1.10.9-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +ANT_TASK_JDKVER=1.8 +ANT_TASK_JREVER=1.8 +ANT_TASK_DEPNAME=( "gnu-jaf-1" "javax-mail" ) + +inherit ant-tasks + +KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +# needs some classes from javax.activation.* which are not in jdk 11 +DEPEND="virtual/jdk:1.8 + dev-java/gnu-jaf:1 + dev-java/javax-mail:0" +RDEPEND="${DEPEND}"