aboutsummaryrefslogtreecommitdiffstats
path: root/net-irc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--net-irc/quarg/Manifest4
-rw-r--r--net-irc/quarg/metadata.xml7
-rw-r--r--net-irc/quarg/quarg-1.0.0-r2.ebuild53
3 files changed, 0 insertions, 64 deletions
diff --git a/net-irc/quarg/Manifest b/net-irc/quarg/Manifest
deleted file mode 100644
index 189f288..0000000
--- a/net-irc/quarg/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST quarg-1.0.0.sha.sig 239 BLAKE2B f303317f1fa0b7b96174484d2eb01fe5b886693fac0af3fa78ad20ae6cf92ff00bae1f6fddf64109bdfe8d6d75e6bb8e13403376b3a5fcd70d64699029c92b2c SHA512 2cb0ee693c5a95f87d3fd0079dc84f64b48f1d7a87da5d3f7c960021ce353353e2dae35bf33e57389163fe5bbd07857dc6553ac0450eb02a19c67801eeb08e58
-DIST quarg-1.0.0.tar.gz 22450 BLAKE2B dd63965c39121e6a4bb617461adb2546a11ebb691352db10e8fbce74a859fc8b6029ec807d8cdf59097c46c940fe4b7ed9040bec3ea90e13cd061fbc6b08337b SHA512 5dd8f9a41ffae31e6078cb2aac5a314f0d1b68aa9b10e4161e1d4a7241c31d4ae2cf890a32397f9cc7fab80c0564f12c1a43cc23aaf459c7603884801161de98
-EBUILD quarg-1.0.0-r2.ebuild 1192 BLAKE2B cf7865c8dd322f34f8f1270229268c5d543f20297a83910325ee62e0ec1746c24efc0044ddad152b2cda3d5cbb559803517e844f60fe35db52636ae60078f038 SHA512 d192678816a7c64fad0da65e75215359d62891b404edc41c61fda12a166806f0c139ea2e331e624194b859304af7b8bef1a4c1e50b449bba11dd69f4fdfee245
-MISC metadata.xml 219 BLAKE2B 4017e2b1f6b36f72c186cfeb0955be57076a02d087acfd6caf9b9ec56509b5299be8d40dddaffd04433bb290f6dd35c94c59ac02a4f1ad7e63b13648e465e594 SHA512 555d3bce3f8cd9b4d78f59f494c326d7893f12c1907c1eb92107595886fc4a5e89b8b9fda7f434e021a9eede5dfd6d0c1dfee721c268ccad3d6a1865a92204e0
diff --git a/net-irc/quarg/metadata.xml b/net-irc/quarg/metadata.xml
deleted file mode 100644
index c544433..0000000
--- a/net-irc/quarg/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>wolf@oriole.systems</email>
- </maintainer>
-</pkgmetadata>
diff --git a/net-irc/quarg/quarg-1.0.0-r2.ebuild b/net-irc/quarg/quarg-1.0.0-r2.ebuild
deleted file mode 100644
index 4266e25..0000000
--- a/net-irc/quarg/quarg-1.0.0-r2.ebuild
+++ /dev/null
@@ -1,53 +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}"
-BDEPEND="verify-sig? ( sec-keys/signify-keys-oriole-systems )"
-
-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
-}