Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
Date: Tue, 29 Sep 2020 20:14:03
Message-Id: 1601410400.fc7a3a5ed3576f8793ca4b2baa959745142166f5.sam@gentoo
1 commit: fc7a3a5ed3576f8793ca4b2baa959745142166f5
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sun Aug 30 11:50:31 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 20:13:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc7a3a5e
7
8 net-irc/quasselgrep: bump to 0_p20200830
9
10 Closes: https://bugs.gentoo.org/694678
11 Package-Manager: Portage-3.0.3, Repoman-3.0.0
12 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 net-irc/quasselgrep/Manifest | 1 +
16 net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 29 ++++++++++++++++++++++
17 2 files changed, 30 insertions(+)
18
19 diff --git a/net-irc/quasselgrep/Manifest b/net-irc/quasselgrep/Manifest
20 index 7f07601f632..627c40411d2 100644
21 --- a/net-irc/quasselgrep/Manifest
22 +++ b/net-irc/quasselgrep/Manifest
23 @@ -1 +1,2 @@
24 DIST quasselgrep-0_p20190211.tar.gz 29954 BLAKE2B 33862b642d6a24bd7ab8cc4f3628e19cf332feb24e0dba17849f4ee85af4d1d17a641e6ccaef89bcb44c47f28a674ab620610b8b624f9de71b8460b197953e27 SHA512 0d2bfccb87b7463ba032b9515c4a089518a3ca57f9ef6cbb0f00db9c5d0404cc9fe128329b12e1dbe022cbddeb6a3db473564ee734ddc30be56d4c1da5036f56
25 +DIST quasselgrep-0_p20200830.tar.gz 29944 BLAKE2B 011633afee9d9519b0c343c5d0b1a9ba775c870802532515a42a7c22d39af5138a051707a82f2b6a19dda3523fe9f04d2b56b62a36c554ff873275c095e7dd94 SHA512 88f568852cc9e85e0019335d3362f192766a2ce3e94ff1947485ad6eaf43d49873d94396791165f74e95edb25601c078a947a7740b4ae2e40424b5bdfecc2a48
26
27 diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
28 new file mode 100644
29 index 00000000000..4ade5403130
30 --- /dev/null
31 +++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{6..9} )
39 +PYTHON_REQ_USE=( sqlite )
40 +DISTUTILS_USE_SETUPTOOLS=rdepend
41 +
42 +inherit distutils-r1 optfeature
43 +
44 +DESCRIPTION="Tool for searching quassel logs from the commandline"
45 +HOMEPAGE="https://github.com/fish-face/quasselgrep"
46 +
47 +MY_COMMIT="9b6b0bc1252daa6e574363d87d04eebd981215a5"
48 +SRC_URI="https://github.com/fish-face/quasselgrep/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
49 +S="${WORKDIR}/${PN}-${MY_COMMIT}"
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +LICENSE="GPL-2"
53 +SLOT="0"
54 +
55 +RDEPEND="dev-python/future[${PYTHON_USEDEP}]
56 + dev-python/pycryptodome[${PYTHON_USEDEP}]
57 + dev-python/python-dateutil[${PYTHON_USEDEP}]"
58 +
59 +pkg_postinst() {
60 + optfeature "access postgres db" dev-python/psycopg:2
61 +}