diff options
author | Guillaume Seren <guillaumeseren@gmail.com> | 2020-07-12 18:30:07 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-08-09 10:13:56 +0300 |
commit | f2e4c7342163131415c42f2aac532593b40244e1 (patch) | |
tree | a005b3f9e4d06a454ad5a8503ae34f1cfd7aef58 /dev-python/urwidtrees/urwidtrees-1.0.3.ebuild | |
parent | net-mail/notmuch: install deprecated python bindings on 0.30 (diff) | |
download | gentoo-f2e4c7342163131415c42f2aac532593b40244e1.tar.gz gentoo-f2e4c7342163131415c42f2aac532593b40244e1.tar.bz2 gentoo-f2e4c7342163131415c42f2aac532593b40244e1.zip |
dev-python/urwidtrees: Add version bump 1.0.3
Closes: https://bugs.gentoo.org/732360
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Guillaume Seren <guillaumeseren@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/urwidtrees/urwidtrees-1.0.3.ebuild')
-rw-r--r-- | dev-python/urwidtrees/urwidtrees-1.0.3.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild b/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild new file mode 100644 index 000000000000..c435a32a3b0e --- /dev/null +++ b/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Tree widgets for urwid" +HOMEPAGE="https://github.com/pazz/urwidtrees" +SRC_URI="https://github.com/pazz/urwidtrees/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-python/urwid-1.1.0[${PYTHON_USEDEP}]" + +distutils_enable_sphinx docs/source + +src_prepare() { + find -name '*.py' -exec \ + sed -i -e '1i# -*- coding: utf-8 -*-' {} + || die + + distutils-r1_src_prepare + + local md + for md in *.md; do + mv "${md}" "${md%.md}" || die + done +} |