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 C521E138335 for ; Sun, 16 Dec 2018 19:30:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 397BAE0CB4; 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 11434E0CB3 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 0577A335C5A 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 838424F2 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.fcd6244ac13c947b1358366e4a1d9c48f9249714.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/transwhat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/transwhat/metadata.xml net-im/transwhat/transwhat-0.2.2-r1.ebuild X-VCS-Directories: net-im/transwhat/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: fcd6244ac13c947b1358366e4a1d9c48f9249714 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: 205d35fe-587b-4ceb-9b93-32e31df1680d X-Archives-Hash: 01ed1366dfe3eba73915211e5ec30392 commit: fcd6244ac13c947b1358366e4a1d9c48f9249714 Author: Conrad Kostecki kostecki com> AuthorDate: Sun Oct 28 13:50:00 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=fcd6244a net-im/transwhat: bump to EAPI=7 Also updated metadata.xml and license. Signed-off-by: Conrad Kostecki kostecki.com> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/10265 Signed-off-by: Andreas Sturmlechner gentoo.org> net-im/transwhat/metadata.xml | 4 ++++ net-im/transwhat/transwhat-0.2.2-r1.ebuild | 37 ++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/net-im/transwhat/metadata.xml b/net-im/transwhat/metadata.xml index 91277090fe3..3be736289c9 100644 --- a/net-im/transwhat/metadata.xml +++ b/net-im/transwhat/metadata.xml @@ -12,4 +12,8 @@ transWhat is a WhatsApp XMPP Gateway based on Spectrum 2 and Yowsup 2. + + https://github.com/stv0g/transwhat/issues + stv0g/transwhat + diff --git a/net-im/transwhat/transwhat-0.2.2-r1.ebuild b/net-im/transwhat/transwhat-0.2.2-r1.ebuild new file mode 100644 index 00000000000..3023b97715b --- /dev/null +++ b/net-im/transwhat/transwhat-0.2.2-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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}] + net-im/yowsup[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" + +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +DOCS=( "INSTALL.rst" "README.rst" "USAGE.rst" ) + +src_prepare() { + default + + # Fixes for net-im/spectrum2 + mv config.py Spectrum2/config.py || die + sed -i -e 's/config import SpectrumConfig/Spectrum2.&/' transWhat/transwhat.py || die +}