From 7e32683f20c1ca6beef672ba861000f282407113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20F=C3=B6rster?= Date: Fri, 22 Mar 2019 01:47:21 +0100 Subject: [PATCH] [dev-python/authres] bump to 1.1.1 --- dev-python/authres/Manifest | 1 + dev-python/authres/authres-1.1.1.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 dev-python/authres/Manifest create mode 100644 dev-python/authres/authres-1.1.1.ebuild diff --git a/dev-python/authres/Manifest b/dev-python/authres/Manifest new file mode 100644 index 0000000..f095382 --- /dev/null +++ b/dev-python/authres/Manifest @@ -0,0 +1 @@ +DIST authres-1.1.1.tar.gz 23180 BLAKE2B 8ca2e0a0e93da50188d721be1fd60604ec2fdedb117df39c6e74d454d48d008a1627b45acbc18df3bc3c386794d7ac91e31ccca131c9e6e04f6bb34417f64c50 SHA512 61e73e85e524279d5db37375fbe7b1fcf65a24280ef61124a94e4236ce477c225637690e9d424f5ee3fef8b9cd3d26c6d512dfa3c1c8491fa4f4bf266f88ac80 diff --git a/dev-python/authres/authres-1.1.1.ebuild b/dev-python/authres/authres-1.1.1.ebuild new file mode 100644 index 0000000..d5eeb38 --- /dev/null +++ b/dev-python/authres/authres-1.1.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Authentication Results Header Module" +HOMEPAGE="https://launchpad.net/authentication-results-python https://pypi.org/project/authres/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +python_test() { + "${PYTHON}" -c "import sys, ${PN}, doctest; f, t = doctest.testfile('${PN}/tests'); \ + sys.exit(bool(f))" || die "Tests fail with ${EPYTHON}" +}