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 9BF4813835A for ; Fri, 30 Apr 2021 14:30:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FE8AE0837; Fri, 30 Apr 2021 14:30:26 +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 7076CE0830 for ; Fri, 30 Apr 2021 14:30:26 +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 95A4C335CB7 for ; Fri, 30 Apr 2021 14:30:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE5D24C3 for ; Fri, 30 Apr 2021 14:30:22 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1619792452.8ed9368407d2a04b045c31d4f093f06f4beaffe7.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/validation-api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/validation-api/validation-api-1.0.0-r1.ebuild X-VCS-Directories: dev-java/validation-api/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 8ed9368407d2a04b045c31d4f093f06f4beaffe7 X-VCS-Branch: master Date: Fri, 30 Apr 2021 14:30:22 +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: 5014d834-f9d8-4e60-94a2-8315041475ab X-Archives-Hash: ff92a455128bb8a808be7eea0c5092b6 commit: 8ed9368407d2a04b045c31d4f093f06f4beaffe7 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Apr 29 16:23:19 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Apr 30 14:20:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ed93684 dev-java/validation-api: min java 1.8 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/20599 Signed-off-by: Miroslav Šulc gentoo.org> .../validation-api/validation-api-1.0.0-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-java/validation-api/validation-api-1.0.0-r1.ebuild b/dev-java/validation-api/validation-api-1.0.0-r1.ebuild new file mode 100644 index 00000000000..d7887694dca --- /dev/null +++ b/dev-java/validation-api/validation-api-1.0.0-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Bean Validation (JSR-303) API" +HOMEPAGE="http://fisheye.jboss.org/browse/Hibernate/beanvalidation/api/tags/v1_0_0_GA" +SRC_URI="https://repository.jboss.org/nexus/service/local/repo_groups/public/content/javax/validation/${PN}/${PV}.GA/${P}.GA-sources.jar" + +LICENSE="Apache-2.0" +SLOT="1.0" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" +BDEPEND="app-arch/unzip"