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 1CBAC138334 for ; Sun, 5 Aug 2018 15:04:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F094AE07AE; Sun, 5 Aug 2018 15:04:25 +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 C24BCE07AE for ; Sun, 5 Aug 2018 15:04:25 +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 AAEEE335CDB for ; Sun, 5 Aug 2018 15:04:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E666E387 for ; Sun, 5 Aug 2018 15:04:21 +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: <1533481455.08ba8294ca26eeff0e4f6ac3078639fef82369aa.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jopt-simple/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jopt-simple/Manifest dev-java/jopt-simple/jopt-simple-4.6.ebuild X-VCS-Directories: dev-java/jopt-simple/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 08ba8294ca26eeff0e4f6ac3078639fef82369aa X-VCS-Branch: master Date: Sun, 5 Aug 2018 15:04:21 +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: 20a0179b-0a56-49c2-8fbf-fb86c68a2da0 X-Archives-Hash: e6d6e428e895957e2da51ff255529c97 commit: 08ba8294ca26eeff0e4f6ac3078639fef82369aa Author: Patrice Clement gentoo org> AuthorDate: Sun Aug 5 15:02:00 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Aug 5 15:04:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ba8294 dev-java/jopt-simple: add back version 4.6 with a SLOT. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-java/jopt-simple/Manifest | 1 + dev-java/jopt-simple/jopt-simple-4.6.ebuild | 32 +++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-java/jopt-simple/Manifest b/dev-java/jopt-simple/Manifest index bff29c0fedd..5e45f7495c7 100644 --- a/dev-java/jopt-simple/Manifest +++ b/dev-java/jopt-simple/Manifest @@ -1 +1,2 @@ +DIST jopt-simple-4.6.tar.gz 107082 BLAKE2B 622144647b24049861398cc99ca3cc268baae045f8ca23cdd5bddb2e656bc97d17397ae752ca9a6edc91b8486e1e55ce19ba335d2afadf6c6df4f858faf43a1e SHA512 c2f467521f6419f91206f6036d420671b02106beadff3fc51d1893e6f3f6302b8fcbb31957327b9e40cbfd7a7d55030e0c999d9570d7e29fe7a4375bab10ed76 DIST jopt-simple-5.0.tar.gz 119502 BLAKE2B 975a0d338fa3154963954fd3b218c944dded023b3a2da59ee2671c73450a578dbf1aee8e52b9f715839e15c1937e0a493c4b37518b73038aa017e1d0ec1ca06a SHA512 f440c62cb307aad7cab64f091c82f78e11a117e60aaadf71883c149a622576531272de3d67859f6df093df658bb0bfb435d9bb33bc729bcda24dcc99d27369ff diff --git a/dev-java/jopt-simple/jopt-simple-4.6.ebuild b/dev-java/jopt-simple/jopt-simple-4.6.ebuild new file mode 100644 index 00000000000..496fbd46f1c --- /dev/null +++ b/dev-java/jopt-simple/jopt-simple-4.6.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="A Java library for parsing command line options" +HOMEPAGE="https://pholser.github.com/jopt-simple/" +SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> ${P}.tar.gz" +LICENSE="MIT" +SLOT="4.6" +KEYWORDS="~amd64 ~ppc64 ~x86" + +RDEPEND=">=virtual/jre-1.6" +DEPEND=">=virtual/jdk-1.6" + +JAVA_SRC_DIR="src/main/java" + +S="${WORKDIR}/${PN}-${PN}-8808a39" + +src_prepare() { + default + rm -v pom.xml || die +} + +src_install() { + default + java-pkg-simple_src_install +}