diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-04-04 07:28:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-04-04 19:04:04 +0200 |
commit | 83d831da3214cc193771ccf5561526e84dadbda7 (patch) | |
tree | 4ca96c37a3bacd75a6dd8f256aacbc348ce70dc8 /dev-python/sybil | |
parent | dev-python/pycurl: arm64 stable (bug #711736) (diff) | |
download | gentoo-83d831da3214cc193771ccf5561526e84dadbda7.tar.gz gentoo-83d831da3214cc193771ccf5561526e84dadbda7.tar.bz2 gentoo-83d831da3214cc193771ccf5561526e84dadbda7.zip |
dev-python/sybil: Bump to 1.3.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/sybil')
-rw-r--r-- | dev-python/sybil/Manifest | 1 | ||||
-rw-r--r-- | dev-python/sybil/sybil-1.3.0.ebuild | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/dev-python/sybil/Manifest b/dev-python/sybil/Manifest index 1506aa09aaa1..ec1c3a37690d 100644 --- a/dev-python/sybil/Manifest +++ b/dev-python/sybil/Manifest @@ -1 +1,2 @@ DIST sybil-1.2.2.tar.gz 29182 BLAKE2B d0d9a0a2e5117efd36e7561f74d31283fa25ea0210e0796fe1a1cc4247712bff0e3ac329781987b5ba805ccd2cddf01eec2672d5e2677422d1ed378068482da5 SHA512 c1785c00ce1dfdaf85d13db976f28062c09c47974107bc2af54c3bd9bf4ad5124c9b52321f3350fb1cc50aefdf72f2a9b6b22fc766b139516ff7979864604735 +DIST sybil-1.3.0.tar.gz 29296 BLAKE2B a7f08f6374e12213b644685276832eca849c85e85c8aaf0a37bdfdbf648e0e0e4c2b3d1a4dc7038c91fe8d64aa476d96bf87fa3a5f2f11a955b758182411763d SHA512 fc478896bb1958303ffcac6d35993b2785a50c6c221848d83c92c158a27fff059491aa3baaddd0b56e040fe6c07b764aa33c69204750de9ad351084b2815fd47 diff --git a/dev-python/sybil/sybil-1.3.0.ebuild b/dev-python/sybil/sybil-1.3.0.ebuild new file mode 100644 index 000000000000..3918a42c35cd --- /dev/null +++ b/dev-python/sybil/sybil-1.3.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Automated testing for the examples in your documentation" +HOMEPAGE="https://github.com/cjw296/sybil" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# nose is used to test nosetests integration +BDEPEND=" + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest |