commit:     9b02a62e51a33ff8692c6cf076c376bcd65e4432
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 11:23:13 2016 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 11:23:13 2016 +0000
URL:        https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=9b02a62e

add FORD and its deps

 app-doc/ford/Manifest                              |  1 +
 app-doc/ford/ford-5.0.6.ebuild                     | 33 +++++++++++++++++++++
 dev-python/graphviz/Manifest                       |  1 +
 .../files/graphviz-0.5.1-py2.7-tests-fix.patch     | 30 +++++++++++++++++++
 dev-python/graphviz/graphviz-0.5.1.ebuild          | 34 ++++++++++++++++++++++
 dev-python/markdown-include/Manifest               |  1 +
 .../markdown-include/markdown-include-0.5.1.ebuild | 21 +++++++++++++
 dev-python/md-environ/Manifest                     |  1 +
 dev-python/md-environ/md-environ-0.1.0.ebuild      | 21 +++++++++++++
 dev-python/toposort/Manifest                       |  1 +
 dev-python/toposort/toposort-1.4.ebuild            | 24 +++++++++++++++
 11 files changed, 168 insertions(+)

diff --git a/app-doc/ford/Manifest b/app-doc/ford/Manifest
new file mode 100644
index 0000000..53e320a
--- /dev/null
+++ b/app-doc/ford/Manifest
@@ -0,0 +1 @@
+DIST FORD-5.0.6.tar.gz 620463 SHA256 
e34fb6ecf409708a25cb8e9b39536b7f3c92dc86821c9e84ee54223953ea6d95 SHA512 
76a148eb5f109d0a95beb94b43b056720dc4467d349efbb81cfa75f9c810554cf40bae3d7a994fe7a2e67dc9bb05febc078e107b6ae9802b1ca5297d4cf1cbe2
 WHIRLPOOL 
1593e28abdc383e8a3d85855e120f85928de2082592eb4daf23b9f622b7b43d2b85c17f5b73a5353ec380e1df7333bd3983f864243d30c0450e969eaa2288525

diff --git a/app-doc/ford/ford-5.0.6.ebuild b/app-doc/ford/ford-5.0.6.ebuild
new file mode 100644
index 0000000..a986795
--- /dev/null
+++ b/app-doc/ford/ford-5.0.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_5 )
+inherit distutils-r1
+
+MY_PN="FORD"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="FORtran Documenter, an automatic documentation generator for 
modern Fortran programs"
+HOMEPAGE="https://github.com/cmacmackin/ford/";
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/markdown[${PYTHON_USEDEP}]
+       >=dev-python/markdown-include-0.5.1[${PYTHON_USEDEP}]
+       dev-python/toposort[${PYTHON_USEDEP}]
+       >=dev-python/jinja-2.1[${PYTHON_USEDEP}]
+       dev-python/pygments[${PYTHON_USEDEP}]
+       >=dev-python/beautifulsoup-4.5.1:4[${PYTHON_USEDEP}]
+       >=dev-python/graphviz-0.5.1[${PYTHON_USEDEP}]
+       dev-python/md-environ[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${MY_P}"

diff --git a/dev-python/graphviz/Manifest b/dev-python/graphviz/Manifest
new file mode 100644
index 0000000..b444c09
--- /dev/null
+++ b/dev-python/graphviz/Manifest
@@ -0,0 +1 @@
+DIST graphviz-0.5.1.tar.gz 56455 SHA256 
00ace0aa15cda3ea61bd7882a7b3b9cedb2c026eed1f5b119a03722b906e693b SHA512 
f97c98eb6788958663ab3dbfaea391a2cafdf7c66491d3d5ce000a3a97fc9b2aa3c25893dcebe7bcdd5dd8ea05abe409a5ec85855d1bda1200e58fc803221636
 WHIRLPOOL 
4d49b05ed3ffb29b728255921668ce41e747df76638b7182c8ad89d1aaf68788afd84672b9c9cf5fb4e3a64604005c2274938c7594afc9d2b5be642c126fc990

diff --git a/dev-python/graphviz/files/graphviz-0.5.1-py2.7-tests-fix.patch 
b/dev-python/graphviz/files/graphviz-0.5.1-py2.7-tests-fix.patch
new file mode 100644
index 0000000..06862ba
--- /dev/null
+++ b/dev-python/graphviz/files/graphviz-0.5.1-py2.7-tests-fix.patch
@@ -0,0 +1,30 @@
+From 19acd8bd212fed487e5871382a355d125c5318ab Mon Sep 17 00:00:00 2001
+From: Sebastian Bank <sebastian.b...@uni-leipzig.de>
+Date: Sun, 11 Sep 2016 10:06:07 +0200
+Subject: [PATCH] fix docstring with backslash, period
+
+---
+ graphviz/dot.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/graphviz/dot.py b/graphviz/dot.py
+index 6bcc689..08521a8 100644
+--- a/graphviz/dot.py
++++ b/graphviz/dot.py
+@@ -1,6 +1,6 @@
+ # dot.py - create dot code
+ 
+-"""Assemble DOT source code objects.
++r"""Assemble DOT source code objects.
+ 
+ >>> dot = Graph(comment=u'M\xf8nti Pyth\xf8n ik den H\xf8lie Grailen')
+ 
+@@ -134,7 +134,7 @@ def attr(self, kw, _attributes=None, **attrs):
+         """Add a graph/node/edge attribute statement.
+ 
+         Args:
+-            kw: Attributes target ('graph', 'node', or 'edge')
++            kw: Attributes target ('graph', 'node', or 'edge').
+             attrs: Attributes to be set (must be strings, may be empty).
+         """
+         if kw.lower() not in ('graph', 'node', 'edge'):

diff --git a/dev-python/graphviz/graphviz-0.5.1.ebuild 
b/dev-python/graphviz/graphviz-0.5.1.ebuild
new file mode 100644
index 0000000..b15248b
--- /dev/null
+++ b/dev-python/graphviz/graphviz-0.5.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_5 )
+inherit distutils-r1
+
+DESCRIPTION="Simple Python interface for Graphviz"
+HOMEPAGE="http://github.com/xflr6/graphviz 
http://pypi.python.org/pypi/graphviz";
+SRC_URI="https://github.com/xflr6/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+# ^^ the files in the pypi zipball have CRLF line-endings, this breaks patching
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples test"
+
+RDEPEND="media-gfx/graphviz"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+PATCHES=( "${FILESDIR}/${P}-py2.7-tests-fix.patch" )
+
+python_install_all() {
+       use examples && dodoc -r example
+       distutils-r1_python_install_all
+}
+
+python_test() {
+       nosetests -v || die
+}

