Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx_selective_exclude/
Date: Sun, 08 Mar 2020 11:51:20
Message-Id: 1583668220.1d88408e4fec1931bd8ba81e9871354329dddb6a.grozin@gentoo
1 commit: 1d88408e4fec1931bd8ba81e9871354329dddb6a
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 8 11:50:20 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 8 11:50:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d88408e
7
8 dev-python/sphinx_selective_exclude: initial import
9
10 Package-Manager: Portage-2.3.92, Repoman-2.3.20
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 dev-python/sphinx_selective_exclude/Manifest | 1 +
14 dev-python/sphinx_selective_exclude/metadata.xml | 16 ++++++++++++++++
15 .../sphinx_selective_exclude-1.0.3.ebuild | 19 +++++++++++++++++++
16 3 files changed, 36 insertions(+)
17
18 diff --git a/dev-python/sphinx_selective_exclude/Manifest b/dev-python/sphinx_selective_exclude/Manifest
19 new file mode 100644
20 index 00000000000..a3bbbcf4e4d
21 --- /dev/null
22 +++ b/dev-python/sphinx_selective_exclude/Manifest
23 @@ -0,0 +1 @@
24 +DIST sphinx_selective_exclude-1.0.3.tar.gz 7227 BLAKE2B 90ba94f81e6dfc00a39bbcaf50d136c01c7b756bcb9366ab111169913fb2a571b7924afc89fd8fffc9cf7c96bc64cd2737441bd5228fe22f9e5a9687b5b4ae52 SHA512 8ceace1502948caa17bf611786132720093b818039b399eb832c12dc47ad86219610495698692c2c25a98a8ede8695a66b02f5e3bb6ea2c7d2410e275cd959f9
25
26 diff --git a/dev-python/sphinx_selective_exclude/metadata.xml b/dev-python/sphinx_selective_exclude/metadata.xml
27 new file mode 100644
28 index 00000000000..b403fcb6027
29 --- /dev/null
30 +++ b/dev-python/sphinx_selective_exclude/metadata.xml
31 @@ -0,0 +1,16 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>grozin@g.o</email>
37 + <name>Andrey Grozin</name>
38 + </maintainer>
39 + <maintainer type="project">
40 + <email>python@g.o</email>
41 + <name>Python</name>
42 + </maintainer>
43 + <upstream>
44 + <remote-id type="pypi">sphinx_selective_exclude</remote-id>
45 + <remote-id type="github">pfalcon/sphinx_selective_exclude</remote-id>
46 + </upstream>
47 +</pkgmetadata>
48
49 diff --git a/dev-python/sphinx_selective_exclude/sphinx_selective_exclude-1.0.3.ebuild b/dev-python/sphinx_selective_exclude/sphinx_selective_exclude-1.0.3.ebuild
50 new file mode 100644
51 index 00000000000..6fa37dfe9a2
52 --- /dev/null
53 +++ b/dev-python/sphinx_selective_exclude/sphinx_selective_exclude-1.0.3.ebuild
54 @@ -0,0 +1,19 @@
55 +# Copyright 1999-2020 Gentoo Authors
56 +# Distributed under the terms of the GNU General Public License v2
57 +
58 +EAPI=7
59 +
60 +PYTHON_COMPAT=( python3_{6,7,8} )
61 +
62 +inherit distutils-r1
63 +
64 +DESCRIPTION="Sphinx selective rendition extensions"
65 +HOMEPAGE="https://github.com/pfalcon/sphinx_selective_exclude"
66 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
67 +
68 +LICENSE="BSD-2"
69 +SLOT="0"
70 +KEYWORDS="~amd64 ~x86"
71 +IUSE=""
72 +
73 +PDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"