diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-03-15 09:48:50 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-03-15 09:52:24 +0100 |
commit | 97b53c2c7a18c3c889c45d38c495028878108e5b (patch) | |
tree | f512ad114983d0ddbcdd97b2c6935955853bbf7c /dev-python/secretstorage | |
parent | dev-python/joblib: Remove old (diff) | |
download | gentoo-97b53c2c7a18c3c889c45d38c495028878108e5b.tar.gz gentoo-97b53c2c7a18c3c889c45d38c495028878108e5b.tar.bz2 gentoo-97b53c2c7a18c3c889c45d38c495028878108e5b.zip |
dev-python/secretstorage: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/secretstorage')
-rw-r--r-- | dev-python/secretstorage/Manifest | 1 | ||||
-rw-r--r-- | dev-python/secretstorage/secretstorage-3.3.0.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/secretstorage/Manifest b/dev-python/secretstorage/Manifest index e43a3d3540d1..5e3b4b0f85c8 100644 --- a/dev-python/secretstorage/Manifest +++ b/dev-python/secretstorage/Manifest @@ -1,2 +1 @@ -DIST SecretStorage-3.3.0.tar.gz 19352 BLAKE2B 8e870d4e95b585f4c5e78d9b11327f21ff909b746f035115bd75bde499f2161c0e1ab3640b3861fc54af67dd7d305f794a855430389c207bfef129f7c0439a9e SHA512 d33c11b98824d214eb67c5b11a7fe0d14af084edfebc1d83204bcfd167258fbc07be8c1de8824ec984d83d07bfd66271c44f751784429e574cb240b5add70e16 DIST SecretStorage-3.3.1.tar.gz 19566 BLAKE2B 0b1ab822ee29f3d56148b558b3029fd882f1d10ceb3e026586de2e9bc72b7ac1b35df11052117a7c07524ca72d004ef56d99c845bc3600984fe84e5300f3dfee SHA512 5e874d08c9e00626a217db96b131884daf92429a91f690b32f62052747275ad0effbe2b4abe048e67fe7f81df97507f8375408898ff986e6f883b5fdfbf2a76c diff --git a/dev-python/secretstorage/secretstorage-3.3.0.ebuild b/dev-python/secretstorage/secretstorage-3.3.0.ebuild deleted file mode 100644 index b1f1ed749489..000000000000 --- a/dev-python/secretstorage/secretstorage-3.3.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{7..9} ) - -inherit distutils-r1 - -MY_PN="SecretStorage" - -DESCRIPTION="Python bindings to FreeDesktop.org Secret Service API." -HOMEPAGE="https://github.com/mitya57/secretstorage https://pypi.org/project/SecretStorage/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" -S="${WORKDIR}/${MY_PN}-${PV}" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - dev-python/cryptography[${PYTHON_USEDEP}] - >=dev-python/jeepney-0.6[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( !hppa? ( !sparc? ( - gnome-base/gnome-keyring - sys-apps/dbus - ) ) ) -" - -distutils_enable_tests unittest -distutils_enable_sphinx docs \ - dev-python/alabaster - -src_test() { - case ${ARCH} in - hppa|sparc) - einfo "gnome-keyring is not supported on ${ARCH}, skipping tests" - return - ;; - esac - - distutils-r1_src_test -} - -python_test() { - dbus-run-session "${EPYTHON}" -m unittest discover -v -s tests \ - || die "tests failed with ${EPYTHON}" -} |