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 127EF1382C5 for ; Sun, 25 Apr 2021 10:49:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48E2EE07F9; Sun, 25 Apr 2021 10:49:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 33653E07F9 for ; Sun, 25 Apr 2021 10:49:35 +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 EFC103412C3 for ; Sun, 25 Apr 2021 10:49:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C2074C3 for ; Sun, 25 Apr 2021 10:49:32 +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: <1619347767.c8b818426b35a308ed45c23c02a607b4c070cc6b.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/jacksum/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/jacksum/jacksum-1.7.0-r1.ebuild X-VCS-Directories: app-crypt/jacksum/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: c8b818426b35a308ed45c23c02a607b4c070cc6b X-VCS-Branch: master Date: Sun, 25 Apr 2021 10:49:32 +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: b452c832-3b19-4b26-93be-f12934a1817f X-Archives-Hash: ab96e3f07374ea2d0821e0ad4cb6140c commit: c8b818426b35a308ed45c23c02a607b4c070cc6b Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Apr 25 09:14:03 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sun Apr 25 10:49:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b81842 app-crypt/jacksum: min java 1.8 Bug: https://bugs.gentoo.org/784893 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/20535 Signed-off-by: Miroslav Šulc gentoo.org> app-crypt/jacksum/jacksum-1.7.0-r1.ebuild | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/app-crypt/jacksum/jacksum-1.7.0-r1.ebuild b/app-crypt/jacksum/jacksum-1.7.0-r1.ebuild new file mode 100644 index 00000000000..9f51c848384 --- /dev/null +++ b/app-crypt/jacksum/jacksum-1.7.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Java utility for computing and verifying checksums: CRC*, MD*, etc." +HOMEPAGE="https://jacksum.loefflmann.net/en/" +SRC_URI="mirror://sourceforge/project/jacksum/${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" + +DEPEND=">=virtual/jdk-1.8:* + dev-java/ant-core" +RDEPEND=">=virtual/jre-1.8:*" +BDEPEND="app-arch/unzip" + +S="${WORKDIR}" + +src_unpack() { + default + unpack ./source/${PN}-src.zip + rm *.jar || die +} + +src_install() { + java-pkg_dojar ${PN}.jar + dodoc history.txt readme.txt help/${PN}/* + + java-pkg_dolauncher ${PN} --jar ${PN}.jar +}