Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/tyxml/
Date: Sun, 03 Apr 2022 23:49:43
Message-Id: 1649029566.a8683380b1c9b950e00221097b5fbefaac925752.Alessandro-Barbieri@gentoo
1 commit: a8683380b1c9b950e00221097b5fbefaac925752
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sat Apr 2 22:44:21 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sun Apr 3 23:46:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a8683380
7
8 dev-ml/tyxml: initial import
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-ml/tyxml/Manifest | 1 +
13 dev-ml/tyxml/metadata.xml | 12 ++++++++++++
14 dev-ml/tyxml/tyxml-4.5.0.ebuild | 26 ++++++++++++++++++++++++++
15 3 files changed, 39 insertions(+)
16
17 diff --git a/dev-ml/tyxml/Manifest b/dev-ml/tyxml/Manifest
18 new file mode 100644
19 index 000000000..f430375f8
20 --- /dev/null
21 +++ b/dev-ml/tyxml/Manifest
22 @@ -0,0 +1 @@
23 +DIST tyxml-4.5.0.tar.gz 125979 BLAKE2B c15b5f5926f4eafcf3f8eaa85b7fa5d6453d7c5d9a331c6a88e2da94a4cab24ab9b53e82020ec2f7dc3e63eb06ceb24a14039736e373fbefa7addbccf8198e50 SHA512 44591c4c32cb7e9425c1ca257624f12d6301709d33522672e13d28a6397da7e6b4eac0780e384763f26d5bc0e935a042d8224c22ea29a16d924f03a3c5b5a714
24
25 diff --git a/dev-ml/tyxml/metadata.xml b/dev-ml/tyxml/metadata.xml
26 new file mode 100644
27 index 000000000..15bf21728
28 --- /dev/null
29 +++ b/dev-ml/tyxml/metadata.xml
30 @@ -0,0 +1,12 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <description>co-maintainers welcome</description>
36 + <email>lssndrbarbieri@×××××.com</email>
37 + <name>Alessandro Barbieri</name>
38 + </maintainer>
39 + <upstream>
40 + <remote-id type="github">ocsigen/tyxml</remote-id>
41 + </upstream>
42 +</pkgmetadata>
43
44 diff --git a/dev-ml/tyxml/tyxml-4.5.0.ebuild b/dev-ml/tyxml/tyxml-4.5.0.ebuild
45 new file mode 100644
46 index 000000000..ca759f68d
47 --- /dev/null
48 +++ b/dev-ml/tyxml/tyxml-4.5.0.ebuild
49 @@ -0,0 +1,26 @@
50 +# Copyright 1999-2022 Gentoo Authors
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=8
54 +
55 +inherit dune
56 +
57 +DESCRIPTION="A libary to build xml trees typechecked by OCaml"
58 +HOMEPAGE="
59 + https://ocsigen.org/tyxml/
60 + https://github.com/ocsigen/tyxml
61 +"
62 +SRC_URI="https://github.com/ocsigen/tyxml/archive/${PV}.tar.gz -> ${P}.tar.gz"
63 +
64 +LICENSE="LGPL-2.1-with-linking-exception"
65 +SLOT="0/${PV}"
66 +KEYWORDS="~amd64"
67 +IUSE="ocamlopt"
68 +
69 +DEPEND="
70 + dev-ml/markup
71 + dev-ml/re
72 + dev-ml/ppxlib
73 + dev-ml/uutf
74 +"
75 +RDEPEND="${DEPEND}"