diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-06-02 12:25:58 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 11:45:25 +0100 |
commit | 798db38f993cf9bad6feb2da6e0eea0a582ba9f3 (patch) | |
tree | 47bb120120815d8b375619e50015f27dc3a44e96 /meta/recipes-devtools/python/python3-docutils_0.12.bb | |
parent | b03ebfaee278eb98b4bd0e11a682ac0cda192086 (diff) | |
download | openembedded-core-798db38f993cf9bad6feb2da6e0eea0a582ba9f3.tar.gz openembedded-core-798db38f993cf9bad6feb2da6e0eea0a582ba9f3.tar.bz2 openembedded-core-798db38f993cf9bad6feb2da6e0eea0a582ba9f3.zip |
python-docutils: move to Python 3
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-docutils_0.12.bb')
-rw-r--r-- | meta/recipes-devtools/python/python3-docutils_0.12.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-docutils_0.12.bb b/meta/recipes-devtools/python/python3-docutils_0.12.bb new file mode 100644 index 0000000000..e78fa3bbc8 --- /dev/null +++ b/meta/recipes-devtools/python/python3-docutils_0.12.bb @@ -0,0 +1,18 @@ +SUMMARY = "Text processing system for documentation" +HOMEPAGE = "http://docutils.sourceforge.net" +SECTION = "devel/python" +LICENSE = "PSF & BSD-2-Clause & GPLv3" +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=a722fbdc20347db7b69223594dd54574" + +DEPENDS = "python3" + +SRC_URI = "${SOURCEFORGE_MIRROR}/docutils/docutils-${PV}.tar.gz" +SRC_URI[md5sum] = "4622263b62c5c771c03502afa3157768" +SRC_URI[sha256sum] = "c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa" + +S = "${WORKDIR}/docutils-${PV}" + +inherit distutils3 + +BBCLASSEXTEND = "native" + |