From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B40FB138359 for ; Wed, 29 Jul 2020 12:27:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6346E0BF9; Wed, 29 Jul 2020 12:27:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A91EAE0BF9 for ; Wed, 29 Jul 2020 12:27:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC74834F439 for ; Wed, 29 Jul 2020 12:27:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70F572E7 for ; Wed, 29 Jul 2020 12:27:30 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1596025637.d15428f54404ff6285139012869257fccf51f9f0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/quasselgrep/quasselgrep-9999.ebuild X-VCS-Directories: net-irc/quasselgrep/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d15428f54404ff6285139012869257fccf51f9f0 X-VCS-Branch: master Date: Wed, 29 Jul 2020 12:27:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9cf49a7c-a910-4ccd-974a-3a3a0084b4e0 X-Archives-Hash: 7b9f24fbf5555769dc1df59926c3d90a commit: d15428f54404ff6285139012869257fccf51f9f0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jul 29 12:27:05 2020 +0000 Commit: Andreas Sturmlechner gentoo 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 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" -}