Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/authres/
Date: Tue, 09 Apr 2019 10:51:06
Message-Id: 1554807045.bc29b87df35b61cfcda3ee228365cb823eca5ae1.mgorny@gentoo
1 commit: bc29b87df35b61cfcda3ee228365cb823eca5ae1
2 Author: Ralph Seichter <github <AT> seichter <DOT> de>
3 AuthorDate: Sun Apr 7 18:49:29 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 9 10:50:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc29b87d
7
8 dev-python/authres: version bump to 1.1.1
9
10 Ebuild for upstream release 1.1.1. Changed EAPI to 7.
11
12 Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
13 Closes: https://bugs.gentoo.org/682778
14 Package-Manager: Portage-2.3.62, Repoman-2.3.11
15 RepoMan-Options: --force
16 Closes: https://github.com/gentoo/gentoo/pull/11632
17 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
18
19 dev-python/authres/Manifest | 1 +
20 dev-python/authres/authres-1.1.1.ebuild | 21 +++++++++++++++++++++
21 2 files changed, 22 insertions(+)
22
23 diff --git a/dev-python/authres/Manifest b/dev-python/authres/Manifest
24 index d1b26a44aac..0ba1a619c7a 100644
25 --- a/dev-python/authres/Manifest
26 +++ b/dev-python/authres/Manifest
27 @@ -1 +1,2 @@
28 DIST authres-0.800.tar.gz 19863 BLAKE2B 01f9264a78ef5a3ee9fa1db17dd4fc5d1e849a5f297f610ab0bda09f4900bca15e63d71c2312e12b1e6173213d3eef938dae996c7bcc599de496b6c77001de87 SHA512 d9e73309064e396c51ed55394ce505c21869d267922df55b6723cb6b2409282c7827d35d381877b5f08e037042e015d59246603d51219c829df7b81011499fe7
29 +DIST authres-1.1.1.tar.gz 23180 BLAKE2B 8ca2e0a0e93da50188d721be1fd60604ec2fdedb117df39c6e74d454d48d008a1627b45acbc18df3bc3c386794d7ac91e31ccca131c9e6e04f6bb34417f64c50 SHA512 61e73e85e524279d5db37375fbe7b1fcf65a24280ef61124a94e4236ce477c225637690e9d424f5ee3fef8b9cd3d26c6d512dfa3c1c8491fa4f4bf266f88ac80
30
31 diff --git a/dev-python/authres/authres-1.1.1.ebuild b/dev-python/authres/authres-1.1.1.ebuild
32 new file mode 100644
33 index 00000000000..0823667ce45
34 --- /dev/null
35 +++ b/dev-python/authres/authres-1.1.1.ebuild
36 @@ -0,0 +1,21 @@
37 +# Copyright 1999-2019 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=7
41 +PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy )
42 +
43 +inherit distutils-r1
44 +
45 +DESCRIPTION="Authentication-Results Headers generation and parsing"
46 +HOMEPAGE="https://launchpad.net/authentication-results-python https://pypi.org/project/authres/"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 +
49 +LICENSE="Apache-2.0"
50 +KEYWORDS="~amd64 ~x86"
51 +SLOT="0"
52 +IUSE=""
53 +
54 +python_test() {
55 + "${PYTHON}" -c "import sys, authres, doctest; f, t = doctest.testfile('authres/tests'); \
56 + sys.exit(bool(f))" || die "Tests fail with ${EPYTHON}"
57 +}