mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-06-30 00:38:07 -07:00
Migrated to EAPI=7, added python3_{6,7,8} targets.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15984
Signed-off-by: Aaron Bauman <bman@gentoo.org>
22 lines
567 B
Bash
22 lines
567 B
Bash
# 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="A CFFI binding for Hoedown, a markdown parsing library"
|
|
HOMEPAGE="http://misaka.61924.nl/ https://github.com/FSX/misaka"
|
|
SRC_URI="https://github.com/FSX/misaka/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
RDEPEND="dev-python/cffi[${PYTHON_USEDEP}]"
|
|
|
|
# FIXME: tests requires write access outside sandbox
|
|
#distutils_enable_tests setup.py
|