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 E20931388BF for ; Fri, 8 Jan 2016 10:30:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B35A21C00B; Fri, 8 Jan 2016 10:30:51 +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 C579121C00F for ; Fri, 8 Jan 2016 10:30:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EC5F3340A22 for ; Fri, 8 Jan 2016 10:30:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A061BFF for ; Fri, 8 Jan 2016 10:30:47 +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: <1452248911.d5ef13f95d0952df3c47edcadc3086f0e196b52d.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/snakeyaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/snakeyaml/snakeyaml-1.9-r2.ebuild X-VCS-Directories: dev-java/snakeyaml/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: d5ef13f95d0952df3c47edcadc3086f0e196b52d X-VCS-Branch: master Date: Fri, 8 Jan 2016 10:30:47 +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: 39207a98-1a38-4d01-9b87-99b2281997b2 X-Archives-Hash: 3efbbcae591768b4966412686bcc4127 commit: d5ef13f95d0952df3c47edcadc3086f0e196b52d Author: Patrice Clement gentoo org> AuthorDate: Fri Jan 8 09:14:01 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Jan 8 10:28:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ef13f9 dev-java/snakeyaml: EAPI 5 bump. Set SLOT back to 0. Package-Manager: portage-2.2.26 Signed-off-by: Patrice Clement gentoo.org> dev-java/snakeyaml/snakeyaml-1.9-r2.ebuild | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-java/snakeyaml/snakeyaml-1.9-r2.ebuild b/dev-java/snakeyaml/snakeyaml-1.9-r2.ebuild new file mode 100644 index 0000000..52a0c49 --- /dev/null +++ b/dev-java/snakeyaml/snakeyaml-1.9-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 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="A YAML 1.1 parser and emitter for Java 5" +HOMEPAGE="https://bitbucket.org/asomov/snakeyaml" +SRC_URI="https://snakeyaml.googlecode.com/files/SnakeYAML-all-${PV}.zip" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=virtual/jdk-1.6" +RDEPEND=">=virtual/jre-1.6" + +S="${WORKDIR}/${PN}" +JAVA_SRC_DIR="src/main/java" + +java_prepare() { + java-pkg_clean + + # Easier to use java-pkg-simple. + rm -v pom.xml || die +} + +src_install() { + java-pkg-simple_src_install + dodoc AUTHORS src/etc/announcement.msg +}