diff options
author | Wolfgang Müller | 2024-09-26 20:17:13 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-09-26 20:17:13 +0200 |
commit | 929e37e4b7a91fe7e1b84303d5a0c8baa8c7cd3b (patch) | |
tree | cd65c8fa51a8a3a1d8f0a990986779c30e702784 /net-irc/quarg/quarg-1.0.0-r1.ebuild | |
parent | df64b5a1abb7c847d12344ad70aecc073e895e25 (diff) | |
download | pramantha-929e37e4b7a91fe7e1b84303d5a0c8baa8c7cd3b.tar.gz |
net-irc/quarg: depend on sec-keys/signify-keys-oriole-systems
Diffstat (limited to 'net-irc/quarg/quarg-1.0.0-r1.ebuild')
-rw-r--r-- | net-irc/quarg/quarg-1.0.0-r1.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/net-irc/quarg/quarg-1.0.0-r1.ebuild b/net-irc/quarg/quarg-1.0.0-r1.ebuild deleted file mode 100644 index 3cca275..0000000 --- a/net-irc/quarg/quarg-1.0.0-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{11..13} ) -DISTUTILS_USE_PEP517=poetry - -VERIFY_SIG_METHOD="signify" -inherit distutils-r1 verify-sig - -DESCRIPTION="Search Quassel logs for matching messages and print them" -HOMEPAGE="https://git.oriole.systems/quarg" -SRC_URI=" - https://git.oriole.systems/${PN}/snapshot/${P}.tar.gz - verify-sig? ( - https://git.oriole.systems/${PN}/snapshot/${P}.tar.gz.asc - -> ${P}.sha.sig - ) -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -IUSE="sqlite postgres" -RESTRICT="mirror test" - -RDEPEND="${PYTHON_DEPS} - dev-python/python-dateutil[${PYTHON_USEDEP}] - postgres? ( dev-python/psycopg[${PYTHON_USEDEP}] ) - >=dev-python/sqlalchemy-2.0[${PYTHON_USEDEP},sqlite?] -" - -DEPEND="${RDEPEND}" - -VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/signify-keys/oriole-systems-20240330.pub" - -src_unpack() { - if use verify-sig; then - cp "${DISTDIR}"/${P}.{sha.sig,tar.gz} "${WORKDIR}" || die - verify-sig_verify_signed_checksums \ - ${P}.sha.sig sha256 ${P}.tar.gz - fi - default -} - -python_install_all() { - default - - doman quarg.1 -} |