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-python/strictyaml/
Date: Sat, 19 Jun 2021 21:53:18
Message-Id: 1624139585.34ff4c8eac5ec39f336a2216d61362d8e5e46a51.Alessandro-Barbieri@gentoo
1 commit: 34ff4c8eac5ec39f336a2216d61362d8e5e46a51
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sat Jun 19 21:28:50 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sat Jun 19 21:53:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=34ff4c8e
7
8 dev-python/strictyaml: initial import
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/strictyaml/Manifest | 1 +
13 dev-python/strictyaml/metadata.xml | 10 ++++++++++
14 dev-python/strictyaml/strictyaml-1.3.2.ebuild | 21 +++++++++++++++++++++
15 3 files changed, 32 insertions(+)
16
17 diff --git a/dev-python/strictyaml/Manifest b/dev-python/strictyaml/Manifest
18 new file mode 100644
19 index 000000000..d1006928d
20 --- /dev/null
21 +++ b/dev-python/strictyaml/Manifest
22 @@ -0,0 +1 @@
23 +DIST strictyaml-1.3.2.tar.gz 115883 BLAKE2B 5e56bd46c7ecf8194ec786282ad569b6b50c2151f4250ab93c62df795d5d028e718a91bef329bf4c7fff4117433cf8fe9e24fc96a2c11db4434ac2eb914d2a45 SHA512 35d1a0fc48518911944ddaff37d71f9c2ad8bdc8f2e7a94693c88f7283da39cac4ff28eccdf01be41295649cd362a1fa93c9022e19e9837c392e7e31800205e9
24
25 diff --git a/dev-python/strictyaml/metadata.xml b/dev-python/strictyaml/metadata.xml
26 new file mode 100644
27 index 000000000..0dcdc7b36
28 --- /dev/null
29 +++ b/dev-python/strictyaml/metadata.xml
30 @@ -0,0 +1,10 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <!-- maintainer-needed -->
35 + <upstream>
36 + <bugs-to>https://github.com/crdoconnor/strictyaml/issues</bugs-to>
37 + <remote-id type="github">crdoconnor/strictyaml</remote-id>
38 + <remote-id type="pypi">strictyaml</remote-id>
39 + </upstream>
40 +</pkgmetadata>
41
42 diff --git a/dev-python/strictyaml/strictyaml-1.3.2.ebuild b/dev-python/strictyaml/strictyaml-1.3.2.ebuild
43 new file mode 100644
44 index 000000000..d83fc5439
45 --- /dev/null
46 +++ b/dev-python/strictyaml/strictyaml-1.3.2.ebuild
47 @@ -0,0 +1,21 @@
48 +# Copyright 1999-2021 Gentoo Authors
49 +# Distributed under the terms of the GNU General Public License v2
50 +
51 +EAPI=7
52 +
53 +PYTHON_COMPAT=( python3_{8..9} pypy3 )
54 +
55 +inherit distutils-r1
56 +
57 +SRC_URI="https://github.com/crdoconnor/strictyaml/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
58 +KEYWORDS="~amd64 ~x86"
59 +DESCRIPTION="A type-safe YAML parser built atop ruamel.yaml"
60 +HOMEPAGE="https://github.com/crdoconnor/strictyaml"
61 +LICENSE="MIT"
62 +SLOT="0"
63 +
64 +RDEPEND="
65 + dev-python/ruamel-yaml[${PYTHON_USEDEP}]
66 + dev-python/python-dateutil[${PYTHON_USEDEP}]
67 +"
68 +DEPEND="${RDEPEND}"