From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DE5F413881E for ; Tue, 29 Sep 2015 08:15:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF535E080B; Tue, 29 Sep 2015 08:15:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4ADA121C002 for ; Tue, 29 Sep 2015 08:15:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30DF234086C for ; Tue, 29 Sep 2015 08:15:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB24623A for ; Tue, 29 Sep 2015 08:15:28 +0000 (UTC) From: "Patrice Clement" 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" Message-ID: <1443514197.b621db10fd30ef45e2ed0d7413afd6077e1f5beb.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/stax2-api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/stax2-api/stax2-api-4.0.0-r1.ebuild X-VCS-Directories: dev-java/stax2-api/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: b621db10fd30ef45e2ed0d7413afd6077e1f5beb X-VCS-Branch: master Date: Tue, 29 Sep 2015 08:15:28 +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-Archives-Salt: 57bed591-14d2-4ccc-9041-911f794b9115 X-Archives-Hash: aef14628482021bf3958830c612b48e6 commit: b621db10fd30ef45e2ed0d7413afd6077e1f5beb Author: Patrice Clement gentoo org> AuthorDate: Tue Sep 29 08:09:57 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Sep 29 08:09:57 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b621db10 dev-java/stax2-api: Removes java-virtual/stax-api dependency and fixes bug 561504. Package-Manager: portage-2.2.18 Signed-off-by: Patrice Clement gentoo.org> dev-java/stax2-api/stax2-api-4.0.0-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-java/stax2-api/stax2-api-4.0.0-r1.ebuild b/dev-java/stax2-api/stax2-api-4.0.0-r1.ebuild new file mode 100644 index 0000000..c0d2d61 --- /dev/null +++ b/dev-java/stax2-api/stax2-api-4.0.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ +EAPI=5 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Extended Stax (STandard Api for Xml procesing) API" +HOMEPAGE="https://github.com/FasterXML/stax2-api" +SRC_URI="https://github.com/FasterXML/${PN}/archive/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=virtual/jre-1.6" +DEPEND=">=virtual/jdk-1.6" + +S="${WORKDIR}/${PN}-${P}/src" +JAVA_SRC_DIR="main/java" + +src_install() { + java-pkg-simple_src_install + dodoc ../README.md ../release-notes/VERSION +}