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 0E66A1382C5 for ; Wed, 24 Jan 2018 21:48:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7777BE091B; Wed, 24 Jan 2018 21:48:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 56133E091B for ; Wed, 24 Jan 2018 21:48:46 +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 A36FF335C0C for ; Wed, 24 Jan 2018 21:48:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AEBD19B for ; Wed, 24 Jan 2018 21:48:44 +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: <1516830508.df39b79b5b970ad77cce30808bb1640085225ff3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pysmssend/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pysmssend/pysmssend-1.48-r2.ebuild X-VCS-Directories: app-misc/pysmssend/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: df39b79b5b970ad77cce30808bb1640085225ff3 X-VCS-Branch: master Date: Wed, 24 Jan 2018 21:48:44 +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-Archives-Salt: 24f1f0e0-a3d7-4ab7-b8ab-fc155aa71701 X-Archives-Hash: 1ab8aa469ac94a4add8566852ffa36b1 commit: df39b79b5b970ad77cce30808bb1640085225ff3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jan 24 21:46:01 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jan 24 21:48:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df39b79b app-misc/pysmssend: EAPI 6, drop USE qt4 Package-Manager: Portage-2.3.20, Repoman-2.3.6 app-misc/pysmssend/pysmssend-1.48-r2.ebuild | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/app-misc/pysmssend/pysmssend-1.48-r2.ebuild b/app-misc/pysmssend/pysmssend-1.48-r2.ebuild new file mode 100644 index 00000000000..a3cb6c3d0b3 --- /dev/null +++ b/app-misc/pysmssend/pysmssend-1.48-r2.ebuild @@ -0,0 +1,34 @@ +# 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="Python Application for sending sms over multiple ISPs" +HOMEPAGE="http://pysmssend.silverarrow.org/" +SRC_URI="http://pysmssend.silverarrow.org/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">dev-python/mechanize-0.1.7b[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}" + +python_install() { + distutils-r1_python_install + python_doscript pysmssendcmd + ln -s pysmssendcmd "${D}$(python_get_scriptdir)"/pysmssend || die +} + +src_install() { + distutils-r1_src_install + dosym pysmssendcmd /usr/bin/pysmssend + einstalldocs +}