diff --git a/dev-python/markdown-include/Manifest 
b/dev-python/markdown-include/Manifest
new file mode 100644
index 0000000..89c9c02
--- /dev/null
+++ b/dev-python/markdown-include/Manifest
@@ -0,0 +1 @@
+DIST markdown-include-0.5.1.tar.gz 3968 SHA256 
72a45461b589489a088753893bc95c5fa5909936186485f4ed55caa57d10250f SHA512 
f330c8d82100fb66115b7369d7c2121c58ea6b7f38c45633994f0fca99a4f314b852608f2cbac53b96e7944bce0ea46dfe9ab578976975699a8a1182b3d6d2c5
 WHIRLPOOL 
611f13e8890ed4546efb50b93b0372a97f0791934a45fb638c5cb7942949713fd80753ccc0c09fa3ec0b20350c68f93be654a0ac41920ab525a137ada559ca14

diff --git a/dev-python/markdown-include/markdown-include-0.5.1.ebuild 
b/dev-python/markdown-include/markdown-include-0.5.1.ebuild
new file mode 100644
index 0000000..61698b5
--- /dev/null
+++ b/dev-python/markdown-include/markdown-include-0.5.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_5 )
+inherit distutils-r1
+
+DESCRIPTION="Extension to Python-Markdown which provides an 'include' function"
+HOMEPAGE="https://github.com/cmacmackin/markdown-include/ 
https://pypi.python.org/pypi/markdown-include";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/markdown[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]"

diff --git a/dev-python/md-environ/Manifest b/dev-python/md-environ/Manifest
new file mode 100644
index 0000000..b706175
--- /dev/null
+++ b/dev-python/md-environ/Manifest
@@ -0,0 +1 @@
+DIST md-environ-0.1.0.tar.gz 3060 SHA256 
fe3c2a255af523d6f522831c699336cd71f9d543714067d93206ed35836f1793 SHA512 
6a6455666410d4fccecd3ef059fb08f06d9d68bd40c64795d99e1f779f69b6361b322ce2e6853d17e0b9bb99f014b65a0466ad519fd24422ffaa657863aa3460
 WHIRLPOOL 
fb556bc08cd1c43bc7e1d76a55c864c104aff124b53667413ffad25911b00cd6b4a2500bba828dbdf702982235f290d8cbe94979f039e018caa9ea0b357e4f8f

diff --git a/dev-python/md-environ/md-environ-0.1.0.ebuild 
b/dev-python/md-environ/md-environ-0.1.0.ebuild
new file mode 100644
index 0000000..9a124fb
--- /dev/null
+++ b/dev-python/md-environ/md-environ-0.1.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_5 )
+inherit distutils-r1
+
+DESCRIPTION="Extension to Python-Markdown allowing environment variables to be 
used in the text"
+HOMEPAGE="https://github.com/cmacmackin/md-environ/ 
https://pypi.python.org/pypi/md-environ";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/markdown[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]"

diff --git a/dev-python/toposort/Manifest b/dev-python/toposort/Manifest
new file mode 100644
index 0000000..a6e3cb0
--- /dev/null
+++ b/dev-python/toposort/Manifest
@@ -0,0 +1 @@
+DIST toposort-1.4.tar.gz 9626 SHA256 
c190b9d9a9e53ae2835f4d524130147af601fbd63677d19381c65067a80fa903 SHA512 
a3a15052dd16e4c50d92733c749f4761676f6de95e539590e88be03426366e7b12ba235173d8e03b0d258a4d50cddf1063b461105c41641157dc22d1cc5e898d
 WHIRLPOOL 
a545d9ce844c19b36ab207947fa599a5302e86fe19b721a1ebbe12905e77cf44feea8bd091efede9afe014a01c400cd80072a75c522ed66cd33576b2ff3eae5f

diff --git a/dev-python/toposort/toposort-1.4.ebuild 
b/dev-python/toposort/toposort-1.4.ebuild
new file mode 100644
index 0000000..cdd3938
--- /dev/null
+++ b/dev-python/toposort/toposort-1.4.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_5 )
+inherit distutils-r1
+
+DESCRIPTION="Implements a topological sort algorithm."
+HOMEPAGE="https://bitbucket.org/ericvsmith/toposort 
https://pypi.python.org/pypi/toposort";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+python_test() {
+       esetup.py test
+}

Reply via email to