diff options
author | Scott Martin <om@organizedmagnetism.com> | 2019-08-07 19:02:49 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-08-07 19:06:02 +0300 |
commit | ed40d3c4d27621fdca2bec1b36fd86f476b764cb (patch) | |
tree | 849350ee0885f78db644ba6f67fe48141f1f49f8 /net-irc/quasselgrep | |
parent | dev-python/lxml: Bump to 4.4.0 (diff) | |
download | gentoo-ed40d3c4d27621fdca2bec1b36fd86f476b764cb.tar.gz gentoo-ed40d3c4d27621fdca2bec1b36fd86f476b764cb.tar.bz2 gentoo-ed40d3c4d27621fdca2bec1b36fd86f476b764cb.zip |
net-irc/quasselgrep: bump to 0_p20190211
Signed-off-by: Scott Martin <om@organizedmagnetism.com>
Closes: https://bugs.gentoo.org/659634
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-irc/quasselgrep')
-rw-r--r-- | net-irc/quasselgrep/Manifest | 1 | ||||
-rw-r--r-- | net-irc/quasselgrep/quasselgrep-0_p20190211.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/net-irc/quasselgrep/Manifest b/net-irc/quasselgrep/Manifest index 2585c141ad4c..2eef5a4a24be 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 000000000000..83e67c38a6bc --- /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 +} |