Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/zed/
Date: Tue, 07 Dec 2021 23:26:42
Message-Id: 1638919592.177260cc0353a1f30eaf54cad31e5f245fcd5a52.xgqt@gentoo
1 commit: 177260cc0353a1f30eaf54cad31e5f245fcd5a52
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 7 22:50:43 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 7 23:26:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=177260cc
7
8 dev-ml/zed: new package; add version 3.1.0
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
12
13 dev-ml/zed/Manifest | 1 +
14 dev-ml/zed/metadata.xml | 22 ++++++++++++++++++++++
15 dev-ml/zed/zed-3.1.0.ebuild | 22 ++++++++++++++++++++++
16 3 files changed, 45 insertions(+)
17
18 diff --git a/dev-ml/zed/Manifest b/dev-ml/zed/Manifest
19 new file mode 100644
20 index 000000000000..eaad68c3bbb2
21 --- /dev/null
22 +++ b/dev-ml/zed/Manifest
23 @@ -0,0 +1 @@
24 +DIST zed-3.1.0.tar.gz 45535 BLAKE2B 8c8898f01add91807fa282baae1c5ee34e77c5234e87e4c79c17a9f55756d3b4c2af5f0b01deb9414a657f63ea6cf6db44af7249adb0f2b147e923b4112a7dd7 SHA512 d4457af15f970adb7b1ed543017e590fa0ecc47171d6dd520a1397f21ce0219caa30a9db7bedb76c0602d4f6d0f0684012cc33feafe18b848d3261a460dea10a
25
26 diff --git a/dev-ml/zed/metadata.xml b/dev-ml/zed/metadata.xml
27 new file mode 100644
28 index 000000000000..b2be3f06ce46
29 --- /dev/null
30 +++ b/dev-ml/zed/metadata.xml
31 @@ -0,0 +1,22 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +
35 +<pkgmetadata>
36 + <maintainer type="project">
37 + <email>ml@g.o</email>
38 + <name>ML</name>
39 + </maintainer>
40 + <longdescription>
41 + Zed is an abstract engine for text edition. It can be used to write text
42 + editors, edition widgets, readlines, ... Zed uses Camomile to fully
43 + support the Unicode specification, and implements an UTF-8 encoded string
44 + type with validation, and a rope datastructure to achieve efficient
45 + operations on large Unicode buffers. Zed also features a regular expression
46 + search on ropes. To support efficient text edition capabilities,
47 + Zed provides macro recording and cursor management facilities.
48 + </longdescription>
49 + <upstream>
50 + <bugs-to>https://github.com/ocaml-community/zed/issues/</bugs-to>
51 + <remote-id type="github">ocaml-community/zed</remote-id>
52 + </upstream>
53 +</pkgmetadata>
54
55 diff --git a/dev-ml/zed/zed-3.1.0.ebuild b/dev-ml/zed/zed-3.1.0.ebuild
56 new file mode 100644
57 index 000000000000..64634262c7c0
58 --- /dev/null
59 +++ b/dev-ml/zed/zed-3.1.0.ebuild
60 @@ -0,0 +1,22 @@
61 +# Copyright 1999-2021 Gentoo Authors
62 +# Distributed under the terms of the GNU General Public License v2
63 +
64 +EAPI=7
65 +
66 +inherit dune
67 +
68 +DESCRIPTION="Abstract engine for text edition in OCaml"
69 +HOMEPAGE="https://github.com/ocaml-community/zed"
70 +SRC_URI="https://github.com/ocaml-community/zed/archive/${PV}.tar.gz -> ${P}.tar.gz"
71 +
72 +LICENSE="BSD"
73 +SLOT="0/${PV}"
74 +KEYWORDS="~amd64 ~x86"
75 +IUSE="+ocamlopt"
76 +
77 +RDEPEND="
78 + dev-ml/camomile:=
79 + dev-ml/charinfo_width:=
80 + dev-ml/react:=
81 +"
82 +DEPEND="${RDEPEND}"