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/secretstorage/
Date: Fri, 27 May 2022 19:50:15
Message-Id: 1653680972.d3bf6775230620f454cb3c876c36dfba2cd5dfc7.mgorny@gentoo
1 commit: d3bf6775230620f454cb3c876c36dfba2cd5dfc7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 19:49:32 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 19:49:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3bf6775
7
8 dev-python/secretstorage: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/secretstorage/Manifest | 1 -
13 .../secretstorage/secretstorage-3.3.1.ebuild | 50 ----------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/dev-python/secretstorage/Manifest b/dev-python/secretstorage/Manifest
17 index 936689d80892..6c378ec84501 100644
18 --- a/dev-python/secretstorage/Manifest
19 +++ b/dev-python/secretstorage/Manifest
20 @@ -1,2 +1 @@
21 -DIST SecretStorage-3.3.1.tar.gz 19566 BLAKE2B 0b1ab822ee29f3d56148b558b3029fd882f1d10ceb3e026586de2e9bc72b7ac1b35df11052117a7c07524ca72d004ef56d99c845bc3600984fe84e5300f3dfee SHA512 5e874d08c9e00626a217db96b131884daf92429a91f690b32f62052747275ad0effbe2b4abe048e67fe7f81df97507f8375408898ff986e6f883b5fdfbf2a76c
22 DIST SecretStorage-3.3.2.tar.gz 19285 BLAKE2B 17089e61a9549f4547faa8c6f7f711f5e4b3ba9ac0bf7787c3384d4920c5cd02704bab86fd4b7abe4ad9b93098b1668cf89901f4a0760023e274c8daf009d5a4 SHA512 f04a35925f86fec25435554083ac0d4b21b88cbc19b67a4c744247e659bc767675a52d18b33be557e99593922aecb0c261ec40803c61e089ff35b6c8b541ac63
23
24 diff --git a/dev-python/secretstorage/secretstorage-3.3.1.ebuild b/dev-python/secretstorage/secretstorage-3.3.1.ebuild
25 deleted file mode 100644
26 index 783105f6acc2..000000000000
27 --- a/dev-python/secretstorage/secretstorage-3.3.1.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( pypy3 python3_{7..10} )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="SecretStorage"
40 -
41 -DESCRIPTION="Python bindings to FreeDesktop.org Secret Service API"
42 -HOMEPAGE="https://github.com/mitya57/secretstorage https://pypi.org/project/SecretStorage/"
43 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
44 -S="${WORKDIR}/${MY_PN}-${PV}"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
49 -
50 -RDEPEND="
51 - dev-python/cryptography[${PYTHON_USEDEP}]
52 - >=dev-python/jeepney-0.6[${PYTHON_USEDEP}]
53 -"
54 -BDEPEND="
55 - test? ( !hppa? ( !sparc? ( !s390? (
56 - sys-apps/dbus
57 - virtual/secret-service
58 - ) ) ) )
59 -"
60 -
61 -distutils_enable_tests unittest
62 -distutils_enable_sphinx docs \
63 - dev-python/alabaster
64 -
65 -src_test() {
66 - case ${ARCH} in
67 - hppa|sparc)
68 - einfo "gnome-keyring is not supported on ${ARCH}, skipping tests"
69 - return
70 - ;;
71 - esac
72 -
73 - distutils-r1_src_test
74 -}
75 -
76 -python_test() {
77 - dbus-run-session "${EPYTHON}" -m unittest discover -v -s tests \
78 - || die "tests failed with ${EPYTHON}"
79 -}