public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2017-07-03 12:45 Sam Jorna
  0 siblings, 0 replies; 16+ messages in thread
From: Sam Jorna @ 2017-07-03 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     4dcf3260e40b29e2cb44010685706234feeb7ee7
Author:     Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  3 12:44:18 2017 +0000
Commit:     Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Mon Jul  3 12:44:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dcf3260

net-irc/quasselgrep: new package

New package submitted by ephemer0l for searching Quassel logs.

Gentoo-bug: 620408
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-irc/quasselgrep/Manifest                       |  1 +
 net-irc/quasselgrep/metadata.xml                   | 11 +++++++
 net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild | 34 ++++++++++++++++++++++
 net-irc/quasselgrep/quasselgrep-9999.ebuild        | 34 ++++++++++++++++++++++
 4 files changed, 80 insertions(+)

diff --git a/net-irc/quasselgrep/Manifest b/net-irc/quasselgrep/Manifest
new file mode 100644
index 00000000000..4d0e6c44567
--- /dev/null
+++ b/net-irc/quasselgrep/Manifest
@@ -0,0 +1 @@
+DIST quasselgrep-0_p20170411.tar.gz 29117 SHA256 06f7729c3f51a728b93a82979ca0adb4135ce8345bb55deaeb42aa9a985ab229 SHA512 b216c49e340cddfeb4fe28046c698a5517a873602a4303c7c6976d6d7f0bfffbb78f170a33126a16089e239a67e1624410f8e727b5ed6ab977f78745362db0e2 WHIRLPOOL 97ad005be19910c2ce503b12c3d4ff4e7c8be74054802847a8b2be444823511bcc508d075f2073a89c671bfae2d7e1fd2f22dc225c68d74056c179d78cf9601c

diff --git a/net-irc/quasselgrep/metadata.xml b/net-irc/quasselgrep/metadata.xml
new file mode 100644
index 00000000000..09746d072a9
--- /dev/null
+++ b/net-irc/quasselgrep/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>om@organizedmagnetism.com</email>
+		<name>Scott Martin</name>
+	</maintainer>
+	<upstream>
+		<doc>https://github.com/fish-face/quasselgrep/blob/master/README.md</doc>
+	</upstream>
+</pkgmetadata>

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild
new file mode 100644
index 00000000000..efe0f9483d6
--- /dev/null
+++ b/net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+MY_COMMIT=502c88bdc7613abb68e868eb520e39ec8a5cf6dd
+
+DESCRIPTION="Tool for searching quassel logs from the commandline"
+HOMEPAGE="https://github.com/fish-face/quasselgrep"
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/fish-face/quasselgrep"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/fish-face/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
+	S="${WORKDIR}/fish-face-${PN}-${MY_COMMIT:0:7}"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
+	dev-python/pycryptodome[${PYTHON_USEDEP}]
+	>=dev-python/psycopg-2.5.3[${PYTHON_USEDEP}]"
+
+src_configure() {
+	sed -i 's/pycrypto/pycryptodome/g' "${S}"/setup.py || die "sed failed"
+}

diff --git a/net-irc/quasselgrep/quasselgrep-9999.ebuild b/net-irc/quasselgrep/quasselgrep-9999.ebuild
new file mode 100644
index 00000000000..efe0f9483d6
--- /dev/null
+++ b/net-irc/quasselgrep/quasselgrep-9999.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+MY_COMMIT=502c88bdc7613abb68e868eb520e39ec8a5cf6dd
+
+DESCRIPTION="Tool for searching quassel logs from the commandline"
+HOMEPAGE="https://github.com/fish-face/quasselgrep"
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/fish-face/quasselgrep"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/fish-face/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
+	S="${WORKDIR}/fish-face-${PN}-${MY_COMMIT:0:7}"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
+	dev-python/pycryptodome[${PYTHON_USEDEP}]
+	>=dev-python/psycopg-2.5.3[${PYTHON_USEDEP}]"
+
+src_configure() {
+	sed -i 's/pycrypto/pycryptodome/g' "${S}"/setup.py || die "sed failed"
+}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2017-10-03 22:31 Sam Jorna
  0 siblings, 0 replies; 16+ messages in thread
