Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ammonite-repl-bin/
Date: Tue, 08 Feb 2022 10:20:39
Message-Id: 1644315617.c21edb1ac39d24797ab1cbb73ffbffd6c64226bf.flow@gentoo
1 commit: c21edb1ac39d24797ab1cbb73ffbffd6c64226bf
2 Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 8 10:19:07 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 8 10:20:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c21edb1a
7
8 dev-lang/ammonite-repl-bin: add 2.5.2
9
10 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
11
12 dev-lang/ammonite-repl-bin/Manifest | 1 +
13 .../ammonite-repl-bin-2.5.2.ebuild | 26 ++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-lang/ammonite-repl-bin/Manifest b/dev-lang/ammonite-repl-bin/Manifest
17 index d7138c6c4e43..0a2e5d59bd23 100644
18 --- a/dev-lang/ammonite-repl-bin/Manifest
19 +++ b/dev-lang/ammonite-repl-bin/Manifest
20 @@ -1,3 +1,4 @@
21 DIST ammonite-2.4.1 48567893 BLAKE2B d7096170c1072aabdc2b4374fdc89bee390a04fc01748c985eeb8be9cb2bc5d09334644c21b3bb4d2eab436b7df1ff8c915a26cde76d38a5765b29673d09ccf9 SHA512 7e65c7789c42e1ac23455dd27702baf80c3f7c554403f3a34bb939283328b719212af0a824152875e09a6120cc6c67405c1dce0e5da1d07e4e185002ae4672ca
22 DIST ammonite-2.5.0 48405047 BLAKE2B 5d3506a89f59adde33447f22ed1a480161c6a635cd4710320f7ac66991e6171e5addc9e5ba62013f95b4e4f969899bce5b009853c36e0e966bff41c6afa69041 SHA512 8878a53b42db5edfe5a489c6abba16d985c94adc6b59ce8cac077a4e1eb7b9ad40be4bc1c27a28bbb277a47bab581a60b28ccded90081d216194d45086701550
23 DIST ammonite-repl-bin-2.5.1 48408804 BLAKE2B 20d9738229c054e94393d50c86996a8a3fb8ecac1bfebe4b61d989edf0921c027bd5c1b48304bd69d9410c84debe9439aa315678fa9e4146bda845583c829fd9 SHA512 bb45d8790bf5ae853d22501b47e20e532b8a78f61dc63fbeb052b9a704befe1facb5572a3cdf9f7329f1dbca1637e9f191b10be761cb657e293506fb3fdc749c
24 +DIST ammonite-repl-bin-2.5.2 48408913 BLAKE2B 0ee4111ca8bf1dd9fc7f1749b946144e57e29638caf060fedbe93acb93fdda83c3c8e7d75691083c6c64b67fbec0361bd8ff94d7c9d3c5310ea485ee94425da0 SHA512 80f5fd4d0f569bbecd1f4073363a12a8877c17ed9b172b4ab3198ea10d9b1afe4f67f8bba1d8cd9eced3b3768c55231b6560394d2bb2d3e1f4316a2f4b5a8198
25
26 diff --git a/dev-lang/ammonite-repl-bin/ammonite-repl-bin-2.5.2.ebuild b/dev-lang/ammonite-repl-bin/ammonite-repl-bin-2.5.2.ebuild
27 new file mode 100644
28 index 000000000000..3cb6ca4d0ff0
29 --- /dev/null
30 +++ b/dev-lang/ammonite-repl-bin/ammonite-repl-bin-2.5.2.ebuild
31 @@ -0,0 +1,26 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +SCALA_VERSION="2.13"
38 +
39 +DESCRIPTION="Scala language-based scripting and REPL"
40 +HOMEPAGE="https://ammonite.io/"
41 +SRC_URI="https://github.com/com-lihaoyi/Ammonite/releases/download/${PV}/${SCALA_VERSION}-${PV} -> ${P}"
42 +
43 +KEYWORDS="~amd64 ~x86"
44 +LICENSE="MIT"
45 +SLOT="0"
46 +
47 +S="${WORKDIR}"
48 +
49 +RDEPEND=">=virtual/jre-1.8:*"
50 +
51 +src_unpack() {
52 + :
53 +}
54 +
55 +src_install() {
56 + newbin "${DISTDIR}"/${P} amm
57 +}