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 CF27F138334 for ; Sun, 16 Dec 2018 19:30:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF60BE0CC8; Sun, 16 Dec 2018 19:30:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C99F9E0CC5 for ; Sun, 16 Dec 2018 19:30:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2D2A8335C67 for ; Sun, 16 Dec 2018 19:30:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95F1A4F4 for ; Sun, 16 Dec 2018 19:30:31 +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: <1544988554.d96af15d0e720f1d700b6a8cb4ef08365294bf52.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/transwhat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/transwhat/transwhat-0.2.2.ebuild X-VCS-Directories: net-im/transwhat/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d96af15d0e720f1d700b6a8cb4ef08365294bf52 X-VCS-Branch: master Date: Sun, 16 Dec 2018 19:30:31 +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: 5f195ab2-5f4f-4563-9ea2-0f5dea221039 X-Archives-Hash: ccea8c2aa1e3ca722e9f669c2aaf9b01 commit: d96af15d0e720f1d700b6a8cb4ef08365294bf52 Author: Conrad Kostecki kostecki com> AuthorDate: Sun Oct 28 13:50:42 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 16 19:29:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96af15d net-im/transwhat: drop old version Signed-off-by: Conrad Kostecki kostecki.com> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Andreas Sturmlechner gentoo.org> net-im/transwhat/transwhat-0.2.2.ebuild | 34 --------------------------------- 1 file changed, 34 deletions(-) diff --git a/net-im/transwhat/transwhat-0.2.2.ebuild b/net-im/transwhat/transwhat-0.2.2.ebuild deleted file mode 100644 index 6b03897d8fc..00000000000 --- a/net-im/transwhat/transwhat-0.2.2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -DESCRIPTION="A WhatsApp XMPP Gateway based on Spectrum 2 and Yowsup 2" -HOMEPAGE="https://github.com/stv0g/transwhat" -SRC_URI="https://github.com/stv0g/transwhat/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/e4u[${PYTHON_USEDEP}] - dev-python/protobuf-python[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - net-im/yowsup[${PYTHON_USEDEP}]" - -DEPEND="${RDEPEND}" - -DOCS=( "INSTALL.rst" "README.rst" "USAGE.rst" ) - -src_prepare() { - default - - # Fixes for Spectrum2 - mv config.py Spectrum2/config.py || die - sed -i -e 's/config import SpectrumConfig/Spectrum2.&/' transWhat/transwhat.py || die -}