Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-notfound-page/
Date: Mon, 12 Aug 2019 18:23:28
Message-Id: 1565634198.1222ac943d5581d44d509d5c0062c3b3a48acd7b.prometheanfire@gentoo
1 commit: 1222ac943d5581d44d509d5c0062c3b3a48acd7b
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 12 18:16:41 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 12 18:23:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1222ac94
7
8 dev-python/sphinx-notfound-page: 0.4 add for ansible
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.17
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/sphinx-notfound-page/Manifest | 1 +
14 dev-python/sphinx-notfound-page/metadata.xml | 14 ++++++++++++++
15 .../sphinx-notfound-page-0.4.ebuild | 20 ++++++++++++++++++++
16 3 files changed, 35 insertions(+)
17
18 diff --git a/dev-python/sphinx-notfound-page/Manifest b/dev-python/sphinx-notfound-page/Manifest
19 new file mode 100644
20 index 00000000000..9c50f6bfa67
21 --- /dev/null
22 +++ b/dev-python/sphinx-notfound-page/Manifest
23 @@ -0,0 +1 @@
24 +DIST sphinx-notfound-page-0.4.tar.gz 5685 BLAKE2B 0bfc6cf98e0731a5cc95f1802dad1e7297ed764a626831b970d75d82ec0f7d6edb45c404851ea13bf38decc39aabf0e3dd6b136714a591e8ab595f11e23e67cd SHA512 56e867e6954f26da498b77e8fa43e8d62961ab33ee9c16d2084745dd54a998df51c7d882a47560196135d2fb4d473f7305ef19b31373bc205f8eaf0d3d4946f0
25
26 diff --git a/dev-python/sphinx-notfound-page/metadata.xml b/dev-python/sphinx-notfound-page/metadata.xml
27 new file mode 100644
28 index 00000000000..7f94ee92d1e
29 --- /dev/null
30 +++ b/dev-python/sphinx-notfound-page/metadata.xml
31 @@ -0,0 +1,14 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="project">
36 + <email>python@g.o</email>
37 + </maintainer>
38 + <maintainer type="person">
39 + <email>prometheanfire@g.o</email>
40 + <name>Matthew Thode</name>
41 + </maintainer>
42 + <longdescription lang="en">
43 + Create a custom 404 page with absolute URLs hardcoded.
44 + </longdescription>
45 +</pkgmetadata>
46
47 diff --git a/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.4.ebuild b/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.4.ebuild
48 new file mode 100644
49 index 00000000000..8c43245b056
50 --- /dev/null
51 +++ b/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.4.ebuild
52 @@ -0,0 +1,20 @@
53 +# Copyright 2019 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +PYTHON_COMPAT=( python2_7 python3_5 python3_6 python3_7 )
59 +inherit distutils-r1
60 +
61 +DESCRIPTION="Create a custom 404 page with absolute URLs hardcoded."
62 +HOMEPAGE="https://sphinx-notfound-page.readthedocs.io/"
63 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64 +
65 +LICENSE="MIT"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
68 +IUSE=""
69 +
70 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
71 +RDEPEND="${DEPEND}"
72 +BDEPEND=""