From: Sam Jorna @ 2017-10-03 22:31 UTC (permalink / raw
  To: gentoo-commits

commit:     c2b14834ec49bdcceb4a2a4209d1962ccfe13eac
Author:     Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  3 22:29:56 2017 +0000
Commit:     Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 22:30:46 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b14834

net-irc/quasselgrep: fix metadata

Gentoo-bug: 633314
Reported-by: Michał Górny <mgorny <AT> gentoo.org>, Jonas Stein <jstein@gentoo.org>
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-irc/quasselgrep/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/net-irc/quasselgrep/metadata.xml b/net-irc/quasselgrep/metadata.xml
index 09746d072a9..23dc8ab4748 100644
--- a/net-irc/quasselgrep/metadata.xml
+++ b/net-irc/quasselgrep/metadata.xml
@@ -5,6 +5,10 @@
 		<email>om@organizedmagnetism.com</email>
 		<name>Scott Martin</name>
 	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<upstream>
 		<doc>https://github.com/fish-face/quasselgrep/blob/master/README.md</doc>
 	</upstream>


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2019-08-07 16:06 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2019-08-07 16:06 UTC (permalink / raw
  To: gentoo-commits

commit:     ed40d3c4d27621fdca2bec1b36fd86f476b764cb
Author:     Scott Martin <om <AT> organizedmagnetism <DOT> com>
AuthorDate: Wed Aug  7 16:02:49 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Aug  7 16:06:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed40d3c4

net-irc/quasselgrep: bump to 0_p20190211

Signed-off-by: Scott Martin <om <AT> organizedmagnetism.com>
Closes: https://bugs.gentoo.org/659634
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-irc/quasselgrep/Manifest                       |  1 +
 net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/net-irc/quasselgrep/Manifest b/net-irc/quasselgrep/Manifest
index 2585c141ad4..2eef5a4a24b 100644
--- a/net-irc/quasselgrep/Manifest
+++ b/net-irc/quasselgrep/Manifest
@@ -1 +1,2 @@
 DIST quasselgrep-0_p20170411.tar.gz 29117 BLAKE2B e55ef14015d1139dd967d1855a2994d47f189cb02b0b89dc1130a8d0756b137ddd58366c3cb87927cb6400b715efafe042ec929978a71d527ad640129d50cb71 SHA512 b216c49e340cddfeb4fe28046c698a5517a873602a4303c7c6976d6d7f0bfffbb78f170a33126a16089e239a67e1624410f8e727b5ed6ab977f78745362db0e2
+DIST quasselgrep-0_p20190211.tar.gz 29954 BLAKE2B 33862b642d6a24bd7ab8cc4f3628e19cf332feb24e0dba17849f4ee85af4d1d17a641e6ccaef89bcb44c47f28a674ab620610b8b624f9de71b8460b197953e27 SHA512 0d2bfccb87b7463ba032b9515c4a089518a3ca57f9ef6cbb0f00db9c5d0404cc9fe128329b12e1dbe022cbddeb6a3db473564ee734ddc30be56d4c1da5036f56

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
new file mode 100644
index 00000000000..83e67c38a6b
--- /dev/null
+++ b/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+PYTHON_REQ_USE=( sqlite )
+
+inherit distutils-r1 eutils python-r1
+
+DESCRIPTION="Tool for searching quassel logs from the commandline"
+HOMEPAGE="https://github.com/fish-face/quasselgrep"
+
+if [[ "${PV}" == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/65278/quasselgrep.git"
+	inherit git-r3
+	KEYWORDS=""
+else
+	MY_COMMIT=9b6b0bc1252daa6e574363d87d04eebd981215a5
+	SRC_URI="https://github.com/fish-face/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
+	S="${WORKDIR}/fish-face-${PN}-${MY_COMMIT:0:7}"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="dev-lang/python[${PYTHON_REQ_USE}]
+	dev-python/future[${PYTHON_USEDEP}]
+	dev-python/pycryptodome[${PYTHON_USEDEP}]
+	dev-python/python-dateutil[${PYTHON_USEDEP}]"
+
+pkg_postinst() {
+	optfeature "access postgres db" dev-python/psycopg:2
+}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2019-08-07 16:11 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2019-08-07 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     9db722cfda7669d6bb4114c2b8dcf3de3ff819fc
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  7 16:10:40 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Aug  7 16:11:27 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db722cf

net-irc/quasselgrep: remove redundant RDEPEND

Package-Manager: Portage-2.3.71, Repoman-2.3.16
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
index 83e67c38a6b..b4bd7c87639 100644
--- a/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
+++ b/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
 PYTHON_REQ_USE=( sqlite )
 
-inherit distutils-r1 eutils python-r1
+inherit distutils-r1 eutils
 
 DESCRIPTION="Tool for searching quassel logs from the commandline"
 HOMEPAGE="https://github.com/fish-face/quasselgrep"
@@ -25,8 +25,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-RDEPEND="dev-lang/python[${PYTHON_REQ_USE}]
-	dev-python/future[${PYTHON_USEDEP}]
+RDEPEND="dev-python/future[${PYTHON_USEDEP}]
 	dev-python/pycryptodome[${PYTHON_USEDEP}]
 	dev-python/python-dateutil[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2019-08-10  6:34 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2019-08-10  6:34 UTC (permalink / raw
  To: gentoo-commits

commit:     df2e7dba355506dce15dd6905d5cadf0e3feba31
Author:     Scott Martin <om <AT> organizedmagnetism <DOT> com>
AuthorDate: Sat Aug 10 06:33:42 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Aug 10 06:33:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df2e7dba

net-irc/quasselgrep: Added upstream bug address

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-irc/quasselgrep/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-irc/quasselgrep/metadata.xml b/net-irc/quasselgrep/metadata.xml
index 23dc8ab4748..d238c6f6507 100644
--- a/net-irc/quasselgrep/metadata.xml
+++ b/net-irc/quasselgrep/metadata.xml
@@ -10,6 +10,7 @@
 		<name>Proxy Maintainers</name>
 	</maintainer>
 	<upstream>
+		<bugs-to>https://github.com/fish-face/quasselgrep/issues</bugs-to>
 		<doc>https://github.com/fish-face/quasselgrep/blob/master/README.md</doc>
 	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2020-05-07 15:17 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2020-05-07 15:17 UTC (permalink / raw
  To: gentoo-commits

commit:     6a2c61f43d3e55c57701832db984e49af9e7dba6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu May  7 15:10:32 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu May  7 15:10:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a2c61f4

net-irc/quasselgrep: Remove py2.7

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
index 74bef9e7a4f..ca0bbcdb471 100644
--- a/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
+++ b/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 PYTHON_REQ_USE=( sqlite )
 
 inherit distutils-r1 eutils


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2020-07-29 12:27 Andreas Sturmlechner
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Sturmlechner @ 2020-07-29 12:27 UTC (permalink / raw
  To: gentoo-commits

commit:     d15428f54404ff6285139012869257fccf51f9f0
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 29 12:27:05 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jul 29 12:27:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d15428f5

net-irc/quasselgrep: Drop unmaintained and py2-only 9999 ebuild

Not a single change since introduction of the package in 2017.

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-irc/quasselgrep/quasselgrep-9999.ebuild | 34 -----------------------------
 1 file changed, 34 deletions(-)

diff --git a/net-irc/quasselgrep/quasselgrep-9999.ebuild b/net-irc/quasselgrep/quasselgrep-9999.ebuild
deleted file mode 100644
index efe0f9483d6..00000000000
--- a/net-irc/quasselgrep/quasselgrep-9999.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-MY_COMMIT=502c88bdc7613abb68e868eb520e39ec8a5cf6dd
-
-DESCRIPTION="Tool for searching quassel logs from the commandline"
-HOMEPAGE="https://github.com/fish-face/quasselgrep"
-
-if [[ ${PV} == "9999" ]] ; then
-	EGIT_REPO_URI="https://github.com/fish-face/quasselgrep"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/fish-face/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
-	S="${WORKDIR}/fish-face-${PN}-${MY_COMMIT:0:7}"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
-	dev-python/pycryptodome[${PYTHON_USEDEP}]
-	>=dev-python/psycopg-2.5.3[${PYTHON_USEDEP}]"
-
-src_configure() {
-	sed -i 's/pycrypto/pycryptodome/g' "${S}"/setup.py || die "sed failed"
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2020-07-29 12:27 Andreas Sturmlechner
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Sturmlechner @ 2020-07-29 12:27 UTC (permalink / raw
  To: gentoo-commits

commit:     6e34c470d10e7d6f9389d3fc1004f283495fd8e1
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 29 12:26:04 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jul 29 12:27:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e34c470

net-irc/quasselgrep: Drop py2-only 0_p20170411

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-irc/quasselgrep/Manifest                       |  1 -
 net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild | 34 ----------------------
 2 files changed, 35 deletions(-)

diff --git a/net-irc/quasselgrep/Manifest b/net-irc/quasselgrep/Manifest
index 2eef5a4a24b..7f07601f632 100644
--- a/net-irc/quasselgrep/Manifest
+++ b/net-irc/quasselgrep/Manifest
@@ -1,2 +1 @@
-DIST quasselgrep-0_p20170411.tar.gz 29117 BLAKE2B e55ef14015d1139dd967d1855a2994d47f189cb02b0b89dc1130a8d0756b137ddd58366c3cb87927cb6400b715efafe042ec929978a71d527ad640129d50cb71 SHA512 b216c49e340cddfeb4fe28046c698a5517a873602a4303c7c6976d6d7f0bfffbb78f170a33126a16089e239a67e1624410f8e727b5ed6ab977f78745362db0e2
 DIST quasselgrep-0_p20190211.tar.gz 29954 BLAKE2B 33862b642d6a24bd7ab8cc4f3628e19cf332feb24e0dba17849f4ee85af4d1d17a641e6ccaef89bcb44c47f28a674ab620610b8b624f9de71b8460b197953e27 SHA512 0d2bfccb87b7463ba032b9515c4a089518a3ca57f9ef6cbb0f00db9c5d0404cc9fe128329b12e1dbe022cbddeb6a3db473564ee734ddc30be56d4c1da5036f56

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild
deleted file mode 100644
index efe0f9483d6..00000000000
--- a/net-irc/quasselgrep/quasselgrep-0_p20170411.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-MY_COMMIT=502c88bdc7613abb68e868eb520e39ec8a5cf6dd
-
-DESCRIPTION="Tool for searching quassel logs from the commandline"
-HOMEPAGE="https://github.com/fish-face/quasselgrep"
-
-if [[ ${PV} == "9999" ]] ; then
-	EGIT_REPO_URI="https://github.com/fish-face/quasselgrep"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/fish-face/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
-	S="${WORKDIR}/fish-face-${PN}-${MY_COMMIT:0:7}"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
-	dev-python/pycryptodome[${PYTHON_USEDEP}]
-	>=dev-python/psycopg-2.5.3[${PYTHON_USEDEP}]"
-
-src_configure() {
-	sed -i 's/pycrypto/pycryptodome/g' "${S}"/setup.py || die "sed failed"
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2020-08-30  8:18 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2020-08-30  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     23cfa46241a20bbac0fee7dc26dcf981fe2f64fc
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 30 08:11:25 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Aug 30 08:18:23 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23cfa462

net-irc/quasselgrep: drop to m-n

Closes: https://bugs.gentoo.org/623642
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-irc/quasselgrep/metadata.xml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/net-irc/quasselgrep/metadata.xml b/net-irc/quasselgrep/metadata.xml
index d238c6f6507..eb320bd71e2 100644
--- a/net-irc/quasselgrep/metadata.xml
+++ b/net-irc/quasselgrep/metadata.xml
@@ -1,14 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>om@organizedmagnetism.com</email>
-		<name>Scott Martin</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<upstream>
 		<bugs-to>https://github.com/fish-face/quasselgrep/issues</bugs-to>
 		<doc>https://github.com/fish-face/quasselgrep/blob/master/README.md</doc>


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2020-09-29 20:14 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2020-09-29 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     77f8e5c7f730d692e1dd151cc89513f2d9ab06c7
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Aug 30 11:50:53 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 29 20:13:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f8e5c7

net-irc/quasselgrep: drop old

Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-irc/quasselgrep/Manifest                       |  1 -
 net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild | 34 ----------------------
 2 files changed, 35 deletions(-)

diff --git a/net-irc/quasselgrep/Manifest b/net-irc/quasselgrep/Manifest
index 627c40411d2..13616f83390 100644
--- a/net-irc/quasselgrep/Manifest
+++ b/net-irc/quasselgrep/Manifest
@@ -1,2 +1 @@
-DIST quasselgrep-0_p20190211.tar.gz 29954 BLAKE2B 33862b642d6a24bd7ab8cc4f3628e19cf332feb24e0dba17849f4ee85af4d1d17a641e6ccaef89bcb44c47f28a674ab620610b8b624f9de71b8460b197953e27 SHA512 0d2bfccb87b7463ba032b9515c4a089518a3ca57f9ef6cbb0f00db9c5d0404cc9fe128329b12e1dbe022cbddeb6a3db473564ee734ddc30be56d4c1da5036f56
 DIST quasselgrep-0_p20200830.tar.gz 29944 BLAKE2B 011633afee9d9519b0c343c5d0b1a9ba775c870802532515a42a7c22d39af5138a051707a82f2b6a19dda3523fe9f04d2b56b62a36c554ff873275c095e7dd94 SHA512 88f568852cc9e85e0019335d3362f192766a2ce3e94ff1947485ad6eaf43d49873d94396791165f74e95edb25601c078a947a7740b4ae2e40424b5bdfecc2a48

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
deleted file mode 100644
index 0d8f12d972b..00000000000
--- a/net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-PYTHON_REQ_USE=( sqlite )
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Tool for searching quassel logs from the commandline"
-HOMEPAGE="https://github.com/fish-face/quasselgrep"
-
-if [[ "${PV}" == "9999" ]] ; then
-	EGIT_REPO_URI="https://github.com/65278/quasselgrep.git"
-	inherit git-r3
-	KEYWORDS=""
-else
-	MY_COMMIT=9b6b0bc1252daa6e574363d87d04eebd981215a5
-	SRC_URI="https://github.com/fish-face/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
-	S="${WORKDIR}/fish-face-${PN}-${MY_COMMIT:0:7}"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="dev-python/future[${PYTHON_USEDEP}]
-	dev-python/pycryptodome[${PYTHON_USEDEP}]
-	dev-python/python-dateutil[${PYTHON_USEDEP}]"
-
-pkg_postinst() {
-	optfeature "access postgres db" dev-python/psycopg:2
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2020-09-29 20:14 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2020-09-29 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     fc7a3a5ed3576f8793ca4b2baa959745142166f5
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Aug 30 11:50:31 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 29 20:13:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc7a3a5e

net-irc/quasselgrep: bump to 0_p20200830

Closes: https://bugs.gentoo.org/694678
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-irc/quasselgrep/Manifest                       |  1 +
 net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 29 ++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/net-irc/quasselgrep/Manifest b/net-irc/quasselgrep/Manifest
index 7f07601f632..627c40411d2 100644
--- a/net-irc/quasselgrep/Manifest
+++ b/net-irc/quasselgrep/Manifest
@@ -1 +1,2 @@
 DIST quasselgrep-0_p20190211.tar.gz 29954 BLAKE2B 33862b642d6a24bd7ab8cc4f3628e19cf332feb24e0dba17849f4ee85af4d1d17a641e6ccaef89bcb44c47f28a674ab620610b8b624f9de71b8460b197953e27 SHA512 0d2bfccb87b7463ba032b9515c4a089518a3ca57f9ef6cbb0f00db9c5d0404cc9fe128329b12e1dbe022cbddeb6a3db473564ee734ddc30be56d4c1da5036f56
+DIST quasselgrep-0_p20200830.tar.gz 29944 BLAKE2B 011633afee9d9519b0c343c5d0b1a9ba775c870802532515a42a7c22d39af5138a051707a82f2b6a19dda3523fe9f04d2b56b62a36c554ff873275c095e7dd94 SHA512 88f568852cc9e85e0019335d3362f192766a2ce3e94ff1947485ad6eaf43d49873d94396791165f74e95edb25601c078a947a7740b4ae2e40424b5bdfecc2a48

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
new file mode 100644
index 00000000000..4ade5403130
--- /dev/null
+++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+PYTHON_REQ_USE=( sqlite )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Tool for searching quassel logs from the commandline"
+HOMEPAGE="https://github.com/fish-face/quasselgrep"
+
+MY_COMMIT="9b6b0bc1252daa6e574363d87d04eebd981215a5"
+SRC_URI="https://github.com/fish-face/quasselgrep/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="dev-python/future[${PYTHON_USEDEP}]
+	dev-python/pycryptodome[${PYTHON_USEDEP}]
+	dev-python/python-dateutil[${PYTHON_USEDEP}]"
+
+pkg_postinst() {
+	optfeature "access postgres db" dev-python/psycopg:2
+}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2020-09-29 20:14 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2020-09-29 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     55ec3e0a6ea0e387d54dfbf723bd2a09b93e0357
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Aug 30 11:51:58 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 29 20:13:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55ec3e0a

net-irc/quasselgrep: add new proxy maintainer

Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/17332
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-irc/quasselgrep/metadata.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/net-irc/quasselgrep/metadata.xml b/net-irc/quasselgrep/metadata.xml
index eb320bd71e2..8cdbffdc53b 100644
--- a/net-irc/quasselgrep/metadata.xml
+++ b/net-irc/quasselgrep/metadata.xml
@@ -1,7 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>jakov.smolic@sartura.hr</email>
+		<name>Jakov Smolic</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<upstream>
 		<bugs-to>https://github.com/fish-face/quasselgrep/issues</bugs-to>
 		<doc>https://github.com/fish-face/quasselgrep/blob/master/README.md</doc>


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2021-07-27  3:21 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-07-27  3:21 UTC (permalink / raw
  To: gentoo-commits

commit:     e45a21923c56132f1a9acbb08190c354d0fb513a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 27 03:20:41 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 27 03:20:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e45a2192

net-irc/quasselgrep: Keyword 0_p20200830 arm64, #804043

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
index 2a17d4e0303..d097d088cd8 100644
--- a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
+++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/fish-face/quasselgrep"
 MY_COMMIT="9b6b0bc1252daa6e574363d87d04eebd981215a5"
 SRC_URI="https://github.com/fish-face/quasselgrep/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
 S="${WORKDIR}/${PN}-${MY_COMMIT}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 LICENSE="GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2021-07-27  3:27 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-07-27  3:27 UTC (permalink / raw
  To: gentoo-commits

commit:     644c87976ff2171e0541b68c72628c5df3603165
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 27 03:26:20 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 27 03:26:20 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=644c8797

net-irc/quasselgrep: Keyword 0_p20200830 arm, #804043

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
index d097d088cd8..2e651cfc5a8 100644
--- a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
+++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/fish-face/quasselgrep"
 MY_COMMIT="9b6b0bc1252daa6e574363d87d04eebd981215a5"
 SRC_URI="https://github.com/fish-face/quasselgrep/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
 S="${WORKDIR}/${PN}-${MY_COMMIT}"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 LICENSE="GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2021-08-22 21:53 David Seifert
  0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2021-08-22 21:53 UTC (permalink / raw
  To: gentoo-commits

commit:     c6d092f7ce8a1a487d4e20cd181b5fc30e89813f
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Aug 22 21:53:40 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 22 21:53:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d092f7

net-irc/quasselgrep: Port to EAPI 8, fix DISTUTILS_USE_SETUPTOOLS

Closes: https://github.com/gentoo/gentoo/pull/22044
Closes: https://bugs.gentoo.org/809128
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
index 2e651cfc5a8..831039aeb81 100644
--- a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
+++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
@@ -1,11 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7..9} )
-PYTHON_REQ_USE=( sqlite )
-DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1 optfeature
 
@@ -15,14 +14,16 @@ HOMEPAGE="https://github.com/fish-face/quasselgrep"
 MY_COMMIT="9b6b0bc1252daa6e574363d87d04eebd981215a5"
 SRC_URI="https://github.com/fish-face/quasselgrep/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
 S="${WORKDIR}/${PN}-${MY_COMMIT}"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 LICENSE="GPL-2"
 SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
-RDEPEND="dev-python/future[${PYTHON_USEDEP}]
+RDEPEND="
+	dev-python/future[${PYTHON_USEDEP}]
 	dev-python/pycryptodome[${PYTHON_USEDEP}]
-	dev-python/python-dateutil[${PYTHON_USEDEP}]"
+	dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
 
 pkg_postinst() {
 	optfeature "access postgres db" dev-python/psycopg:2


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
@ 2022-06-01 14:15 Jakov Smolić
  0 siblings, 0 replies; 16+ messages in thread
From: Jakov Smolić @ 2022-06-01 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     8ce60b7057d95f618380acd9272df829ce3d8f62
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Jun  1 14:09:40 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Jun  1 14:15:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ce60b70

net-irc/quasselgrep: enable py3.10

Closes: https://bugs.gentoo.org/846137
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
index 9cf50473082b..257fb092f35d 100644
--- a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
+++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1 optfeature


^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2022-06-01 14:15 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-27  3:21 [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-06-01 14:15 Jakov Smolić
2021-08-22 21:53 David Seifert
2021-07-27  3:27 Sam James
2020-09-29 20:14 Sam James
2020-09-29 20:14 Sam James
2020-09-29 20:14 Sam James
2020-08-30  8:18 Joonas Niilola
2020-07-29 12:27 Andreas Sturmlechner
2020-07-29 12:27 Andreas Sturmlechner
2020-05-07 15:17 Michał Górny
2019-08-10  6:34 Joonas Niilola
2019-08-07 16:11 Joonas Niilola
2019-08-07 16:06 Joonas Niilola
2017-10-03 22:31 Sam Jorna
2017-07-03 12:45 Sam Jorna

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox