Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-aiohttp-theme/
Date: Wed, 05 Sep 2018 03:34:52
Message-Id: 1536118476.54e68e1e090c00457a1688df88489516406dc66e.zmedico@gentoo
1 commit: 54e68e1e090c00457a1688df88489516406dc66e
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 5 03:18:10 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 5 03:34:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e68e1e
7
8 dev-python/sphinx-aiohttp-theme: new package
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-python/sphinx-aiohttp-theme/Manifest | 1 +
13 dev-python/sphinx-aiohttp-theme/metadata.xml | 11 ++++++++++
14 .../sphinx-aiohttp-theme-0.1.4.ebuild | 25 ++++++++++++++++++++++
15 3 files changed, 37 insertions(+)
16
17 diff --git a/dev-python/sphinx-aiohttp-theme/Manifest b/dev-python/sphinx-aiohttp-theme/Manifest
18 new file mode 100644
19 index 00000000000..03d16a6d9cc
20 --- /dev/null
21 +++ b/dev-python/sphinx-aiohttp-theme/Manifest
22 @@ -0,0 +1 @@
23 +DIST aiohttp-theme-0.1.4.tar.gz 10723 BLAKE2B afc398bb65e69fcc931f214c613f789da07c89bafd26ff207d4c5666edbe323f77c4a6fec09817d4dc6bb1d40e21ddd82f0b7b5c25dc5fe89b8b83c1c423bad7 SHA512 b487c9095a677baf9471b93be5b9cc3a697f62d2674d27ea4a7aee043e5dd75c5543a0e0a2e51c28e36e5bbf324bcb6d06786b31ae3b492ad2f972c6776c40af
24
25 diff --git a/dev-python/sphinx-aiohttp-theme/metadata.xml b/dev-python/sphinx-aiohttp-theme/metadata.xml
26 new file mode 100644
27 index 00000000000..b7700e6c436
28 --- /dev/null
29 +++ b/dev-python/sphinx-aiohttp-theme/metadata.xml
30 @@ -0,0 +1,11 @@
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 + <email>zmedico@g.o</email>
36 + </maintainer>
37 + <upstream>
38 + <remote-id type="github">aio-libs/aiohttp-theme</remote-id>
39 + <remote-id type="pypi">aiohttp-theme</remote-id>
40 + </upstream>
41 +</pkgmetadata>
42
43 diff --git a/dev-python/sphinx-aiohttp-theme/sphinx-aiohttp-theme-0.1.4.ebuild b/dev-python/sphinx-aiohttp-theme/sphinx-aiohttp-theme-0.1.4.ebuild
44 new file mode 100644
45 index 00000000000..e4a37d75b9e
46 --- /dev/null
47 +++ b/dev-python/sphinx-aiohttp-theme/sphinx-aiohttp-theme-0.1.4.ebuild
48 @@ -0,0 +1,25 @@
49 +# Copyright 1999-2018 Gentoo Foundation
50 +# Distributed under the terms of the GNU General Public License v2
51 +
52 +EAPI=6
53 +PYTHON_COMPAT=( python3_{5,6} )
54 +
55 +inherit distutils-r1
56 +
57 +MY_PN="aiohttp-theme"
58 +MY_P="${MY_PN}-${PV}"
59 +
60 +DESCRIPTION="Sphinx theme for aiohttp"
61 +HOMEPAGE="https://github.com/aio-libs/aiohttp-theme"
62 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
63 +
64 +LICENSE="BSD"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~x86"
67 +IUSE=""
68 +
69 +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
70 +DEPEND="${RDEPEND}
71 + dev-python/setuptools[${PYTHON_USEDEP}]"
72 +
73 +S="${WORKDIR}/${MY_P}"