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 48853158086 for ; Wed, 27 Oct 2021 06:16:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A70D3E07B3; Wed, 27 Oct 2021 06:16:39 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 80413E07B3 for ; Wed, 27 Oct 2021 06:16:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7CC29343273 for ; Wed, 27 Oct 2021 06:16:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8E8115A for ; Wed, 27 Oct 2021 06:16:36 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1635315387.57a9e50182abc68bbbb6f34090a6fe67e233f4d0.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/mill-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/mill-bin/Manifest dev-java/mill-bin/metadata.xml dev-java/mill-bin/mill-bin-0.9.9.ebuild X-VCS-Directories: dev-java/mill-bin/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 57a9e50182abc68bbbb6f34090a6fe67e233f4d0 X-VCS-Branch: master Date: Wed, 27 Oct 2021 06:16:36 +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: 5a83da1f-6727-4377-84a4-a28812c644c0 X-Archives-Hash: b52fbfb616182357bdf3252f7cd610f6 commit: 57a9e50182abc68bbbb6f34090a6fe67e233f4d0 Author: Florian Schmaus gentoo org> AuthorDate: Wed Oct 27 06:15:40 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Oct 27 06:16:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a9e501 dev-java/mill-bin: initial import (moved from ::guru) Signed-off-by: Florian Schmaus gentoo.org> dev-java/mill-bin/Manifest | 1 + dev-java/mill-bin/metadata.xml | 8 ++++++++ dev-java/mill-bin/mill-bin-0.9.9.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 31 insertions(+) diff --git a/dev-java/mill-bin/Manifest b/dev-java/mill-bin/Manifest new file mode 100644 index 00000000000..83810856b3c --- /dev/null +++ b/dev-java/mill-bin/Manifest @@ -0,0 +1 @@ +DIST 0.9.9-assembly 63255731 BLAKE2B ae4112a087b5aa6205a87fbef690820b4fde0d72962bb65d479bcdb666cf839df180935674947d53e81711377f0a8bd81bda5cdd8341027c9a2bd3bbc1869a3f SHA512 b7589c36a0607602150378c94c5cb6aba56a70ebe73517c081fbd603ad948bbff5302c17d0cecaac32741452598643089350348474988c0ff973e4bf620a7b3c diff --git a/dev-java/mill-bin/metadata.xml b/dev-java/mill-bin/metadata.xml new file mode 100644 index 00000000000..7a926064dca --- /dev/null +++ b/dev-java/mill-bin/metadata.xml @@ -0,0 +1,8 @@ + + + + + flow@gentoo.org + Florian Schmaus + + diff --git a/dev-java/mill-bin/mill-bin-0.9.9.ebuild b/dev-java/mill-bin/mill-bin-0.9.9.ebuild new file mode 100644 index 00000000000..abd33534fe9 --- /dev/null +++ b/dev-java/mill-bin/mill-bin-0.9.9.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN=${PN%-bin} + +DESCRIPTION="A Java/Scala build tool" +HOMEPAGE="https://com-lihaoyi.github.io/mill/" +SRC_URI="https://github.com/com-lihaoyi/${MY_PN}/releases/download/${PV}/${PV}-assembly" +KEYWORDS="~amd64 ~x86" + +LICENSE="MIT" +SLOT="0" + +RDEPEND=">=virtual/jre-1.8:*" + +S="${WORKDIR}" + +src_install() { + newbin "${DISTDIR}/${PV}-assembly" ${MY_PN} +}