From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1080696-garchives=archives.gentoo.org@lists.gentoo.org> 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 7B38D138334 for <garchives@archives.gentoo.org>; Mon, 1 Apr 2019 08:53:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C8D7E08AE; Mon, 1 Apr 2019 08:53:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 61F59E08AD for <gentoo-commits@lists.gentoo.org>; Mon, 1 Apr 2019 08:53:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3FBF1335CEF for <gentoo-commits@lists.gentoo.org>; Mon, 1 Apr 2019 08:53:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B27D598 for <gentoo-commits@lists.gentoo.org>; Mon, 1 Apr 2019 08:53:11 +0000 (UTC) From: "Patrice Clement" <monsieurp@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" <monsieurp@gentoo.org> Message-ID: <1554108700.689cc3b78394743c6e5c49030706ec89db7ceca1.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/gnu-jaf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/gnu-jaf/gnu-jaf-1.1.1-r1.ebuild X-VCS-Directories: dev-java/gnu-jaf/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 689cc3b78394743c6e5c49030706ec89db7ceca1 X-VCS-Branch: master Date: Mon, 1 Apr 2019 08:53:11 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 30a81449-751e-433e-91f4-7e9460c0e872 X-Archives-Hash: fd233aaadcf5e60733ebc63b798d79b1 commit: 689cc3b78394743c6e5c49030706ec89db7ceca1 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Sun Mar 31 20:09:41 2019 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Mon Apr 1 08:51:40 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=689cc3b7 dev-java/gnu-jaf: EAPI 6 bump. Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 RepoMan-Options: --force dev-java/gnu-jaf/gnu-jaf-1.1.1-r1.ebuild | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-java/gnu-jaf/gnu-jaf-1.1.1-r1.ebuild b/dev-java/gnu-jaf/gnu-jaf-1.1.1-r1.ebuild new file mode 100644 index 00000000000..b71050b603d --- /dev/null +++ b/dev-java/gnu-jaf/gnu-jaf-1.1.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +inherit eutils java-pkg-2 java-ant-2 + +DESCRIPTION="GNU implementation of the JavaBeans Activation Framework" +HOMEPAGE="https://www.gnu.org/software/classpathx/jaf/jaf.html" +SRC_URI="mirror://gnu/classpathx/activation-${PV}.tar.gz" + +LICENSE="GPL-2-with-linking-exception" +SLOT="1" +KEYWORDS="amd64 ppc64 x86" + +DEPEND=" + >=virtual/jdk-1.8" + +RDEPEND=" + >=virtual/jre-1.8" + +S=${WORKDIR}/activation-${PV} + +EANT_BUILD_TARGET="activation.jar" + +DOCS=( AUTHORS ChangeLog ) + +src_install() { + java-pkg_dojar activation.jar + einstalldocs + use doc && java-pkg_dojavadoc docs + use source && java-pkg_dosrc source/* +}