Gentoo Archives: gentoo-commits

From: Theo Anderson <telans@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lang/janet/
Date: Thu, 17 Jun 2021 05:55:51
Message-Id: 1623859485.b6c273c7f5beeab333ff2c3ce04862e1876fc1fc.telans@gentoo
1 commit: b6c273c7f5beeab333ff2c3ce04862e1876fc1fc
2 Author: Maciej Barć <xgqt <AT> riseup <DOT> net>
3 AuthorDate: Wed Jun 16 16:04:45 2021 +0000
4 Commit: Theo Anderson <telans <AT> posteo <DOT> de>
5 CommitDate: Wed Jun 16 16:04:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b6c273c7
7
8 dev-lang/janet: add version 1.16.1 and live
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Maciej Barć <xgqt <AT> riseup.net>
12
13 dev-lang/janet/Manifest | 1 +
14 dev-lang/janet/janet-1.16.1.ebuild | 20 ++++++++++++++++++++
15 dev-lang/janet/janet-9999.ebuild | 20 ++++++++++++++++++++
16 dev-lang/janet/metadata.xml | 21 +++++++++++++++++++++
17 4 files changed, 62 insertions(+)
18
19 diff --git a/dev-lang/janet/Manifest b/dev-lang/janet/Manifest
20 new file mode 100644
21 index 000000000..37b876947
22 --- /dev/null
23 +++ b/dev-lang/janet/Manifest
24 @@ -0,0 +1 @@
25 +DIST janet-1.16.1.tar.gz 493490 BLAKE2B 7542644a647d9d2ddd73d8e284f749cdad1900b8df2797c99a2f176c93eca412427b7f571493cfe62f64dd9c90bd12d8506b0f4b6b485ab2d3633e989e735cd9 SHA512 f4be0703676acad8896e41b46d79c4f6d99990c487028f1fd1abd681f756db119a06a5d6a0653b9301afcd62f45d6f1bb7876b9613c0ea28d7199e310a52895d
26
27 diff --git a/dev-lang/janet/janet-1.16.1.ebuild b/dev-lang/janet/janet-1.16.1.ebuild
28 new file mode 100644
29 index 000000000..1181913ec
30 --- /dev/null
31 +++ b/dev-lang/janet/janet-1.16.1.ebuild
32 @@ -0,0 +1,20 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit meson
39 +
40 +DESCRIPTION="Janet is a functional and imperative programming language"
41 +HOMEPAGE="https://janet-lang.org/"
42 +
43 +if [[ "${PV}" == *9999* ]]; then
44 + inherit git-r3
45 + EGIT_REPO_URI="https://github.com/janet-lang/${PN}.git"
46 +else
47 + SRC_URI="https://github.com/janet-lang/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
48 + KEYWORDS="~amd64"
49 +fi
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53
54 diff --git a/dev-lang/janet/janet-9999.ebuild b/dev-lang/janet/janet-9999.ebuild
55 new file mode 100644
56 index 000000000..1181913ec
57 --- /dev/null
58 +++ b/dev-lang/janet/janet-9999.ebuild
59 @@ -0,0 +1,20 @@
60 +# Copyright 1999-2021 Gentoo Authors
61 +# Distributed under the terms of the GNU General Public License v2
62 +
63 +EAPI=7
64 +
65 +inherit meson
66 +
67 +DESCRIPTION="Janet is a functional and imperative programming language"
68 +HOMEPAGE="https://janet-lang.org/"
69 +
70 +if [[ "${PV}" == *9999* ]]; then
71 + inherit git-r3
72 + EGIT_REPO_URI="https://github.com/janet-lang/${PN}.git"
73 +else
74 + SRC_URI="https://github.com/janet-lang/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
75 + KEYWORDS="~amd64"
76 +fi
77 +
78 +LICENSE="MIT"
79 +SLOT="0"
80
81 diff --git a/dev-lang/janet/metadata.xml b/dev-lang/janet/metadata.xml
82 new file mode 100644
83 index 000000000..ad2f8814e
84 --- /dev/null
85 +++ b/dev-lang/janet/metadata.xml
86 @@ -0,0 +1,21 @@
87 +<?xml version="1.0" encoding="UTF-8"?>
88 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
89 +<pkgmetadata>
90 + <maintainer type="person">
91 + <email>xgqt@××××××.net</email>
92 + <name>Maciej Barć</name>
93 + </maintainer>
94 + <longdescription lang="en">
95 + Janet is a functional and imperative programming language
96 + and bytecode interpreter. It is a lisp-like language,
97 + but lists are replaced by other data structures (arrays,
98 + tables (hash table), struct (immutable hash table), tuples).
99 + The language also supports bridging to native code written in C,
100 + meta-programming with macros, and bytecode assembly.
101 + </longdescription>
102 + <upstream>
103 + <bugs-to>https://github.com/janet-lang/janet</bugs-to>
104 + <doc>https://janet-lang.org/docs</doc>
105 + <remote-id type="github">janet-lang/janet</remote-id>
106 + </upstream>
107 +</pkgmetadata>