Add new package: dev-python/term2md

pull/3/head^2
Alexander Miroshnichenko 2021-03-03 14:12:46 +03:00
parent 52b869fa1d
commit 98c9416165
Signed by: alex
GPG Key ID: E93720C6C73A77F4
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1 @@
EBUILD term2md-9999.ebuild 615 BLAKE2B 489c9a563aa7f3cce39a214b5de7806f75ef6ac7dc025743dc448074de64bf32a271ac2bf068800c0fe564ca525e350663419e08ea29036991688fbcdfce7f4f SHA512 8992e9670b2143ac5aac4b69a61ecf2e63e5f7f1b278a2f8b807c00b8f2f75eff9dbaed8d7ccc5c3da761948bcaf5abe033225ed6fd7349cdcd9e4c63a083ba7

View File

@ -0,0 +1,29 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{7,8,9} )
inherit distutils-r1
DESCRIPTION="convert terminal control characters to markdown"
HOMEPAGE="https://github.com/jonm/term2md"
LICENSE="MIT"
SLOT="0"
if [ "${PV}" = "9999" ]; then
KEYWORDS=""
inherit git-r3
EGIT_REPO_URI="https://github.com/jonm/term2md.git"
else
KEYWORDS="~amd64 ~x86"
SRC_URI="https://github.com/jonm/${PN}/archive/master.zip -> ${PN}.zip"
fi
src_prepare() {
default
sed -i '/pytest-runner/Id' setup.py
}