aboutsummaryrefslogtreecommitdiffstats
path: root/net-irc
diff options
context:
space:
mode:
authorWolfgang Müller2021-05-06 16:34:58 +0200
committerWolfgang Müller2021-05-06 16:34:58 +0200
commit20ebdba090637f4a86e47ae971e9846a456f5793 (patch)
treef14968a4e186e0059bc178584f466c23bde49932 /net-irc
parent3225549ec511b89c6b4dcddc526e2ff4c25d5a5c (diff)
downloadpramantha-20ebdba090637f4a86e47ae971e9846a456f5793.tar.gz
net-irc/quarg: Add 0.1.1
Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Wolfgang Müller <wolf@oriole.systems>
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/quarg/Manifest3
-rw-r--r--net-irc/quarg/metadata.xml7
-rw-r--r--net-irc/quarg/quarg-0.1.1.ebuild34
3 files changed, 44 insertions, 0 deletions
diff --git a/net-irc/quarg/Manifest b/net-irc/quarg/Manifest
new file mode 100644
index 0000000..a1153d8
--- /dev/null
+++ b/net-irc/quarg/Manifest
@@ -0,0 +1,3 @@
+DIST quarg-0.1.1.tar.gz 10429 BLAKE2B 5fd774ef47d492c6f9442f7522459613bc87192dd77da12807e14538d3690d258d6e35f36e44248145f8713667c7d40c8208a1c0c6eb7843e3a6a57bd233e978 SHA512 4f13dc9a0c3975e88160709692d0daafdd7778f8f10e59316dfd22df39a7ef5d5046ec93f431a383eee7f7601d165ec71fb794ffb78ba7854298d4a6e7394ae3
+EBUILD quarg-0.1.1.ebuild 723 BLAKE2B 50e03b9ec35218537d8050da23bcf3c0869448d91345a56f5ea22e21c7b10c0a7992f835d5012a136aa84efee2b40a5e08ea6207ecc11917ebabfb6eb2c736ff SHA512 3795ed1415b11e2073f29b9bebc93429da1ec6e0d2e9752ad57f4d3e775b95a5988f7b4694227ce6fff8d7842ca68101e7a50044ea3dc58b4b88ffd0be609246
+MISC metadata.xml 219 BLAKE2B 4017e2b1f6b36f72c186cfeb0955be57076a02d087acfd6caf9b9ec56509b5299be8d40dddaffd04433bb290f6dd35c94c59ac02a4f1ad7e63b13648e465e594 SHA512 555d3bce3f8cd9b4d78f59f494c326d7893f12c1907c1eb92107595886fc4a5e89b8b9fda7f434e021a9eede5dfd6d0c1dfee721c268ccad3d6a1865a92204e0
diff --git a/net-irc/quarg/metadata.xml b/net-irc/quarg/metadata.xml
new file mode 100644
index 0000000..c544433
--- /dev/null
+++ b/net-irc/quarg/metadata.xml
@@ -0,0 +1,7 @@
+<?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-0.1.1.ebuild b/net-irc/quarg/quarg-0.1.1.ebuild
new file mode 100644
index 0000000..efb5865
--- /dev/null
+++ b/net-irc/quarg/quarg-0.1.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+inherit distutils-r1
+
+DESCRIPTION="Search Quassel logs for matching messages and print them"
+HOMEPAGE="https://git.oriole.systems/quarg"
+
+SRC_URI="https://git.oriole.systems/quarg/snapshot/${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+RESTRICT="mirror test"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="sqlite postgres"
+
+RDEPEND="${PYTHON_DEPS}
+ dev-python/python-dateutil[${PYTHON_USEDEP}]
+ postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
+ >=dev-python/sqlalchemy-1.4[${PYTHON_USEDEP},sqlite?]
+"
+
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ default
+
+ doman quarg.1
+}