commit: aad9f3d60c8a77873406984aa8776741146d193c
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 21 09:15:59 2016 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Thu Jul 21 09:15:59 2016 +0000
URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=aad9f3d6
dev-python/flask-sphinx-themes: initial commit, required by flask-babelex[doc]
dev-python/flask-sphinx-themes/Manifest | 1 +
.../flask-sphinx-themes-20160703.ebuild | 39 ++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/dev-python/flask-sphinx-themes/Manifest
b/dev-python/flask-sphinx-themes/Manifest
new file mode 100644
index 0000000..13e52cb
--- /dev/null
+++ b/dev-python/flask-sphinx-themes/Manifest
@@ -0,0 +1 @@
+DIST flask-sphinx-themes-20160703.tar.gz 6651 SHA256
1e40f42152d2b20a9935b0b24dd8e120993455cc0f13029ca4ee52a007819a5a SHA512
0042335f2cf2efc46143636bc8150ada45c3fd96464065d8384821a605d2b49721ca96f85c9b2dde72911c81234dbe7dff3b24fe94187659e33993128e6f578b
WHIRLPOOL
d74d59efbe8942b7f296e5d430ad2e0e40e1af2d1b9fe90ac81ff7f42522ebe98356fcf34a503f77349ad71b4a2991c97cafcef5839f0d575187380347240ff0
diff --git a/dev-python/flask-sphinx-themes/flask-sphinx-themes-20160703.ebuild
b/dev-python/flask-sphinx-themes/flask-sphinx-themes-20160703.ebuild
new file mode 100644
index 0000000..4ec71b6
--- /dev/null
+++ b/dev-python/flask-sphinx-themes/flask-sphinx-themes-20160703.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit python-r1
+
+GIT_COMMIT="f7e6b46fd2f292f8d1763551dbbda36993262589"
+
+DESCRIPTION="Sphinx Themes for Flask related projects and Flask itself"
+HOMEPAGE="https://github.com/pallets/flask-sphinx-themes"
+SRC_URI="https://github.com/pallets/${PN}/archive/${GIT_COMMIT}.tar.gz ->
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="${PYTHON_DEPS}
+ dev-python/sphinx[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-${GIT_COMMIT}"
+
+src_install() {
+ install_python() {
+ insinto "$(python_get_sitedir)/sphinx/themes"
+ doins -r flask flask_small
+
+ insinto "$(python_get_sitedir)"
+ doins flask_theme_support.py
+
+ python_optimize
+ }
+ python_foreach_impl install_python
+}