diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-20 09:33:50 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-05-20 09:33:50 +0200 |
commit | bdf9ec5259b31fc30c5324f19c5da5977de2dd33 (patch) | |
tree | 97484843e489856dfd78e33d80306739f3df3505 /sys-auth/solo1 | |
parent | sci-biology/biopandas: Remove old (diff) | |
download | gentoo-bdf9ec5259b31fc30c5324f19c5da5977de2dd33.tar.gz gentoo-bdf9ec5259b31fc30c5324f19c5da5977de2dd33.tar.bz2 gentoo-bdf9ec5259b31fc30c5324f19c5da5977de2dd33.zip |
sys-auth/solo1: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-auth/solo1')
-rw-r--r-- | sys-auth/solo1/solo1-0.1.1.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/sys-auth/solo1/solo1-0.1.1.ebuild b/sys-auth/solo1/solo1-0.1.1.ebuild deleted file mode 100644 index 0ab44c710e95..000000000000 --- a/sys-auth/solo1/solo1-0.1.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..10} ) -DISTUTILS_USE_PEP517=flit - -inherit distutils-r1 - -DESCRIPTION="CLI and Python library for SoloKeys Solo 1" -HOMEPAGE="https://github.com/solokeys/solo1-cli" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0 MIT" -SLOT="0" -KEYWORDS="amd64 ~riscv" - -RDEPEND=">=dev-python/click-7.1.0[${PYTHON_USEDEP}] - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/ecdsa[${PYTHON_USEDEP}] - dev-python/fido2:0/0.9[${PYTHON_USEDEP}] - dev-python/intelhex[${PYTHON_USEDEP}] - dev-python/pyserial[${PYTHON_USEDEP}] - dev-python/pyusb[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}]" - -pkg_postinst() { - if [[ -n ${REPLACING_VERSIONS} ]]; then - local ver - for ver in ${REPLACING_VERSIONS}; do - if ver_test ${ver} -lt 0.1.1; then - ewarn "Note that since version 0.1.1 the CLI executable is called '${PN}' rather than 'solo'" - ewarn "The old name can still be used for now but is deprecated" - break - fi - done - fi -} |